Menu Share

C / C++

Design Icon

What are Shaders?

by | Published on

In this article you will learn on the basic level what shaders are and how they are used in graphics programming.
Read More

C++ Logo

Rust enums in Modern C++ – Match Pattern

by | Published on

In this article I show a smart way to do variant matching in C++ using a few clever macros and the std::visit function.
Read More

C++ Logo

The Microsoft.GSL Library

by | Published on

In this article I will explore a library for C++. It is called GSL and it is an open-source library by Microsoft under the MIT license.
Read More

C++ Logo

Rust Enums in Modern C++

by | Published on

A lot of people comment about rust enums being really powerful and I wanted to showcase how one can achieve the same functionality in C++
Read More

C++ Logo

C++ Conditional Statements

by | Published on

In this article I explore conditional statements in C++ and there are a few more advanced examples for intermediate programmers.
Read More

Design Icon

What is Graphics Programming?

by | Published on

In this article I explore what graphics programming is as well as some common terminology and tools used in it.
Read More

C++ Logo

Hello, BGFX!

by | Published on

In this article I will show you how to work with the BGFX graphics library through my BIG2 stack. This is a good intro to graphics programming
Read More

C++ Logo

The BIG2 Stack

by | Published on

In this article I showcase how you can develop graphics with the BGFX library and also introduce you to my own open-source project.
Read More

C Logo

Making Tic-Tac-Toe in ANSI C

by | Published on

In this simple tutorial I teach you how to create a game of Tic-Tac-Toe in ANSI C. It is beginner friendly so check it out.
Read More

Docker Logo

CMake Cross-Compiling using Docker

by | Published on

In this article I explore C/C++ cross-compiling through docker containers. I use the very well made dockcross containers. Check out for more!
Read More