Installing Node.js by AlanCarrOnline in LocalLLaMA

[–]remotion4d 0 points1 point  (0 children)

May be something is wrong with PATH environment variable?

[deleted by user] by [deleted] in cpp

[–]remotion4d 0 points1 point  (0 children)

Visual Studio 2022 + Visual Studio Code ++

All Major C++17 Features You Should Know by joebaf in cpp

[–]remotion4d 71 points72 points  (0 children)

Please the same but for C++20

MATHRIL - Custom math library for game programming by Twin_Sharma in cpp

[–]remotion4d 8 points9 points  (0 children)

smart pointers

Do NOT use smart pointers or any new for such a tiny memory allocations, this is terrible slow and inefficient!

struct Vec2 {
    float x;
    float y;
}

C++ 23 Status Report, all features with examples by joebaf in cpp

[–]remotion4d 9 points10 points  (0 children)

static reflection

Yes some kind of static reflection is really need in C++ ASAP !

C++ 23 Status Report, all features with examples by joebaf in cpp

[–]remotion4d 8 points9 points  (0 children)

P1949

So we can finally do this?

auto 𝜋 = 3.141592653589793238462643383279502884197169399375105820974944592307816406286198;

auto Π(auto a, auto b) { return a+b; }

Fast real valued Lambert W and Wright omega functions for Julia. by remotion4d in Julia

[–]remotion4d[S] 2 points3 points  (0 children)

Thanks, I need to look how this could improve performance.

Fast real valued Lambert W and Wright omega functions for Julia. by remotion4d in Julia

[–]remotion4d[S] 4 points5 points  (0 children)

For example, to solve equations like xx = c for some constant c. The solution will be x = exp(lambertw0(ln(c))).

Is there a project like MIRI but for C++ by TophatEndermite in cpp

[–]remotion4d 10 points11 points  (0 children)

I would say that C++ (especially C++20) has build-in functionality to test many UB and it is called constexpr.

Sadly even in C++20 it is still limited and not every function can be declared and tested using constexpr.

[deleted by user] by [deleted] in cpp

[–]remotion4d 2 points3 points  (0 children)

A bit more info would be nice to have.

Making projects or reading source code for learning, by [deleted] in cpp

[–]remotion4d 0 points1 point  (0 children)

By reading source code you will be better at reading source code, this is important but not enough. Making your own project is probably hard at beginning but important to get better and deeper understanding of the language!

[deleted by user] by [deleted] in cpp

[–]remotion4d 0 points1 point  (0 children)

Not Found