Keep render and logic separate
I need to visualize dynamic spiking neuron activity. I want to use C++ with OpenGL via a scene graph/engine layer with easy camera…
Read more...LLVM library example
Here we will write a program that takes code from a (need to find API that doesn't read files from local filesystem) and compiles it.
The…
Read more...5 C++ mistakes you should avoid
Using raw pointers Most often leads to the problem of not following the rule of three/five/zero. Also easy to skip the initialization step…
Read more...C++ resources
On this blog Containerized builds with Docker C++ Cross-platform Serial Port libraries Other blogs Fluent {C++} Jonathan Boccara's blog C…
Read more...Variadic templates in C++
I found a use of variadic templates in C++. This is max function that finds the max element in the list of arguments at compile time. Very…
Read more...