Skip to content

Instantly share code, notes, and snippets.

View nickwaelkens's full-sized avatar
🎯
Focusing

Nick Waelkens nickwaelkens

🎯
Focusing
View GitHub Profile
@nickwaelkens
nickwaelkens / upload2ftp.sh
Created February 12, 2014 11:00
Upload to FTP (useful for in Automator)
while read f
do
x="$f"
x=${x// /%20}
x=${x##*/}
curl -u username:password ftp.host.com -T "$f" && echo host.com/"$x" | pbcopy
done
@nickwaelkens
nickwaelkens / rot13.coffee
Last active December 16, 2015 12:58
ROT13 in CoffeeScript
# "stop, hammertime".rot13() // returns "fgbc, unzzregvzr"
# "fgbc, unzzregvzr".rot13() // returns "stop, hammertime"
String::rot13 = ->
this.replace /[a-zA-Z]/g, (c) ->
String.fromCharCode (if ((if c <= "Z" then 90 else 122)) >= (c = c.charCodeAt(0) + 13) then c else c - 26)