Created
February 22, 2016 01:54
-
-
Save rkennesson/8c6b5c4020b0946f6bb7 to your computer and use it in GitHub Desktop.
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
brew install youtube-dl | |
brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-frei0r --with-libass --with-libvo-aacenc --with-libvorbis --with-libvpx --with-opencore-amr --with-openjpeg --with-opus --with-rtmpdump --with-schroedinger --with-speex --with-theora --with-tools | |
#or... | |
#--with-faac | |
#but replaced with fdk-aac for licensing reasons |
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
Paste without formatting | |
Shift+Option+CMD+v | |
Volume Control | |
Shift+Option+Volume Key | |
Volume Control w/ Test sound | |
Shift+Volume Key | |
Sound Controls | |
Option+Volume Key | |
Cut File | |
CMD+C file | |
Option+CMD+v new location | |
Capture Screen | |
Shift+cmd+3 | |
Capture Region | |
shift+Cmd+4 | |
Control Program With CMD+Tab switcher | |
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
#Mongo Install | |
#https://jira.mongodb.org/browse/SERVER-18329 | |
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main" | tee /etc/apt/sources.list.d/mongodb-org-3.0.list | |
apt-get update | |
apt-get install -y mongodb-org-server | |
apt-get install -y mongodb-org | |
#Node.js install | |
#https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager | |
apt-get update | |
apt-get install -y curl | |
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash - | |
apt-get install -y nodejs build-essential | |
#Install Express, Angular | |
#http://learn.mean.io/#mean-stack-installation | |
#npm install -g gulp | |
#npm install -g bower | |
#npm install bootstrap | |
#npm install -g mean-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment