This file contains hidden or 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
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=" |
This file contains hidden or 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
# 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" |
This file contains hidden or 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
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 |
This file contains hidden or 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
-- 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, |