This is a page where I allow for others to look at some of my projects that I have created or am working on now.
NOTE: If you find a bug, please let me know.
Another NOTE: I am not responsible for any possible problem that might happen as a result from using my code.
Another NOTE: I am not responsible for any possible problem that might happen as a result from using my code.
CharFreq Class : June 13, 2003
This program will take a given ciphertext file and then do a character analysis on it. This is done by keeping a count of the occurrences of individual characters in the ciphertext. Once the file has been completely read, we write out to a file (hardcoded in this program to be “charfreq_results.txt”) the results of the analysis and a conversion of a permutation cipher of 6.
The Analysis comes in the following form:
A listing of the each character, the count of its occurrences in the file, the frequency of occurrence in the entire ciphertext (Char Count/ Total Char), and lastly the total count of characters in the file. NOTE: The total count of characters in the file includes spaces, but the spaces are not included in the character analysis.
The permutation cipher column length is hardcoded, but you could assign “ColumnLength” a new value if you wanted to change the column length to work with another ciphertext analysis.
Click here to get the program.
CTrayIcon Class : March 9, 2003.
I wrote this class and demo application to provide users with an easy way of adding a sys tray icon to any dialog based c++ application. Note: I am also providing the source for you to learn from and use. Please read CTrayIcon.cpp for how to implement this code. If you find any bugs, please let me know!
Click here to get the program.
HTML to Text : Feb 19, 2003
If you ever wanted a simple program where you could write HTML and then get converted HTML to show in a browser window (eg nolonger HTML elements) this program does that. I got tired of doing the changes by hand when writing tutorials so I made a quick app. Have fun..
Click here to get the program.
C++ Hello World : Aug 16, 2001
If you ever wanted a simple c++ hello world example, here you go! I wrote this because the books make them overly complicated…
Click here for the source.
Matrix Multiplication Class : March 23, 2001
I made this back in my school days to allow me to easily manipulate 3D objects in c++…..
Click here for the source.
