AuthorHerc

I’ve started exploring programming and how computers work around the time I entered highschool and got hooked pretty much straigt away. 4 years of computer science intensive classes later, I started uni and a year after that landed a job working as a lowly code monkey for a webdev company. It’s the path I’ve walked for the past five or six years, always learning new tips and tricks, from code monkey to senior software engineer, expanding my reach in the tech world.

The ByteBuffer (Ep. 1)

T

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

N

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...