Unix Timestamps and Epoch Time 7/10

Understanding Unix Time Unix time, often referred to as epoch time, is one of the most elegant solutions in computing for representing a point in time. At its core, Unix time is beautifully s...
0 Read More

Go string concatenation benchmark

TL;DR strings.Builder is the fastest and takes least memory. + is tied in memory but slightly less performant (although much more convenient). strings.Join is not a bad alternative for arrays...
0 Read More

Counter web app

Counter web app
About A simple counter app using html,css,js and go(for backend). Link to repo: link to repo Overview We serve the frontend using go's http server package. It serves the index...
0 Read More