Skip to content

Instantly share code, notes, and snippets.

View denolfe's full-sized avatar

Elliot DeNolf denolfe

View GitHub Profile
@denolfe
denolfe / trello-improved-styling.css
Created July 14, 2015 18:31
Better Trello Styling
html, body, input, select, textarea, button {
font-family: open sans, calibri, lucida sans console;
}
#header {
background: #676767;
}
.board-canvas {
background: #3f3f3f url(http://www.twitch.tv/images/xarth/bg_noise.png) top center;
@denolfe
denolfe / Remove-alt-tab-animation-from-elementary-os-freya.md
Last active September 19, 2017 13:21
Remove Alt-Tab animation from Elementary OS Freya

Remove Alt-Tab animation from Elementary OS Freya

Install custom build of Gala

sudo apt-get install bzr 

bzr branch lp:~gala-dev/gala/no-depth-alt-tab

sudo apt-get build-dep gala 
@denolfe
denolfe / jqueryConsole.js
Created May 1, 2015 21:35
Snippet to include jQuery in Chrome Dev Tools
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();
@denolfe
denolfe / ExpandTFS.js
Created November 26, 2014 21:39
Expand TFS Editing Area - Create as chrome bookmark
javascript: (function(){var d=document,e=d.getElementById('witc_142').setAttribute("style","height:1500px");})();
@denolfe
denolfe / AutoFormat.ahk
Last active December 17, 2015 09:59
Reformats AHK code
/*
Original Author: nebbish
Thread: http://www.autohotkey.com/board/topic/55766-script-auto-formatter-very-basic-beginner-script/
TODO:
- support single line indent after else statement
- support comments on lines with "{"
Copy a piece of code to the Clipboard. The hotkey will reformat the code and paste it into any editor you have selected (sends Ctrl-v to the editor).
This script basically just determines proper line indentation by counting the number of open and closed braces encountered ("{"). However, it does a few other things, such as properly ignoring comments; there's also a little support for one-line indentation for if and loop statements, without the braces.