http://olivierlacan.com/posts/launch-sublime-text-3-from-the-command-line/
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
Usage:
subl .
| // app/redux/action-creators.es6.js | |
| import {SET_ROUTE} from 'app/redux/action-types'; | |
| export const setRoute = (route) => { | |
| return { | |
| type: SET_ROUTE, | |
| route | |
| }; | |
| }; |
| 'use strict'; | |
| var m = require('mithril'); | |
| var t = require('client/utils/translate'); | |
| var vagueTime = require('vague-time'); | |
| var l16n = require('client/utils/l16n'); | |
| function assignValue(obj, objAttr) { | |
| return function (event) { |
http://olivierlacan.com/posts/launch-sublime-text-3-from-the-command-line/
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
Usage:
subl .
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |