Home

Modern C++ Programming

  • How std::span changes C++ fundamentally

    October 16, 2022 by

    In C++, we have all sorts of std containers, such as vector. Normally, when we work with vectors, we also pass them around by reference, and vectors of course own their data in a contiguous way. When a vector is passed to a function, we pass it by reference: In C++20, there is a new… Read more

  • Software development and sneaky algorithms

    October 14, 2022 by

    So I have been engineering my own neural network technology for some time, and I’ve been running tests and experiments sometimes. What I have discovered about backrpopagation, is that, when there are errors in backpropagation algorithm, they may not break backpropagation completely. It can work in partial completeness or with some amount of errors, to… Read more

View all posts

Follow My Blog

Get new content delivered directly to your inbox.