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
| # enable git unstaged indicators - set to a non-empty value | |
| GIT_PS1_SHOWDIRTYSTATE="." | |
| # enable showing of untracked files - set to a non-empty value | |
| GIT_PS1_SHOWUNTRACKEDFILES="." | |
| # enable stash checking - set to a non-empty value | |
| GIT_PS1_SHOWSTASHSTATE="." | |
| # enable showing of HEAD vs its upstream |
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
| function loadScript(path, fn) { | |
| var el = document.createElement('script'), | |
| loaded = 0, | |
| onreadystatechange = 'onreadystatechange', | |
| readyState = 'readyState'; | |
| el.onload = el.onerror = el[onreadystatechange] = function () { | |
| if (loaded || (el[readyState] && !(/^c|loade/.test(el[readyState])))) return; | |
| el.onload = el.onerror = el[onreadystatechange] = null; | |
| loaded = 1; |
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
| var http = require('http'); | |
| http.createServer(function(req, res){ | |
| res.writeHead(200,{'Content-Type':'text/plain'}); | |
| res.end('Hello world'); | |
| }).listen(8080, '127.0.0.1'); | |
| console.log("Node server running at http://localhost:8080"); |
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
| ln -s /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/sublime |
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
| var images = ["path/to/image", "path/to/image", ... , "path/to/image"], | |
| preloaded = images.length; | |
| _.each(images, function(img) { | |
| var image = $('<img />').attr('src', img); | |
| image.on('load', function(){ | |
| preloaded--; | |
| if (preloaded === 0){ | |
| console.log("All preloaded!"); | |
| } |
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
| CREATE TABLE IF NOT EXISTS `continents` ( | |
| `code` CHAR(2) NOT NULL COMMENT 'Continent code', | |
| `name` VARCHAR(255), | |
| PRIMARY KEY (`code`) | |
| ) ENGINE=InnoDB; | |
| INSERT INTO `continents` VALUES | |
| ('AF', 'Africa'), | |
| ('AS', 'Asia'), | |
| ('EU', 'Europe'), |
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
| @mixin image-2x($image, $width, $height) { | |
| @media (min--moz-device-pixel-ratio: 1.3), | |
| (-o-min-device-pixel-ratio: 2.6/2), | |
| (-webkit-min-device-pixel-ratio: 1.3), | |
| (min-device-pixel-ratio: 1.3), | |
| (min-resolution: 1.3dppx) { | |
| background-image: image-url($image); | |
| background-size: $width $height; | |
| } |
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
| # Exclude files that don't need to be on the server | |
| # Used by rsync when deploying code to the server | |
| .excludes | |
| .git | |
| .gitignore | |
| log/ | |
| tmp/ |
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
| require 'rubygems' | |
| require 'bundler' | |
| Bundler.require | |
| require 'rspec/core/rake_task' | |
| ENV['RACK_ENV'] ||= 'development' | |
| task :default => :help |
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
| // From http://closure-library.googlecode.com/svn-history/r27/trunk/closure/goog/docs/closure_goog_i18n_bidi.js.source.html | |
| // with modifications | |
| bidi_helpers = (function(){ | |
| var module = {} | |
| /** | |
| * Directionality enum. | |
| * @enum {number} | |
| */ |
OlderNewer