Welcome stranger,

If you enjoy reading about other people’s achievements and cockups as well as learning the odd thing or two then you came to the right place.
I mainly write about tech and try to provide some tutorials or in depth explanations on topics I come across and find interesting (not WordPress). I’m also broadening my horizons and will be adding more posts about team management and Agile concepts and processes. Below you can find a list of my most recent posts and don’t forget to check out the “About Me” page.

Latest stories

The ByteBuffer (Ep. 1)

This class will be used to read an array of bytes from the socket and then provide use easy methods for extracting the information from said array into more easily workable data types such as int, float, string, etc. Besides reading this class will also allow us to write data to an array of bytes. This is needed because the socket can only send/receive arrays of bytes so sending an int without...

NetCode Intro

This will be a tutorial series targeted at somewhat knowledgable C# developers about building a TCP server/client setup. I will go over all the bits and bobs I’ve built for my solution and how it all works together to provide a reliable TCP networking layer that’s completely and easily customizable by anyone that follow through this tutorial. Before we get into the actual server and...