I hereby claim:
- I am starkhorn on github.
- I am tharathorn (https://keybase.io/tharathorn) on keybase.
- I have a public key ASA95Qoc8xBtwbfGFiHDE80IZBCQrvQaStujnyaD5NYObgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| class Person | |
| constructor: (args) -> | |
| if typeof args is "function" | |
| args.call this | |
| else | |
| @[key] = val for key, val of args | |
| about: -> | |
| "My name is #{@name}, I am #{@age}" |
| class Person | |
| constructor: (block) -> | |
| block.call this | |
| about: -> | |
| "My name is #{@name}, I am #{@age}" | |
| me = new Person -> | |
| this.name = "Ohm" | |
| this.age = 25 |
| Person.new do | |
| self.name = "Ohm" | |
| self.age = 25 | |
| end |
| http = require "http" | |
| proxy = | |
| host: "xxx.xxx.xxx.xxx" | |
| port: 8080 | |
| username: "username" | |
| password: "password" | |
| auth: -> "Basic " + new Buffer(@username + ":" + @password).toString("base64") | |
| url = require("url").parse "http://search.twitter.com/search.json?q=starkhorn" |
| @echo off | |
| set testFiles= | |
| set command='dir /b /s test\*Test.coffee' | |
| for /f "delims=" %%f in (%command%) do ( | |
| call :concatFiles %%f | |
| ) | |
| goto :callMocha | |
| :concatFiles |