Various .NET Benchmarks

A lot of times i was wondering what is the best performing code. In order to determine that i had to benchmark my code, but benchmarks are hard to write. Luckily there is a open source project that do...
0 Read More

Queues in JavaScript

When it comes to the FIFO (First In, First Out) data structure commonly referred as a queue, JavaScript doesn't provide any built-in implementation. If you quickly seach online, people will mostly te...
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