Author Archives: Chris Chunick
Frequency Coding
The source code below is a bit coder class that can be used for reading or writing a compressed file. The source code provides access to a new type of entropy encoder. This new type of coder uses an algorithm … Continue reading
Operations Control Centre
This is a small dynamic project I have been developing over the course of the year during off work hours. It originated from the idea of having a network map done up specifically for work displayed on two monitors. Instead … Continue reading
X-Hex
X-Hex is a game I programmed a long time ago. This game is still very exciting to play and I believe was ahead of its time when it was written. The idea stemmed from my brother who had described a … Continue reading
Part 2 – Encoding a simple value
For the second part, we will encode a simple 4 bit integer value – let’s use the the 4 bit integer 6 to encode, this is our “message”. The integer six has a 4 bit binary value of 0110. To help … Continue reading
Part 1 – Introduction to a simple bit encoder
To start off in the first part our series we will take a look at the properties of a 4 bit integer to help imagine where our simple bit encoder comes from. For purposes of encoding and decoding data we … Continue reading