-
To Varint or not to varint
While working through the potato chat BLOBs, I was introduced to the varint concept. Effectively, a varint is a flexible way to communicate positive integers through one or more byte of data, dynamically. Instead of an application always requiring an integer use *one* byte of data to convey a number (and thus being limited from…