Skip to content

Instantly share code, notes, and snippets.

View aboyett's full-sized avatar

Andy Boyett aboyett

View GitHub Profile
@aboyett
aboyett / keybase.md
Created September 22, 2017 04:48
keybase.md

Keybase proof

I hereby claim:

  • I am aboyett on github.
  • I am aboyett (https://keybase.io/aboyett) on keybase.
  • I have a public key ASB2ZQNpJQ3361utfFuqyTcxurBO5xCKe6hikZRkOk3L9wo

To claim this, I am signing this object:

Starting firmware.
before red 0 19668 ls:19668 r: 19668 b: 20668 Sun Oct 30 20:49:56 2016
after red 0 35790 ls:19668 r: 19668 b: 20668 Sun Oct 30 20:49:57 2016
before black 0 20668 ls:20668 r: 21668 b: 20668 Sun Oct 30 20:49:57 2016
after black 0 55460 ls:20668 r: 21668 b: 20668 Sun Oct 30 20:49:58 2016
before red 1 21668 ls:21668 r: 21668 b: 22668 Sun Oct 30 20:49:58 2016
after red 1 56460 ls:21668 r: 21668 b: 22668 Sun Oct 30 20:49:59 2016
before black 1 22668 ls:22668 r: 23668 b: 22668 Sun Oct 30 20:49:59 2016
after black 1 57460 ls:22668 r: 23668 b: 22668 Sun Oct 30 20:50:00 2016
before red 2 23668 ls:23668 r: 23668 b: 24668 Sun Oct 30 20:50:00 2016
@aboyett
aboyett / type-test.yml
Last active December 9, 2015 07:41
ansible variable type preservation test
---
- name: type preservation test
hosts: localhost
sudo: no
gather_facts: no
vars:
num_var: 5
num_ref: "{{ num_var }}"
num_cast_ref: "{{ num_var | int }}"
@aboyett
aboyett / git-squash
Created July 18, 2014 21:18
Automated squash of all commits since commit X
#!/bin/sh
base=$1
export EDITOR="sed -i '2,$ s/pick/squash/;/Change-Id: / {d}'"
git rebase -i $base