Sep 6 2009

Python base converter

Converts from any base less than or equal to 36 to any other base less than or equal to 36. This is my first python program so it is definitely not amazing, but I don’t think I did too bad.
Continue reading


Aug 27 2009

Multithreaded String Permutations

This code snippet is designed to take in a string an print out every possible permutation of that string. The only problem I’ve encountered so far is that it uses a lot of memory with longer strings.

Continue reading


Jul 13 2009

Converting Images from rgb to grayscale with Java

Not sure what motivated me here but I took a little time and came up with this. It takes the original image file ( can be a multitude of formats, has worked with both jpg and png so far) and outputs a grayscale image (jpeg or png).
Continue reading