I find favicons pretty useful overall. That weird little Earthworm-Jim-esque bug-head in my bookmarks bar immediately queues me in on where to click to get to bugzilla. My site hasn’t had a favicon. The only explanation I can offer is laziness mixed with a lack of inspiration. A favicon isn’t typically a glamorous undertaking—it’s just one of those things that ought to be done.

My first idea for a favicon was Eric S. Raymond’s Hacker Emblem. The Hacker Emblem is certainly a meaningful symbol, but it’s also kind of a cop-out.

I tried something with nyan cat and the hacker emblem, which was a solid idea, but sort of lost something at 16px×16px. Then I started to think, why not just have Conway’s Game of Life running in the favicon?

Game of Life in JavaScript

Conway’s Game of Life is a zero player game with 4 simple rules (this is verbatim from the Wikipedia article):

  1. Any live cell with less than two live neighbours dies, as if caused by under-population.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overcrowding.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

My game of life is heavily derived from an IBM DeveloperWorks post, Conway’s Game of Life in CoffeeScript and canvas, except that I just used plain ol’ JavaScript, a much smaller grid, and I included some functionality to reset the game seed if the last two evolutions of life don’t change the grid layout.

Dynamic Favicons

After creating the game loop in JavaScript, I had to create some code to dynamically update the favicon.

First, I created the default favicon for this site by rendering out a glider via JavaScript and rendering the canvas as a png on the page.

After rendering as a png in the browser, I saved the .png to my computer. Then I uploaded the png to favicon-generator.org saving the resulting .ico to my site’s directory root as favicon.ico. favicon.ico is what gets rendered in IE, since IE has found brand new ways to be non-compliant with emerging standards (le sigh).

The finishing touch is to make the GameOfLife.prototype.drawGrid function update my favicon’s href attribute on every tick function call:

The entirety of this javascript is available under the GPLv3 License on my github.