In August 2013 I embarked on another new game project in my then-favourite language Java. Heartened by the knowledge that everyone loves a good classic game clone, I decide to write my own rendition of Snake.

lrnk snake

Download the game: SelfEsteemSnake-1.1-beta.jar

Menu - arrow keys to select, return to confirm
Game - arrow keys to move, p to pause

View the code: github.com/laurieboyes/self-esteem-snake

As well as giving me one more shiny thing to put on my personal website, this project was contrived to help me learn Git (imagine the mess in a world without Git!) and to take a small chip out of the looming monolith that was my imposter syndrome by finally giving me a solid, first-hand understanding of working with Test-driven Development.

I decided that the art style should be entirely text based and had a lot of fun with that, not limited to learning some things about when and how one should bundle fonts in jars. A massive bonus this decision gave me was being able to very clearly log the state of the game to the console when debugging. It was also thanks to this decision that I had the idea for the alternative game mode, Bookworm.

bookworm

As you can see, it’s basically snake again, but you collect letters of an article. The game downloads a random article from wikipedia and uses that to form the food string.

There must have been a reason for me not using the MediaWiki API because I remember looking into it, but I’m quite pleased I didn’t because this provided with with my first real exposure to web scraping using jsoup.

All sorts of fun.