I hereby claim:
- I am felixangell on github.
- I am felixangell (https://keybase.io/felixangell) on keybase.
- I have a public key whose fingerprint is C7D4 D692 B6DB 9443 BA60 9F87 001F CE5A AF20 79A7
To claim this, I am signing this object:
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on |
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
let &packpath=&runtimepath | |
source ~/.vimrc |
brew install alacritty | |
# install exa for ls replacement | |
brew install exa | |
# setup exa alias | |
# [email protected]:DarrinTisdale/zsh-aliases-exa.git | |
# fd for finding stuff | |
brew install fd |
font: | |
size: 18.0 | |
key_bindings: | |
- { key: Key3, mods: Alt, chars: "#" } | |
- { key: Left, mods: Alt, chars: "\x1bb" } | |
- { key: Right, mods: Alt, chars: "\x1bf" } | |
- { key: Left, mods: Command, chars: "\x1bOH", mode: AppCursor } # Home | |
- { key: Right, mods: Command, chars: "\x1bOF", mode: AppCursor } |
{"name":"Current","device":1,"model":5,"type":"layout","data":{"layer0":[41,30,31,32,33,34,35,36,37,38,39,45,46,42,43,20,26,8,21,23,28,24,12,18,19,47,48,49,57,4,22,7,9,10,11,13,14,15,51,52,40,225,29,27,6,25,5,17,16,54,55,56,82,224,226,227,44,192,80,81,79],"layer1":[53,58,59,60,61,62,63,64,65,66,67,68,69,0,0,0,82,0,0,0,0,0,82,0,70,74,77,0,0,80,81,79,0,0,0,80,81,79,75,78,0,0,53,0,0,0,0,0,0,0,73,76,0,0,0,0,0,192,0,0,0],"layer2":[0,200,201,202,203,0,0,0,0,241,240,244,243,0,0,0,82,0,0,0,0,0,82,0,70,74,77,0,0,80,81,79,0,0,0,80,81,79,75,78,0,0,0,0,0,0,0,0,0,0,73,76,0,0,0,0,0,192,0,0,0],"taps":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,81,79]},"crc":"4edb512f"} |
I hereby claim:
To claim this, I am signing this object:
module.exports = { | |
'env': { | |
'browser': true, | |
'es6': true | |
}, | |
'extends': 'eslint:recommended', | |
'globals': { | |
'Atomics': 'readonly', | |
'SharedArrayBuffer': 'readonly' | |
}, |
#include "arduino_simulator.h" | |
enum { | |
RED, AMBER, GREEN, | |
NUM_LIGHTS, | |
}; | |
enum { | |
SET_A, | |
SET_B, |
#!/bin/bash | |
echo "Running Felix's setup script!" | |
#Check if run as root | |
if [[ $EUID -ne 0 ]]; then | |
echo "Please re-run the setup script with sudo" | |
exit 1 | |
fi |
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Expected file extension to line count" | |
exit 1 | |
fi | |
echo "There are $(git ls-files | grep ".$1" | xargs cat | wc -l) lines of $1 code." |