ansible: Ansible development package for Oh My Fish
apt: Short and friendly command wrapper for APT
battery: OS X and Linux compatible battery utilities
brew: Oh My Fish plugin to integrate Homebrew paths into shell.
| /* | |
| Instructions for MacOS: | |
| - Install the fonts 'Operator Mono' & 'Fira Code' | |
| - Install theme 'Dark Candy' | |
| - Add the following config to the VS Code settings.json: | |
| { | |
| "editor.renderWhitespace": "all", | |
| "editor.fontSize": 14, |
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the active virtualenv | |
| # * the branch/status of the current git repository | |
| # * the return value of the previous command | |
| # * the fact you just came from Windows and are used to having newlines in | |
| # your prompts. |
| #!/bin/bash | |
| ## cf from http://programster.blogspot.com/2014/05/ubuntu-14-desktop-install-fira-sans-and.html | |
| cd /tmp | |
| # install unzip just in case the user doesn't already have it. | |
| if [[ `uname` = Linux ]]; then | |
| sudo apt-get install unzip -y | |
| wget "http://www.carrois.com/downloads/fira_4_1/FiraFonts4106.zip" |
| #Download Elementary OS from here: | |
| #http://sourceforge.net/projects/elementaryos/files/stable/ | |
| #First you update your system | |
| sudo apt-get update && sudo apt-get dist-upgrade | |
| #Install Google Chrome | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |
| <key name="Colors" modified="2015-12-10 22:46:43" build="151210"> | |
| <value name="Count" type="dword" data="00000001"/> | |
| <key name="Palette1" modified="2015-12-10 22:46:43" build="151210"> | |
| <value name="Name" type="string" data="Material Theme"/> | |
| <value name="ColorTable00" type="dword" data="004d4335"/> | |
| <value name="ColorTable01" type="dword" data="006b60eb"/> | |
| <value name="ColorTable02" type="dword" data="008de8c3"/> | |
| <value name="ColorTable03" type="dword" data="0095ebf7"/> | |
| <value name="ColorTable04" type="dword" data="00c4cb80"/> | |
| <value name="ColorTable05" type="dword" data="009024ff"/> |
| DEST_DIR=~/.fonts/hack_typeface | |
| mkdir -p $DEST_DIR | |
| # Check if you have unzip, if not install | |
| which unzip >/dev/null || (echo "INFO: I need to install unzip"; sudo apt-get install unzip) | |
| # Download font | |
| wget --directory-prefix $DEST_DIR https://github.com/chrissimpkins/Hack/releases/download/v2.010/Hack-v2_010-otf.zip | |
| # Decompress | |
| unzip $DEST_DIR/Hack-*.zip -d $DEST_DIR | |
| # Clean zip file |
| // Update: Hey Folks - I've got a full Gulpfile with everything else over at https://github.com/wesbos/React-For-Beginners-Starter-Files | |
| var source = require('vinyl-source-stream'); | |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var browserify = require('browserify'); | |
| var reactify = require('reactify'); | |
| var babelify = require('babelify'); | |
| var watchify = require('watchify'); | |
| var notify = require('gulp-notify'); |
| import React, { PropTypes } from 'react'; | |
| import { TransitionMotion, spring } from 'react-motion'; | |
| /** | |
| * One example of using react-motion (0.3.0) within react-router (v1.0.0-rc3). | |
| * | |
| * Usage is simple, and really only requires two things–both of which are | |
| * injected into your app via react-router–pathname and children: | |
| * | |
| * <RouteTransition pathname={this.props.pathname}> |
| # Path to the Oh-my-zsh install | |
| export ZSH=$HOME/.oh-my-zsh | |
| # Add all the required portions to the PATH | |
| export PATH="/usr/local/opt/ruby/bin:$HOME/bin:$PATH"; | |
| # Source NVM | |
| source ~/.nvm/nvm.sh | |
| # ZSH Configurations |