Skip to content

Instantly share code, notes, and snippets.

View raymadrona's full-sized avatar

Ray Anthony Madrona raymadrona

View GitHub Profile
@raymadrona
raymadrona / bashrc-config
Created July 7, 2015 01:13
bashrc-config
alias start='cd /d/Codes/homestead; homestead up'
alias hu='homestead up'
alias hh='homestead halt'
alias hp='homestead provision'
alias ..='cd ..'
alias pa='php artisan'
alias gs='git status'
alias gc='git checkout'
alias gp='git pull'
alias gpo='git pull origin'
{
"phpcs_additional_args": {
"--standard": "PSR2",
"-n": ""
},
// PHP_CodeSniffer settings
"phpcs_command_on_save": false,
"phpcs_executable_path": "/usr/bin/phpcs",
// PHP Mess Detector settings
@raymadrona
raymadrona / custom-monakai-sublime-theme
Created July 2, 2015 07:24
Custom Monakai Sublime Theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Monokai</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
@raymadrona
raymadrona / apache-vhost-config
Created July 2, 2015 07:22
Apache Virtual Host Configuration
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/laravel/public"
ServerName simss.dev
<Directory "C:/xampp/htdocs/laravel/public">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
</VirtualHost>