Code Mutiny

Show no reaction, no emotion, no surprise... no matter what you see, do not move

Resume  
Say something

kissmylipsifyoucanguy:

My Favourite video of demonstration of Kizomba. U Can Just Love it.

Kizomba basic steps

Cocoa REST client 

Bugzilla REST API 

JSONKit 

Kizomba Basic Steps

Core Location tutorial 

ANTLR 3.x Tutorial

Why and when you should use Cucumber 

I keep hearing it over and over again; using Cucumber is redundant. Bullshit right? Check out this article.

Python library for Bugzilla’s REST API 

sunsurfer:

3D Mural Wall Art, Los Gatos, California
photo and art by johnpugh

sunsurfer:

3D Mural Wall Art, Los Gatos, California

photo and art by johnpugh

tinadico:

Visited Gibson to pick up and test drive both an acoustic and an electric. The acoustic in particular, a “Blues King”, blew me away and will hopefully be my new best friend on journeys around the world in the near future. Here they both are next to my other bestest of friends on the left.

Subversion Quick Reference 

Home

Home

ThreadLocal pattern in Ruby

class Module def thattr name module_eval <<-code def #{ name }() Thread.current[#{ name.to_s.inspect }] end def #{ name }=(v) Thread.current[#{ name.to_s.inspect }] = v end code end end

class Foo thattr :x end

foo = Foo.new bar = Foo.new foo.x = 1 p bar.x # ==> 1

More Information