(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| <composer.lock jq '.packages[] | [.name, .version]' | less |
| " old cVimrc | |
| " let blacklists = ["https://mail.google.com/* gi gt j k l o r x y #"] | |
| " blacklists prefixed by '@' act as a whitelist | |
| let blacklists = ["https://mail.google.com/*", "*://mail.google.com/*", "@https://mail.google.com/mail/*"] | |
| let mapleader = "," |
You're not gonna become a master in your spare time, but you can get decently good at photography in five years of dedicated but non-full-time practice. It's taken me about twice that to get decent, but I fucked around a lot along the way.
You don't need a ton of fancy equipment, but photography does require some gear. I'll limit the gear-buying here to once a year (not counting books).
Developer Tools in browser. Load page under Network Can save load meta data as HAR file (rt click / save as HAR with content)
Make your web pages fast on all devices https://developers.google.com/speed/pagespeed/insights/
| <?php | |
| public function write_record() { | |
| if(request::is_ajax()) $this->template = new View('ajax'); | |
| else die('Invalid request.'); | |
| in_array($_POST['type'], array('Sermons','Aces','Portraits','Dedications')) or die('Invalid form request.'); | |
| // Field Types | |
| // Sermon: series, title, preacher, scripture, reader, date, disk, type | |
| // Aces: series, title, teacher, comment, date, disk |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var notify = require('gulp-notify'); | |
| var sass = require('gulp-ruby-sass'); | |
| var autoprefix = require('gulp-autoprefixer'); | |
| var minifyCSS = require('gulp-minify-css') | |
| var coffee = require('gulp-coffee'); | |
| var exec = require('child_process').exec; | |
| var sys = require('sys'); |
| <?php | |
| require 'vendor/phpunit/phpunit/src/Framework/Assert/Functions.php'; | |
| class ExampleTest exends TestCase | |
| { | |
| /** @test */ | |
| function it_hashes_a_provided_password() | |
| { |