Skip to content

Instantly share code, notes, and snippets.

View Jacob-Gray's full-sized avatar

Jacob Gray Jacob-Gray

View GitHub Profile
@Jacob-Gray
Jacob-Gray / PuleExampleTheme.css
Created December 16, 2016 17:08
Super simple theme
body,
html {
margin: 0;
background: #f5f5f5;
}
body > p {
text-align: center;
}
.application-heading {
background: #3f51b5;
Tada, We are displaying text on the page! Whoot!
@Jacob-Gray
Jacob-Gray / SOAnswerCollapse.js
Last active June 24, 2016 03:56
Collapse a Stack Overflow answer if it is too long, allowing easier access to the comment, and action sections
// ==UserScript==
// @name SO Answer Collapse
// @namespace jacob-gray.github
// @version 0.1
// @description Collapse a SO answer if it is too long
// @author Jacob the Gray
// @match http://stackoverflow.com/questions/*
// @include /^https?:\/\/\w*.?(stackoverflow|stackexchange|serverfault|superuser|askubuntu|stackapps)\.com\/(questions|posts|review|tools)\/(?!tagged\/|new\/).*/
// @grant none
// ==/UserScript==