Skip to content

Instantly share code, notes, and snippets.

View j0rdsta's full-sized avatar

Jordan Gardiner j0rdsta

View GitHub Profile
@j0rdsta
j0rdsta / Gemfile
Last active August 29, 2015 14:25
Fixing old Zurb Foundation 3.2.5 Sites
source 'https://rubygems.org'
# thanks to https://github.com/GumbyFramework/Gumby/issues/183#issuecomment-53180024
gem "rb-readline", "0.4.2"
gem "pure-sass"
gem "string-encrypt"
gem "i18n", '0.6.9'
gem "modular-scale", '~> 1.0.6'
gem "sassy-math"
@j0rdsta
j0rdsta / Default (Windows).sublime-keymap
Created February 15, 2014 09:48
Hemingway mode in Sublime Text 3.
[
// Hemingway mode
{ "keys": ["backspace"], "command": "unbound" },
{ "keys": ["shift+backspace"], "command": "unbound" },
{ "keys": ["ctrl+shift+backspace"], "command": "unbound" },
{ "keys": ["delete"], "command": "unbound" },
]
@j0rdsta
j0rdsta / gist:8413448
Last active January 3, 2016 05:09
Basecamp Classic Auto Signature
// ==UserScript==
// @name Basecamp Classic Auto Signature
// @namespace https://gist.github.com/j0rdsta/8413448
// @version 0.1.2
// @description Automatically appends signature to Basecamp Classic textbox
// @match https://*.basecamphq.com/*
// @copyright 2014+, Jordan Gardiner
// ==/UserScript==
var selector = document.getElementById("comment_body_editor");