To-do:
Purchase- Melbourne Delivery
- Complete Condition Report: $300
- RA-Aus Registration: $80
- Hangerage: ??
- Insurance: ??
- Handheld Radio: $400
- Circuits
# Aliases | |
alias l='ls -lah' | |
## Android | |
export PATH=~/Library/Android/sdk/tools:$PATH | |
export PATH=~/Library/Android/sdk/platform-tools:$PATH | |
# NVM | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm |
"use strict"; | |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', | |
// default font size in pixels for all tabs |
To-do:
void clear(){ | |
for (int i=2; i <= 9; i++){ | |
digitalWrite(i, LOW); | |
} | |
} | |
void one(){ | |
digitalWrite(9, HIGH); | |
digitalWrite(2, HIGH); | |
} |
Add the following route to the `App\Http\routes.php`: | |
``` | |
Route::post('artisan-scheduler', function(){ | |
Artisan::call('schedule:run'); | |
}); | |
``` | |
And add the following to a `cron.yaml` to the root of the project directory (where composer.json, phpunit.xml etc sit): |
- Initialize bare repo in remote host | |
- Post-recieve hook to checkout files into dir | |
- Add line for composer install too | |
#!/bin/sh | |
echo "Checking out:" | |
GIT_WORK_TREE=/var/www/dirname git checkout -f |
set nocompatible " be iMproved, required | |
filetype off " required | |
" Set path for Vundles and start! | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
" Vundle Plugins! | |
Plugin 'bling/vim-airline' " Awesome info bar |