Skip to content

Instantly share code, notes, and snippets.

View jrob00's full-sized avatar

Jason Roberts jrob00

  • Simi Valley, CA
View GitHub Profile
@jrob00
jrob00 / Preferences.sublime-settings
Created July 16, 2012 21:25
current sublime 2 settings
{
"auto_indent": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/LAZY.tmTheme",
"drag_text": false,
"find_selected_text": true,
"font_face": "Inconsolata",
"font_size": 13,
"highlight_line": true,
"highlight_modified_tabs": true,
@jrob00
jrob00 / dabblet.css
Created May 11, 2012 16:23 — forked from chriscoyier/dabblet.css
Triangle with Shadow
/*
Triangle with Shadow
*/
.triangle-with-shadow {
width: 100px;
height: 100px;
position: relative;
overflow: hidden;
box-shadow: 0 16px 10px -17px rgba(0,0,0,0.5);
@jrob00
jrob00 / caveatPatchor.js
Created March 1, 2012 23:28 — forked from protocool/caveatPatchor.js
Sample Propane caveatPatchor.js // with current hacks
/*
As of version 1.1.2, Propane will load and execute the contents of
~Library/Application Support/Propane/unsupported/caveatPatchor.js
immediately following the execution of its own enhancer.js file.
You can use this mechanism to add your own customizations to Campfire
in Propane.
Below you'll find two customization examples.
@jrob00
jrob00 / README.md
Created December 9, 2011 18:35 — forked from mbostock/.block
How-To: Update a Pie Chart (Part 2)

Click to change datasets.

Previous: Part 1.

@jrob00
jrob00 / github_post_recieve.php
Created November 29, 2011 17:33 — forked from cowboy/github_post_recieve.php
GitHub PHP webhook to auto-pull on repo push
<?php
// Use in the "Post-Receive URLs" section of your GitHub repo.
if ( $_POST['payload'] ) {
shell_exec( 'cd /srv/www/git-repo/ && git reset --hard HEAD && git pull' );
}
?>hi