This file contains hidden or 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
// ==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"); |
This file contains hidden or 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
Show hidden characters
[ | |
// Hemingway mode | |
{ "keys": ["backspace"], "command": "unbound" }, | |
{ "keys": ["shift+backspace"], "command": "unbound" }, | |
{ "keys": ["ctrl+shift+backspace"], "command": "unbound" }, | |
{ "keys": ["delete"], "command": "unbound" }, | |
] |
This file contains hidden or 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
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" |