Skip to content

Instantly share code, notes, and snippets.

@hawkup
hawkup / Install Maven on Ubuntu 14.04.md
Created September 27, 2015 11:42
Install Maven on Ubuntu 14.04
  1. Download maven from http://maven.apache.org/download.cgi
wget http://www.us.apache.org/dist/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz
  1. unzip file
tar -xvf apache-maven-3.3.3-bin.tar.gz
  1. move file to /usr/local/share
# Directory
/apm                      # builder N1 use this instead of npm
/build
/docs                     # N1 docs
/dot-nylas
/examples
/internal_packages
/keymaps
/menus
@hawkup
hawkup / Vim.md
Last active November 12, 2015 20:28
Vim
@hawkup
hawkup / Install Laravel on Ubuntu 14.04.md
Created October 18, 2015 14:06
Install Laravel on Ubuntu 14.04
  1. Install composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
  1. download Laravel installer
composer global require "laravel/installer=~1.1"
  1. export path environment
@hawkup
hawkup / Develop_Laravel.md
Last active December 5, 2015 20:09
Develop_Laravel

Install Homestead

install VirtualBox
install Vagrant
vagrant box add laravel/homestead
git clone https://github.com/laravel/homestead.git Homestead
cd Homestead
bash init.sh
@hawkup
hawkup / Install Continuum and Jupython(Ipython) on Unix.md
Created October 28, 2015 18:05
Install Continuum and Jupython(Ipython) on Unix

Install Continuum

# download file from https://www.continuum.io/downloads#_unix
bash Anaconda-2.3.0-Linux-x86_64.sh
source ~/.bashrc

Install jupython

conda install jupyter (or install only ipython)
@hawkup
hawkup / Install nginx on Ubuntu 14.04.md
Last active November 9, 2015 10:48
Install nginx on Ubuntu 14.04
sudo apt-get update
sudo apt-get install nginx
  • Default serve directory
/usr/share/nginx/html
@hawkup
hawkup / Meteor Development.md
Created November 10, 2015 20:00
Meteor Development
  • Installation
curl https://install.meteor.com/ | sh

# if you found this error
curl: (77) error setting certificate verify locations:
  CAfile: /etc/pki/tls/certs/ca-bundle.crt
  CApath: none
# fix follow this
http://stackoverflow.com/questions/30154208/trouble-installing-meteor-on-ubuntu-14-04