Skip to content

Instantly share code, notes, and snippets.

View paulnicholson's full-sized avatar

Paul Nicholson paulnicholson

  • Fuquay Varina, NC
View GitHub Profile

Keybase proof

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:

@paulnicholson
paulnicholson / a.markdown
Created April 4, 2012 06:06
Bounce Message
  1. Open Automator.
  2. Create a new service.
  3. Configure the service so that it receives "no input" in "Mail"
  4. Add "Get Selected Mail Messages" into the workflow
  5. Add "Run Applescript" into the workflow.
  6. Paste the attached AppleScript and save the workflow as "Bounce Message".
  7. Create a keyboard shortcut for "Bounce Message" in Mail.app(⌘⇧B)
  8. In Mail, select the message you would like to bounce. Hit your keyboard shortcut(⌘⇧B) or from the "Mail" menu, choose "Services", then click on "Bounce Message".
@paulnicholson
paulnicholson / powssl
Last active November 24, 2021 16:40
ssl with pow using stud

Instructions

  • Install stud $ brew install https://raw.github.com/paulnicholson/homebrew/master/Library/Formula/stud.rb
  • Download and install the powssl script $ curl https://gist.githubusercontent.com/paulnicholson/2050941/raw/7e4d2178e3733bed18fdfe737277c3cb72241d39/powssl > ~/bin/powssl $ chmod +x ~/bin/powssl
  • Run powssl to create development certificate and configure stud.
  • $ powssl
@paulnicholson
paulnicholson / gist:972001
Created May 14, 2011 06:46
Colloquy Plugin for bitcoin-otc authentication
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 M = {
get: function(key) {
return function(target) {
return target[key];
}
},
set: function(key, value) {
return function(target) {
target[key] = value;
}