The Basics of 3D Space (Volume 01)
Learn how to make basic 3D environments and how to navigate through the world you create. This is a very basic tutorial and requires little 3D skill -- DirectX is not used in the tutorial.
XOR Encryption 0.1.0
A simple examination of XOR encryption. It is written in C, but as of right now I plan on converting it into a C++ version as well. Unlike previous versions before it, version 0.1.0 encrypts and decrypts files, rather than a string from a command prompt, which is a very big step towards practicality. In previous versions, it was difficult to type in an encrypted phrase and try to decrypt it because the characters in a decrypted phrase were not present on a keyboard. The code is not yet portable, but this version is a huge step.
Bitwise Operators with Basic C++
After deciding to post some C++ tutorials, I figured it would be more interesting to include some computer science in the tutorial programs instead of a boring "hello world"... The function of this program is to simply print a table of AND, OR, and XOR return values -- but more importantly it shows the basic output commands for C++ and how to use getch() to pause the output.
CStr: Convert numbers to strings
Have you ever wanted to display the equation of a line to the user but you had to do it on several lines because TI-83's don't allow you to convert numbers to strings? Well, using this code you can easily convert just about any number to a string.
Stock Roulette
This is a very basic program that I wrote in my chem class when I was bored. The game consists of selling stock that jumps up and down -- you win money by selling the stock at a higher price than when you bought it.