Skip to content

Instantly share code, notes, and snippets.

View lerouse's full-sized avatar

Christian Innerbichler lerouse

View GitHub Profile
alias dev="cd ~/Development"
alias hs="cd ~/Homestead"
alias artisan="php artisan"
alias gs="git status"
alias ga="git add"
alias gc="git commit"
alias gp="git push"
alias phpunit="php ./vendor/bin/phpunit"
alias phpunit-vendor="php vendor/phpunit/phpunit/phpunit"
alias pts="php vendor/phpunit/phpunit/phpunit --testsuite="
@lerouse
lerouse / Git aliases
Last active October 11, 2018 10:34 — forked from igorbabko/Laravel & Git aliases
Add Git Pull then Push
# Git aliases
alias gs="git status"
alias ga="git add"
alias gaa="git add ."
alias gc="git commit"
alias gp="git push"
alias gpl="git pull"
alias gptp="git pull && git push"
alias gcm="git commit -m"
@lerouse
lerouse / SolarizedDark
Last active April 6, 2018 10:40
SolarizedDark mintty theme GitBash for windows
ForegroundColour=131, 148, 150
BackgroundColour= 0, 43, 54
CursorColour = 181,137, 0
#CursorColour = 38, 139, 210 blue not bad
#CursorColour= 211,54,130 magenta not bad
#CursorColour= 203,75,22 bold-red not bad, All others don't work
Black= 7, 54, 66
BoldBlack= 0, 43, 54
Red= 220, 50, 47
@lerouse
lerouse / countries.sql
Created December 21, 2015 22:16
SQL Dump of all Countries, Dial Codes, Currencies and Currency Name
-- Table structure for table `countries`
CREATE TABLE IF NOT EXISTS `countries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`iso` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
`iso3` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`dial` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`currency` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL,
`currency_name` varchar(60) COLLATE utf8_unicode_ci DEFAULT NULL,