require 'edgecase'

# Greed is a dice game where you roll up to five dice to accumulate
...

Ruby Cleanly write checks in a m...

by sohooo, September 23, 2009 12:18, 15 refactorings, tagged with ruby, patterns, checks

I'm having fun going throug...

12f51e0e2ea40d6fb0df1c64324962a0 Talk
String foo = Request.QueryString["foo"];
if (!String.IsNullOrEmpty(foo))
{
...

C# Looking for a pattern to ha...

by slf, March 24, 2009 14:44, 8 refactorings, tagged with patterns

There is a page in a C# web...

098e5c1a565b47e9860539fbebc3fa98 Talk
class Light
  def initialize(location)
    @location = location
...

Ruby Command Pattern from Head F...

by Rubén Dávila, January 02, 2009 14:09, 1 refactoring, tagged with ruby, patterns, design

Example in Ruby of Command ...

0e34c56054c414263e933a1b8b3d0d55 Talk