This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/log/value.go b/log/value.go | |
index f2c55b7..4351586 100644 | |
--- a/log/value.go | |
+++ b/log/value.go | |
@@ -18,6 +18,12 @@ type Valuer interface { | |
Value() Value | |
} | |
+// ValuerFunc is an adapter func type that implements the Valuer interface. | |
+type ValuerFunc func() Value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"net/http" | |
"database/sql" | |
"fmt" | |
"log" | |
"os" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm -rf ~/.vim* | |
rm -rf ~/.gvim* | |
brew update | |
brew uninstall ack | |
brew install ack | |
sudo pip uninstall pep8 | |
sudo pip install pep8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copyright (c) 2011 YOUR_NAME_HERE, YOUR_URL_HERE | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
"Software"), to deal in the Software without restriction, including | |
without limitation the rights to use, copy, modify, merge, publish, | |
distribute, sublicense, and/or sell copies of the Software, and to | |
permit persons to whom the Software is furnished to do so, subject to | |
the following conditions: | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.addEventListener('keydown', function(e) { | |
([37, 39].indexOf(e.keyCode) > -1) && pres[{37:'prev',39:'next'}[e.keyCode]](); | |
}); | |
// VERSUS | |
document.body.addEventListener('keydown', function(e) { | |
switch(e.keyCode) { | |
case 37: | |
pres.prev(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"html": "<br></object>"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd ~/Library/Application\ Support/Google/Chrome/ | |
$ cat Local\ State| grep client_id | |
"client_id": "046C3827-XXXX-XXXX-XXXX-F1111E0B8F91", | |
"client_id_timestamp": "1263063003", | |
$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is auto-generated from the current state of the database. Instead | |
# of editing this file, please use the migrations feature of Active Record to | |
# incrementally modify your database, and then regenerate this schema definition. | |
# | |
# Note that this schema.rb definition is the authoritative source for your | |
# database schema. If you need to create the application database on another | |
# system, you should be using db:schema:load, not running all the migrations | |
# from scratch. The latter is a flawed and unsustainable approach (the more migrations | |
# you'll amass, the slower it'll run and the greater likelihood for issues). | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tomas:~/code/refinerycms [git:master] | |
⌦ git show | |
commit 4aed32106abcda81ab5d775b98293824075eb516 | |
Merge: 88e9ad1 1c60c26 | |
Author: Tomás Senart <[email protected]> | |
Date: Wed Sep 1 01:36:36 2010 +0100 | |
Merge remote branch 'resolve/master' | |
diff --cc bin/refinerycms |
NewerOlder