Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jenmei on github.
  • I am jenmei (https://keybase.io/jenmei) on keybase.
  • I have a public key ASCBj0CJ4EaUOTcWOriQbb1qwcjvs96-2YNPTNANLebJYwo

To claim this, I am signing this object:

interface SuperInterface {
url: string
}
function amazingDirective() {
return {
scope: {},
link: function (scope: SuperInterface) {
let description : string = someFunctionThatsNotTypeScriptButWeKnowReturnsAString();
scope.description = description;
@jenmei
jenmei / gist:1007466
Created June 4, 2011 01:56
One fish, two fish ...
['one', 'two', 'red', 'blue'].each do | adjective |
puts "#{adjective} fish"
end