I’ve finally and painstakingly moved all of the code relating to my previous blogs posts to GitHub. The descriptions in the repositories are not very descriptive (that’s what the actual blog posts are for!), but now the code is available to look at without needing to download and unzip archives. The GitHub site is https://github.com/codereversing/. Going through this also allowed me to see how my programming style (indent, variable/function naming) has evolved. I definitely prefer the more .NET type of style
if(someVariable == 10) { f(); } else { g(); } |
to the more space conscious, but harder to read, K&R C style
if(some_variable == 10) { f(); } else { g(); } |
All future code will be posted on GitHub now instead of zipped and linked through the blog post.