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
# seen @ http://evan.tiggerpalace.com/articles/2011/11/24/dci-that-respects-the-method-cache/ | |
user.as(GitHubUserProvisioner) do |provisioner| | |
provisioner.provision_with!(*yank_oauth_stuff_off_request) | |
end |
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
export PS1="\$(__git_ps1 \"± %s 〉\")\$(~/.rvm/bin/rvm-prompt) 〉\w | |
⚡ " |
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
export PS1="\$(__git_ps1 \"± %s 〉\")\$(~/.rvm/bin/rvm-prompt) 〉\w | |
∴ " |
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
// DDMMYY date parser for TableSorter plugin | |
// 'cause stock "shortDate" sorter only works with 'yyyy' year format | |
// ref: http://tablesorter.com/docs/example-parsers.html | |
var regx = /(\d{2})\/(\d{2})\/(\d{2})/; | |
var match_dd_mm_yy; | |
$.tablesorter.addParser({ | |
id: "ddmmyy", | |
is: function(s) { | |
return false; | |
}, |
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
th.tablesorter-header { | |
cursor: pointer; | |
} | |
th.tablesorter-header:after { | |
content: ""; | |
float: right; | |
margin-top: 7px; | |
border-width: 0 4px 4px; | |
border-style: solid; | |
border-color: #000000 transparent; |