Trims (Take off)
Mixture (Rich), Master (On), Magnetos (Both)
Primer (In / Locked)
Flaps (Check / Set)
Fuel (Right / Most)
Instruments (Set - Alt, DG, Radios)
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
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 |
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
- 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 |
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
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): |
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
void clear(){ | |
for (int i=2; i <= 9; i++){ | |
digitalWrite(i, LOW); | |
} | |
} | |
void one(){ | |
digitalWrite(9, HIGH); | |
digitalWrite(2, HIGH); | |
} |
To-do:
Purchase- Melbourne Delivery
- Complete Condition Report: $300
- RA-Aus Registration: $80
- Hangerage: ??
- Insurance: ??
- Handheld Radio: $400
- Circuits
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
"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 |
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
# 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 |