Skip to content

Instantly share code, notes, and snippets.

View kevinSuttle's full-sized avatar

Kevin Suttle kevinSuttle

View GitHub Profile
@kevinSuttle
kevinSuttle / index.html
Created November 4, 2012 05:46
@mathias' Streamlined Google Analytics Snippet - http://sut.tl/QeTV0W
<script>var _gaq=[['_setAccount','UA-XXXXXXXX-X'],['_trackPageview'], ['_trackPageLoadTime']];(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.src='//www.google-analytics.com/ga.js';s.parentNode.insertBefore(g,s)}(document,'script'))</script>
@kevinSuttle
kevinSuttle / main.scss
Created December 5, 2012 16:57
Overriding variable scope in Sass
$sans-font-stack: Arial, Helvetica, sans-serif;
.featured, .ads, time, footer, .social, summary, .sidebar, .feed, .intro { font-family: $sans-font-stack; }
@kevinSuttle
kevinSuttle / keybase.md
Last active October 21, 2015 04:35
Keybase GitHub verification

Keybase proof

I hereby claim:

  • I am kevinSuttle on github.
  • I am kevinsuttle (https://keybase.io/kevinsuttle) on keybase.
  • I have a public key whose fingerprint is C367 BDA4 7209 C1E0 A0A4 2F67 E2AE A467 FDD5 8B8F

To claim this, I am signing this object:

@kevinSuttle
kevinSuttle / new-issue-template.js
Created December 11, 2015 19:38
GitHub Issue Template
javascript:(function() {var e = document.getElementById('issue_body');if (e) {e.value += '# What? Why?\n\n\n# How was it tested?\n\n';}})();
@kevinSuttle
kevinSuttle / Solarized Alfred Theme
Last active December 15, 2015 06:39
Solarized Alfred Theme
alfred://theme/searchForegroundColor=rgba(255,255,255,1.00)&resultSubtextFontSize=1&searchSelectionForegroundColor=rgba(0,0,0,1.00)&separatorColor=rgba(238,232,213,0.25)&resultSelectedBackgroundColor=rgba(214,244,245,1.00)&shortcutColor=rgba(42,161,152,1.00)&scrollbarColor=rgba(238,232,213,0.50)&imageStyle=8&resultSubtextFont=Lucida%20Grande&background=rgba(0,43,54,1.00)&shortcutFontSize=3&searchFontSize=4&resultSubtextColor=rgba(147,161,161,1.00)&searchBackgroundColor=rgba(7,54,66,1.00)&name=Solarized&resultTextFontSize=3&resultSelectedSubtextColor=rgba(0,43,54,1.00)&shortcutSelectedColor=rgba(101,123,131,1.00)&widthSize=3&border=rgba(0,43,54,1.00)&resultTextFont=Lucida%20Grande&resultTextColor=rgba(147,161,161,1.00)&cornerRoundness=0&searchFont=Lucida%20Grande&searchPaddingSize=4&credits=Kevin%20Suttle&searchSelectionBackgroundColor=rgba(199,208,219,1.00)&resultSelectedTextColor=rgba(0,43,54,1.00)&resultPaddingSize=2&shortcutFont=Lucida%20Grande
@kevinSuttle
kevinSuttle / README.md
Last active December 22, 2015 18:45 — forked from anonymous/README.md
JSON-LD Playground: Icon Schema

Icon Schema

This gist was automatically created by the JSON-LD Playground. You can see it loaded there by visiting:

http://json-ld.org/playground/index.html#/gist/3c379dfb9c1086e6e686
@kevinSuttle
kevinSuttle / Color-Schema.jsonld
Last active December 23, 2015 04:48
UITheme Schema Proposal
{
"@context": "http://schema.org",
"@type": "Color",
"hasCSScolorName": {
"value": "true",
"name": "cornflower_blue"
},
"@values": {
"hexTriplet": "#6495ed",
"hexQuadruplet": "#6495edff",
@kevinSuttle
kevinSuttle / Gemfile
Last active December 23, 2015 16:09
Troubleshooting Middleman Sitemap & Config
source 'https://rubygems.org'
gem 'susy'
gem 'middleman', '~> 3.1.5'
gem 'middleman-smusher'
gem 'middleman-core', '~> 3.1.5'
gem 'middleman-livereload', '~> 3.1.0'
@kevinSuttle
kevinSuttle / El Capitan Dark.alfredappearance
Created December 23, 2015 20:37
El Capitan Dark theme
alfred://theme/searchForegroundColor=rgba(255,255,255,1.00)&resultSubtextFontSize=1&searchSelectionForegroundColor=rgba(0,0,0,1.00)&separatorColor=rgba(63,63,63,0.00)&resultSelectedBackgroundColor=rgba(0,105,218,1.00)&shortcutColor=rgba(0,160,255,1.00)&scrollbarColor=rgba(72,72,72,1.00)&imageStyle=7&resultSubtextFont=System&background=rgba(37,37,37,1.00)&shortcutFontSize=1&searchFontSize=3&resultSubtextColor=rgba(168,168,173,1.00)&searchBackgroundColor=rgba(37,37,37,1.00)&name=El%20Capitan%20Dark&resultTextFontSize=2&resultSelectedSubtextColor=rgba(216,217,221,1.00)&shortcutSelectedColor=rgba(255,255,255,1.00)&widthSize=3&border=rgba(37,37,37,1.00)&resultTextFont=System&resultTextColor=rgba(255,255,255,1.00)&cornerRoundness=3&searchFont=System%20Light&searchPaddingSize=0&credits=Kevin%20Suttle&searchSelectionBackgroundColor=rgba(178,220,236,1.00)&resultSelectedTextColor=rgba(255,255,255,1.00)&resultPaddingSize=1&shortcutFont=System
@kevinSuttle
kevinSuttle / log.zsh
Created September 27, 2013 05:17
Which Rbenv Output
❯ which rbenv
rbenv () {
typeset command
command="$1"
if [ "$#" -gt 0 ]
then
shift
fi
case "$command" in
(rehash|shell) eval `rbenv "sh-$command" "$@"` ;;