Simple Mandelbrot Set Program
There are some limitations to this program: We will explore…
Computing π
Image credit: Cormullion, Julia code here. π (Pi) is the mathematical constant that…
Computing the Mandelbrot Set
The Mandelbrot Set is one of the most famous fractals in mathematics,…
Computing Prime Numbers
The fastest way to compute prime numbers between 2 and…
C++ Unit Testing with GoogleTest
Unit testing is a foundational practice in software development that…
C++ Unit Testing with CppUnit
Unit testing is a foundational practice in software development that…
C++ Character Encoding: char vs wchar_t vs Unicode
The char type in C++ has an interesting history that…
C++ Metaprogramming: Recursive Template Functions
There are a number of ways to write recursive function…
C++ Metaprogramming: Using Concepts
Concepts in C++ are a feature introduced in C++20 that…