This is a local copy of the commands from:
- http://www.jmknoble.net/keys/#master-key
- http://www.macfreek.nl/mindmaster/Convert_GPG_keys_to_subkeys
- Bootable offline cd with gpg: http://tails.boum.org
HTTP/1.1 200 OK | |
Server: Sun-Java-System-Web-Server/7.0 | |
Date: Mon, 07 Dec 2009 07:25:34 GMT | |
P3p: policyref="http://www.sun.com/p3p/Sun_P3P_Policy.xml", CP="CAO DSP COR CUR ADMa DEVa TAIa PSAa PSDa CONi TELi OUR SAMi PUBi IND PHY ONL PUR COM NAV INT DEM CNT STA POL PRE GOV" | |
Cache-control: public | |
Set-cookie: JROUTE=W2VMz2yu926eYGvP; Path=/ | |
X-powered-by: JSP/2.1 | |
Set-cookie: JSESSIONID=80765ae114eab08df95a11208c62; Path=/ | |
Content-type: text/html;charset=UTF-8 | |
Via: 1.1 https-www |
This is a local copy of the commands from:
require 'slop' | |
optspec = <<-SPEC | |
ruby foo.rb [options] | |
--- | |
n,name= Set your name | |
a,age= Set your age | |
v,verbose Enable verbose mode | |
debug Enable debug mode | |
SPEC |
Backstory: I decided to crowdsource static site generator recommendations, so the following are actual real world suggested-to-me results. I then took those and sorted them by language/server and, just for a decent relative metric, their Github Watcher count. If you want a heap of other projects (including other languages like Haskell and Python) Nanoc has the mother of all site generator lists. If you recommend another one, by all means add a comment.
(function($){ | |
var insertAtCaret = function(value) { | |
if (document.selection) { // IE | |
this.focus(); | |
sel = document.selection.createRange(); | |
sel.text = value; | |
this.focus(); | |
} | |
else if (this.selectionStart || this.selectionStart == '0') { | |
var startPos = this.selectionStart; |
It auto-installs grailbird_updater in an isolated location. Thanks, @DeMarko!
module SystemHook | |
private | |
def system(*args) | |
super.tap do |result| | |
puts "system(#{args.join(', ')}) returned #{result.inspect}" | |
end | |
end | |
end | |
class Object |
#!/usr/bin/env bash | |
source super.bash | |
foo() { | |
echo hello | |
} | |
super_function foo | |
foo() { |
first_commit=$(git log --pretty=format:%H | tail -1) | |
git rev-list --all --no-merges | | |
while read commit; do | |
if [ $commit == $first_commit ]; then break; fi; | |
IFS_backup=$IFS | |
IFS=$'\n' | |
diff_lines=( $(git diff --numstat --minimal -U0 --word-diff=porcelain $commit^ $commit | grep -E '^(\+[^+]|-[^-]).*$') ) | |
IFS=$IFS_backup |