Install Vue CLI
npm install -g @vue/cli
Create project
| find . -maxdepth 1 -iname "*.png" -exec convert \{} -verbose -resize 154x100\> \{} \; |
| #!/bin/bash | |
| # Just some settings | |
| bold=`tput bold` | |
| green=`tput setaf 2` | |
| normal=`tput sgr0` | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )" | |
| function msg() { | |
| echo -e "${bold}${green}$1${normal}" >&2 |
| #!/bin/bash | |
| # Install Ubuntu from mini.iso then run following | |
| sudo apt-get install software-properties-common -y | |
| sudo add-apt-repository ppa:leaeasy/dde | |
| sudo apt-get update | |
| sudo apt-get install dde dde-file-manager -y | |
| # to verify: |
| # Following would safe-delete local branches that are already merged to remote repository except branches matching regex | |
| # In this case branches with names containing PROT-2100 or master will stay intact. | |
| git branch -d `git branch --merged |grep -v -E "(PROT-2100)|(master)"` |
| /.idea | |
| *~ | |
| .DS_Store | |
| node_modules | |
| *.egg-info | |
| *.pyc | |
| *.pyo |
| #!/bin/bash | |
| # Install virtualenvwrapper and packages needed to run DjangoCMS | |
| sudo apt-get install -y build-essential python-pip python-dev libjpeg8-dev zlib1g-dev libtiff4-dev libfreetype6-dev | |
| sudo pip install --upgrade virtualenv | |
| sudo pip install virtualenvwrapper | |
| mkdir ~/.virtualenvs | |
| export WORKON_HOME=~/.virtualenvs |
| #!/bin/sh | |
| # Just some settings | |
| bold=`tput bold` | |
| green=`tput setaf 2` | |
| normal=`tput sgr0` | |
| # Install prerequisites | |
| echo "${bold}Install prerequisites${normal}" | |
| sudo apt-get install -y build-essential curl |