Skip to content

Instantly share code, notes, and snippets.

View fprieur's full-sized avatar

Fred Prieur fprieur

  • Ubisoft
  • Montreal
View GitHub Profile
mkdir -p ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/CoffeeScript
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/CoffeeScript
curl -O https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Syntaxes/CoffeeScript.tmLanguage
curl -O https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Preferences/CoffeeScript.tmPreferences
@fprieur
fprieur / gist:6009243
Last active December 19, 2015 19:49 — forked from liamdon/gist:2467603
Packages pour sublime text pour CoffeeScript Jade et Stylus

Step 1: Clone the bundles into your Sublime Text packages directory

cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/jashkenas/coffee-script-tmbundle CoffeeScript
git clone https://github.com/miksago/jade-tmbundle.git Jade
git clone https://github.com/LearnBoost/stylus.git Stylus

Step 2: Restart Sublime Text 2

@fprieur
fprieur / gist:3425957
Created August 22, 2012 14:07
Change the File Location of Screenshots on Mac OS X
defaults write com.apple.screencapture location /path/to/screenshots
ex : defaults write com.apple.screencapture location ~/Pictures/Screenshots
To apply these changes, again in Terminal, type:
killall SystemUIServer
@fprieur
fprieur / rootAmazon
Created August 21, 2012 15:13
set root right on amazon
sudo su
@fprieur
fprieur / importMySqlCommandLine
Created August 21, 2012 14:00
Import database from file on command line
mysql -u username -p database_name < textfilewithsqlstatments.sql