Skip to content

Instantly share code, notes, and snippets.

View vmitchell85's full-sized avatar

Vince Mitchell vmitchell85

View GitHub Profile
@vmitchell85
vmitchell85 / StreamRoutes.php
Created June 23, 2018 20:44
Larastream 2.0 sample routes
<?php
Route::get('/streams', 'StreamController@index'); // List of all streams
Route::post('/streams', 'StreamController@store'); // Creates a new stream - If a stream starts now, it could do the logic for that as well
Route::get('/streams/{stream}', 'StreamController@show'); // Shows an existing stream
Route::get('/streams/{stream}/edit', 'StreamController@edit'); // Shows the page to edit a stream
Route::patch('/streams/{stream}', 'StreamController@update'); // Route where edits are saved for a stream
@vmitchell85
vmitchell85 / deploy.sh
Last active May 15, 2018 16:51 — forked from sahibalejandro/deploy.sh
Deploy script for Laravel projects.
# Shutdown the laravel app
php artisan down
# Pull down changes
git pull
# Install new composer packages
composer install --no-dev --prefer-dist
# Cache boost configuration and routes
<?php
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array

Keybase proof

I hereby claim:

  • I am vmitchell85 on github.
  • I am vmitchell85 (https://keybase.io/vmitchell85) on keybase.
  • I have a public key ASCpH2TzP0-9sTr4x784uJcOBwJ86TUag1ySF--oAqFRwAo

To claim this, I am signing this object:

@vmitchell85
vmitchell85 / JumpDesktopServer.applescript
Last active May 18, 2017 15:08
Open a server by name via AppleScript
tell application "System Events" to tell process "Jump Desktop"
activate
click menu item "Computers" of menu 1 of menu bar item "Window" of menu bar 1
click menu item "Find" of menu 1 of menu bar item "Edit" of menu bar 1
keystroke "SERVER"
keystroke tab using {shift down}
keystroke return
end tell
@vmitchell85
vmitchell85 / .bashrc
Created January 6, 2017 13:40
Full .bashrc
hs(){
cd "/c/Users/vlm/Homestead"
vagrant up
vagrant ssh
}
hsp(){
cd "/c/Users/vlm/Homestead"
vagrant provision
}
@vmitchell85
vmitchell85 / .bashrc
Created January 6, 2017 13:39
Windows Git Bash functions
hsp(){
cd "/c/Users/vlm/Homestead"
vagrant provision
}
hsadd(){
curfolder=${PWD##*/}
echo "192.168.10.10 ${curfolder}.dev" >> "/c/Windows/System32/drivers/etc/hosts"
sed -i "/sites:/a \ \ \ \ - map: ${curfolder}.dev\r\n\ \ \ \ \ \ to: /home/vagrant/code/${curfolder}/public" "/c/Users/vlm/.homestead/Homestead.yaml"
sed -i "/databases:/a \ \ \ \ - ${curfolder}" "/c/Users/vlm/.homestead/Homestead.yaml"
CA_Provinces_French = {
"AB" : "Alberta",
"BC" : "Colombie-Britannique",
"PE" : "l'&icirc;le du Prince-&Eacute;douard",
"MB" : "Manitoba",
"NT" : "(territoires du) Nord-Ouest",
"NB" : "Nouveau-Brunswick",
"NS" : "Nouvelle-Écosse",
"NU" : "Nunavut",
"ON" : "Ontario",
US_States_French = {
"AL" : "Alabama",
"AK" : "Alaska",
"AZ" : "Arizona",
"AR" : "Arkansas",
"CA" : "Californie",
"NC" : "Caroline du Nord",
"SC" : "Caroline du Sud",
"CO" : "Colorado",
"CT" : "Connecticut",