I hereby claim:
- I am jgillman on github.
- I am jgillman (https://keybase.io/jgillman) on keybase.
- I have a public key whose fingerprint is E3EE D513 929D 3C0A 69A9 B9CA 5B58 90FE 1310 4968
To claim this, I am signing this object:
| /** | |
| * CSS only button arrows | |
| */ | |
| ul { | |
| border: 2px solid red; | |
| } | |
| ul:after { | |
| content: '.'; | |
| clear: both; |
| /** | |
| * Half responsive, half static | |
| */ | |
| html { | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; | |
| font-family: Helvetica,Arial; | |
| } |
| alias ~="cd ~/" | |
| alias ..="cd .." | |
| alias la="ls -A" | |
| alias ll="ls -lAhF" | |
| alias screen="screen -d -R" | |
| # Recursively delete `.DS_Store` files | |
| alias cleanup="find . -name '*.DS_Store' -type f -ls -delete" | |
| # Enhanced WHOIS lookups |
| @mixin truncate { | |
| white-space: nowrap; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| } | |
| @mixin prefixify($style, $params) { | |
| -webkit-#{$style}: $params; | |
| -moz-#{$style}: $params; | |
| -ms-#{$style}: $params; |
| @mixin background-image-retina($file, $type, $width, $height:$width) { | |
| background-image: url($file + '.' + $type); | |
| @media all and (-webkit-min-device-pixel-ratio: 2), all and (-moz-min-device-pixel-ratio: 2) { | |
| & { | |
| background-image: url($file + '@2x.' + $type); | |
| -webkit-background-size: $width $height; | |
| -moz-background-size: $width $height; | |
| background-size: $width $height; | |
| } |
| class GoogleAnalytics | |
| @init: (webPropertyId) -> | |
| @_initQueue(webPropertyId) | |
| scriptTag = @_createScriptTag() | |
| @_injectScriptTag(scriptTag) | |
| @_initQueue: (webPropertyId) -> | |
| window._gaq ?= [] | |
| window._gaq.push ['_setAccount', webPropertyId] | |
| window._gaq.push ['_trackPageview'] |
| var re = /s\d{2}/i; | |
| var reGlobal = /s\d{2}/gi; | |
| var string = 's05'; | |
| console.log( 'Testing reGlobal 4 times:' ); | |
| console.log( reGlobal.test(string) ); | |
| console.log( reGlobal.test(string) ); | |
| console.log( reGlobal.test(string) ); | |
| console.log( reGlobal.test(string) ); |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * GB Kitty Tiles.. | |
| */ | |
| html { | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; | |
| } |
| /** | |
| * Ribbon Banners | |
| */ | |
| html { | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; | |
| font-family: sans-serif; | |
| } |