My whole setup is now versioned in a public dotfiles repository. You can either follow this guide and install everything manually, however i do recommend that you fork the repo and tweak with your own preferences.
This file contains 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
#!/bin/sh | |
export PATH=/usr/local/bin:$PATH | |
ROOT=`git rev-parse --show-toplevel` | |
if [ ! -d "$ROOT/vendor" ]; then | |
echo "Run composer install to run checkstyles" | |
exit 1 | |
fi |
This is a simple PHP profiler based on syslog
and ticks.
Killer feature is that it doesn't need to be included inside statements but only prepend your scripts.
This file contains 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
gaa='git add --all' | |
gfo='git fetch origin' | |
gb='git branch' | |
gcb='git checkout -b' | |
gbnm='git branch --no-merged' | |
glgga='git log --graph --decorate --all' | |
gss='git status -s' | |
gup='git pull --rebase' | |
gupv='git pull --rebase -v' | |
gwch='git whatchanged -p --abbrev-commit --pretty=medium' |
This file contains 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
#!/bin/sh | |
PROJECT=`php -r "echo dirname(dirname(dirname(realpath('$0'))));"` | |
STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \\\\.php` | |
# Determine if a file list is passed | |
if [ "$#" -eq 1 ] | |
then | |
oIFS=$IFS | |
IFS=' |
This file contains 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
{ | |
"Ansi 6 Color" : { | |
"Green Component" : 0.72156862745098038, | |
"Blue Component" : 0.71764705882352942, | |
"Red Component" : 0.75686274509803919 | |
}, | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { |
This file contains 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
chromedriver | |
docker-toolbox | |
filezilla | |
firefox | |
java8 | |
kap | |
sourcetree | |
upterm | |
virtualbox | |
viscosity |
This file contains 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
ant | |
getantibody/tap/antibody | |
apache-spark | |
bat | |
bower | |
cscope | |
curl | |
diff-so-fancy | |
wagoodman/dive/dive | |
dnsmasq |
This file contains 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
#!/bin/bash | |
cd ~/Sites | |
composer create-project shopware/composer-project --no-interaction --stability=dev shopware | |
cd shopware | |
MYSQL_ENV_MYSQL_HOST='mysql' | |
# Setup variables to populate the .env file | |
cp .env.example .env | |
sed -i -e 's*DB_DATABASE=composer*DB_DATABASE=shopware*g' .env | |
sed -i -e 's*DB_USERNAME=root*DB_USERNAME=homestead*g' .env |
NewerOlder