I hereby claim:
- I am lsjroberts on github.
- I am lsjroberts (https://keybase.io/lsjroberts) on keybase.
- I have a public key whose fingerprint is EF95 5587 0E88 0044 FC4C 0690 2B11 CC51 EA87 8ECA
To claim this, I am signing this object:
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 14, | |
| // font family with optional fallbacks | |
| fontFamily: '"Meslo LG M DZ", "Fira Sans Code", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |
| const loadRoute = (next) => | |
| (module) => | |
| next(null, module.default); | |
| const loadRoutes = (next) => | |
| (modules) => | |
| next(null, modules.map(module => module.default)); | |
| const loadRouteComponent = (importer) => | |
| (location, next) => |
I hereby claim:
To claim this, I am signing this object:
| javascript:( | |
| function() { | |
| var e=document.getElementById('pull_request_body'); | |
| if (e) { | |
| e.value += '#### What does this do?\n\n'; | |
| e.value += '#### How should this be manually tested?\n\n'; | |
| e.value += '#### Related PRs / Issues / Resources?\n\n'; | |
| e.value += '#### Anything else to add? (Screenshots, background context, etc)\n\n'; | |
| } | |
| } |
| /vendor |
| /** | |
| * Install: | |
| * $ npm install gulp gulp-minify-css gulp-autoprefixer gulp-ruby-sass gulp-coffee gulp-uglify gulp-concat gulp-rimraf gulp-notify | |
| */ | |
| var gulp = require('gulp'); | |
| // styles | |
| var minifycss = require('gulp-minify-css'); | |
| var autoprefixer = require('gulp-autoprefixer'); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| .diamonds { | |
| padding: 100px; | |
| } | |
| .diamond { | |
| float: left; |
| <?php | |
| class Foo { | |
| public $bar; | |
| public function __construct() | |
| { | |
| $this->bar = new Bar; | |
| } |
| clear | |
| dir=$(pwd) | |
| for i in `find $dir -type d -maxdepth 1`; do | |
| if [ $i != $dir ] | |
| then | |
| echo "\n\033[33mChecking $i\033[0m" | |
| cd $i | |
| git branch -v --no-abbrev | grep '*' | |
| cd ../ | |
| fi |
| issue= head=HEAD base=master | |
| while getopts i:h:b: opt; do | |
| case $opt in | |
| i) | |
| issue=$OPTARG | |
| ;; | |
| h) | |
| head=$OPTARG | |
| ;; |