Person/Place/Thing | Shit-storm level (tm) |
---|---|
Obama / Healthcare | ![1][poo] ![2][poo] ![3][poo] ![4][poo] ![5][poo] |
ERB and HAML templates | ![1][poo] ![2][poo] ![3][poo] ![4][poo] ![5][poo] |
Matt Newton Metaprogramming | ![1][poo] ![2][poo] ![3][poo] ![4][poo] ![5][poo] |
T-Mobile | ![1][poo] ![2][poo] ![3][poo] ![4][poo] ![5][poo] |
Ruby Hash Rockets | ![1][poo] ![2][poo] ![3][poo] ![4][poo] ![5][poo] |
PHP Developers | ![1][poo] ![2][poo] ![3][poo] ![4][poo] ![5][poo] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module MountJSON where | |
-- import Prelude hiding (getContents) | |
import qualified Data.Aeson as JSON | |
import qualified Data.ByteString.Lazy.Char8 as Char | |
main :: IO () | |
main = do | |
input <- Char.getContents | |
case JSON.eitherDecode input of |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
framework 'Cocoa' | |
framework 'WebKit' | |
class Cat | |
attr_accessor :name, :age | |
def initialize(name = 'kitty', age=42) | |
@name = name | |
@age = age | |
end | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#project.rb | |
has_many :usages | |
has_many :asset_orders | |
has_many :usages, :through => :requests | |
#request.rb | |
belongs_to :project | |
#usage.rb | |
belongs_to :request |