Skip to content

Instantly share code, notes, and snippets.

View stephenhowells's full-sized avatar
🏜️
In the desert

Stephen Howells stephenhowells

🏜️
In the desert
View GitHub Profile
@stephenhowells
stephenhowells / gist:4083924
Created November 16, 2012 04:00
show colors in Git
git config --global color.ui true
@stephenhowells
stephenhowells / gist:4021772
Created November 6, 2012 01:10
Apache conf snippet to hide .git directories and .gitignore files.
# do not allow .git version control files to be issued
<Directorymatch "^/.*/\.git+/">
Order deny,allow
Deny from all
</Directorymatch>
<Files ~ "^\.git">
Order allow,deny
Deny from all
</Files>
@stephenhowells
stephenhowells / remap.xml
Created October 4, 2012 15:03
Keyboard Remap XML
<?xml version="1.0"?>
<root>
<item>
<name>Swap OPTION_L and COMMAND_L</name>
<identifier>private.swap_OPTION_L_and_COMMAND_L</identifier>
<autogen>--KeyToKey-- KeyCode::OPTION_L, KeyCode::COMMAND_L</autogen>
<autogen>--KeyToKey-- KeyCode::COMMAND_L, KeyCode::OPTION_L</autogen>
</item>
<item>
@stephenhowells
stephenhowells / grid.scss
Created September 27, 2012 21:22
nifty grid work in sass
/*style several classes by prefix*/
[class*='col-'] {
float: left;
padding-right: $pad;
.grid &:last-of-type {
padding-right: 0;
}
}
.col-2-3 {
@stephenhowells
stephenhowells / Preferences.json
Created September 12, 2012 00:04
Current Sublime Text 2 Settings
{
"auto_complete": true,
"auto_indent": true,
"auto_match_enabled": true,
"bold_folder_labels": true,
"caret_style": "smooth",
"color_scheme": "Packages/User/Made of Code.tmTheme",
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"detect_indentation": true,
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal
@stephenhowells
stephenhowells / Python.sublime-settings
Created September 7, 2012 15:11
Python Specific Sublime Text Settings
{
"rulers":
[
72,
79
],
"tab_size": 4,
"translate_tabs_to_spaces": true,
"wrap_width": 79,
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night-Eighties.tmTheme"
@stephenhowells
stephenhowells / Fetch.sublime-settings
Created September 6, 2012 03:49
Sublime Text Fetch Config
{
"files":
{
"jquery": "http://code.jquery.com/jquery.min.js",
"normalize": "https://raw.github.com/necolas/normalize.css/master/normalize.css",
"reset": "http://meyerweb.com/eric/tools/css/reset/reset.css",
"sass-css3-mixins": "https://raw.github.com/matthieua/Sass-Css3-Mixins/master/css3-mixins.scss"
},
"packages":
{
@stephenhowells
stephenhowells / My Mixins
Created August 27, 2012 05:18 — forked from chriscoyier/My Mixins
_functions.scss
//
// MIXINS
//
// SHADOWS
@mixin box-shadow ($string) {
-webkit-box-shadow: $string;
-moz-box-shadow: $string;
box-shadow: $string;
}
@stephenhowells
stephenhowells / gist:3432381
Created August 23, 2012 04:28 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt