Author Archives: Nate

Red Panda Drawing

Posted in Artwork | Tagged , , , , , | Leave a comment

Python Recursive Maze Example

Here is a small python script that creates a maze to illustrate the concept of recursion.  Hopefully the comments help clear up any confusion some new programmers might have about how it works. #!/usr/bin/env python “”"maze.py: Creates a maze to illustrate recursion.”"” import random def makeMaze(width, height): “”"Initializes an 2D list for the maze then [...]

Posted in Uncategorized | Tagged , , | Leave a comment

Start of 2012

It is really late at night right now. I am currently in the process of creating a fresh new site with a whole new theme and all new content.  At the moment the theme is fairly simplistic, but I kind of like it that way.  It’s clear, readable, and free of distractions. Why am I [...]

Posted in Uncategorized | Tagged | Leave a comment