I hereby claim:
- I am paulnicholson on github.
- I am paulnicholson (https://keybase.io/paulnicholson) on keybase.
- I have a public key whose fingerprint is 7861 39C8 89D7 18B4 FE66 8B76 BA44 3224 42C2 0D67
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
$ brew install https://raw.github.com/paulnicholson/homebrew/master/Library/Formula/stud.rb
$ curl https://gist.githubusercontent.com/paulnicholson/2050941/raw/7e4d2178e3733bed18fdfe737277c3cb72241d39/powssl > ~/bin/powssl
$ chmod +x ~/bin/powssl
$ powssl
using terms from application "Colloquy" | |
# Your nickname on #bitcoin-otc | |
property theNickname : "nick_name" | |
# Your PGP key id | |
property yourKeyid : "1234567876" | |
## Configuration ends here ## | |
property processGPG : 0 |
var ElementLink = Class.create({ | |
initialize: function(element) { | |
this.element = $(element); | |
this.element.observe('mouseover', this.mouseover.bind(this)); | |
this.element.observe('mouseout', this.mouseout.bind(this)); | |
this.element.observe('click', this.click.bind(this)); | |
this.element.setStyle({cursor: 'pointer'}); | |
this.location = element.readAttribute('href'); | |
this.target = element.readAttribute('target'); | |
this.element.elementLinkObj = this; |
var M = { | |
get: function(key) { | |
return function(target) { | |
return target[key]; | |
} | |
}, | |
set: function(key, value) { | |
return function(target) { | |
target[key] = value; | |
} |