Posts tagged programming
April 14, 2024
Communication between software layers and looser coupling through dependency injection.
software-design
programming
March 16, 2024
Arguments on why and when it is a bad idea to have references as class members, and when it can be fine.
c++
programming
July 9, 2023
Useful examples with ranges and views, allowing for more functional style of C++ code.
c++
programming
August 22, 2022
Reading triangular mesh data from a binary STL file with C++; an example of using reinterpret_cast.
programming
c++
April 2, 2022
Golang workspaces, modules, and some VSCode configurations.
golang
programming
vscode
January 29, 2022
Different ways of lookup and insert into C++’s map.
c++
programming
July 14, 2021
A C++ example of using a conditional variable and a mutex.
c++
programming
concurrency
May 13, 2021
When braced initialization is preferred and when it is not (when it comes to std::vector).
c++
programming
May 1, 2021
Using Flask and OpenCV to create and serve images on the fly (with the expected Content-Type).
python
programming
flask
opencv
numpy
April 24, 2021
Kind of like binary search, but for a std::vector of sorted floats, using std::lower_bound.
c++
programming
May 5, 2020
Applying -fPIC flag when building with CMake.
c++
programming
cmake
pybind11
python
September 17, 2019
Some notes on C++ move semantics and an example of copy/move construction and assignment.
c++
programming
June 23, 2019
Some Git command to recover from when something has been messed up.
git
programming