Algorithms
From Tractatus
I was getting annoyed by the disturbing number of times I have had to reimplement a variety of Algorithms.
So, I thought I should implement some of them in a more permanent way, so that I actually get to reuse them, instead of just pretending to reuse them.
First off, let me just say that the reason I prefer to write in C++ over C is the STL (Which, as Marc says is also the reason it is an abomination)
The sad thing is that C++ is not always appropriate. And so, I end up implementing algorithms again, and again.
So, what I am going to do henceforth is refine implementations of my code instead of rewriting them again and again, which is annoying.