Skip to content

Instantly share code, notes, and snippets.

View steven-s's full-sized avatar

Steven S steven-s

View GitHub Profile
@steven-s
steven-s / gist:2138461
Created March 20, 2012 17:36 — forked from hay/gist:1351230
Enterprisify your Java Class Names!
<!doctype html>
<html>
<head>
<title></title>
<style>
body {
background: white;
text-align: center;
padding: 20px;
font-family: Georgia, serif;
@steven-s
steven-s / game_of_life.rb
Created January 29, 2012 18:22
Conway's Game of Life with Ruby and RSpec
require 'rspec'
class World
attr_accessor :cells
def initialize
@cells = []
end
def tick