You've stumbled across the archive of the blog posts I wrote back in 2014 and prior. Feel free to peruse, through everything from code snippets that never made it to GitHub, to random ramblings about my passion for technology.

A Python function that parses through a sorted list (descending order) using a binary search method to determine if an element is present. Best case O(1), worst case O(log n), and uses very low memory.

Continue reading...

This code is designed to allow one to find all autocorrect suggestions of a word based on the letters close to it on a given keyboard (the following examples using QWERTY). That is to say, if the string "trf" is given, "red" would be a good result (one key left on the keyboard for each letter).

Continue reading...

A simple Python script that generates an array containing any numbers of the Fibonacci sequence based on their integer indices. Can also accept negative integers. If the correct parameter is specified, it will return the array as a string instead.

Continue reading...

Python is probably the easiest language I've come along, for use as an introductory language anyway. I, myself, started on HTML, then moved onto JavaScript, ActionScript 2.0, C++, and so on, but when I took my computer science class in September I was forced to use Python. Since I knew the class would be a breeze anyway, I had some fun learning Python. (Thank God it wasn't Perl.)

Continue reading...