You've stumbled across the archive of the blog posts I wrote some 8 years ago or so. Feel free to peruse, through everything from code snippets that never made it to GitHub, to random ramblings about my passion for technology.

XKCD Comic; memory and pointers

You can basically say that everything a computer reads and does is stored as memory. Whether's it's RAM (random-access memory) that a program is currently using, or part of the ROM (read-only memory), the computer is using memory.

Continue reading...

Some basic C++0x; only the last line is valid C++

I'm quite a fan of C++. It gets the job done, it's fairly easy to comprehend from a logical view, and it provides total control over everything you need to do. I like Python for different reasons; it's very flexible, i.e. in terms of variable types and syntax.

Continue reading...