I hereby claim:
- I am peyton on github.
- I am peyton (https://keybase.io/peyton) on keybase.
- I have a public key ASCGSnA_OYz82JytuwZibp2qZwN1hU3E8T-YuT_2aojgGwo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
fix_mosh_server() { | |
local fw='/usr/libexec/ApplicationFirewall/socketfilterfw' | |
local mosh_sym="$(which mosh-server)" | |
local mosh_abs="$(readlink -f $mosh_sym)" | |
sudo "$fw" --setglobalstate off | |
sudo "$fw" --add "$mosh_sym" | |
sudo "$fw" --unblockapp "$mosh_sym" |
I hereby claim:
To claim this, I am signing this object:
/** | |
* CGContextBlocks.h | |
* | |
* Block-based convenience methods for organizing Core Graphics-heavy code. | |
* | |
* See https://gist.github.com/gists/1988678 for the latest version. | |
* | |
* Idea stolen from http://www.natestedman.com/post/improving-cgcontext-with-blocks/ | |
*/ |
// | |
// ARC Helper | |
// | |
// Version 1.2 | |
// | |
// Created by Nick Lockwood on 05/01/2012. | |
// Copyright 2012 Charcoal Design | |
// | |
// Distributed under the permissive zlib license | |
// Get the latest version from here: |
/* | |
Serial Communications | |
Reports and receives servo positions via serial | |
*/ | |
#include <Servo.h> | |
#include <AFMotor.h> | |
#include <aJSON.h> |
" Vim configuration - Peyton Randolph | |
" turn off filetype to get around bug, load pathogen plugins, restart filetype | |
filetype off | |
call pathogen#runtime_append_all_bundles() | |
filetype plugin indent on | |
" indenting | |
set smartindent | |
set autoindent |