I hereby claim:
- I am hexorx on github.
- I am joshrobinson (https://keybase.io/joshrobinson) on keybase.
- I have a public key whose fingerprint is 1D1E 41BA FB1C 7FBE A6A5 401B DE3C 97BA 3D72 C4F2
To claim this, I am signing this object:
Verifying I am +joshrobinson on my passcard. https://onename.com/joshrobinson |
Verifying that +joshrobinson is my openname (Bitcoin username). https://onename.com/joshrobinson |
I hereby claim:
To claim this, I am signing this object:
Verifying that +joshrobinson is my Bitcoin username. You can send me #bitcoin here: https://onename.io/joshrobinson |
body, h1, h2, h3, h4, h5, h6, a { | |
color: #000000; | |
font-family: 'Open Sans',sans-serif; | |
} | |
a:hover { | |
color: #999999; | |
text-decoration: none; | |
} | |
a:focus { |
I hereby claim:
To claim this, I am signing this object:
.scrollable { | |
min-height: 0; | |
-webkit-box-flex: 1; | |
box-flex: 1; | |
-webkit-flex: 1; | |
flex: 1; | |
overflow-x: hidden | |
overflow-y: auto; | |
-webkit-transition-property: top, bottom; | |
transition-property: top, bottom; |
// based on http://blog.jpillora.com/2012/06/easy-syntax-highlighting-for-blogs.html | |
(function() { | |
function jQueryExists() { return typeof jQuery !== 'undefined'; } | |
//get jquery | |
if(jQueryExists()) | |
$(window.prettyPrint); | |
else { | |
var interval = setInterval(function() { |
# Setting the prefix from C-b to C-a | |
set -g prefix C-a | |
# Free the original Ctrl-b prefix keybinding | |
unbind C-b | |
# Setting the delay between prefix and command | |
set -sg escape-time 1 | |
# Ensure that we can send Ctrl-A to other apps |