I hereby claim:
- I am ughitsaaron on github.
- I am ughitsaaron (https://keybase.io/ughitsaaron) on keybase.
- I have a public key whose fingerprint is D584 F352 465C FD57 7EBF 9EAB C6A9 4ACB C8E9 754A
To claim this, I am signing this object:
| execute pathogen#infect() | |
| syntax on | |
| " colorscheme solarized | |
| colorscheme badwolf | |
| " manage multiple buffers | |
| set hidden |
| (function($) { | |
| /* Autohider by Aaron Petcoff https://gist.github.com/aptkf/1a5ffdad876a80610b63 */ | |
| $.fn.autohider = function(args) { | |
| defaults = { | |
| toggle: "visible", | |
| buffer:70, | |
| tolerance: 8 | |
| }; |
| # #!/bin/bash | |
| . ~/.bashrc | |
| PATH=$PATH:/usr/local/bin:~/bin:~/.nvm | |
| ulimit -n 2046 | |
| # # elasticsearch | |
| export ELASTIC_HOST=http://192.168.99.100:9200 | |
| # # export REDIS_HOST=tcp://192.168.99.100:6379 | |
| # # grep opts |
| #!/bin/bash | |
| # Aliases & functions | |
| alias cp='cp -iv' | |
| alias mv='mv -iv' | |
| alias mkdir='mkdir -pv' | |
| alias ls='ls -GAp' | |
| cd() { builtin cd "$@"; ls; } | |
| alias ~='cd ~/' | |
| mcd() { mkdir -pv "$1" && cd "$1"; } |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * A function to generate array ranges (zero-indexed) | |
| * @param {number} from | |
| * @param {number} to | |
| */ | |
| export function RangeArray(from, to) { | |
| var r = []; | |
| if (typeof from !== 'number' && typeof to !== 'number') { | |
| throw new Error('RangeArray expects a number'); |
| env: | |
| node: true | |
| browser: true | |
| mocha: true | |
| parserOptions: | |
| sourceType: module | |
| ecmaVersion: 6 | |
| extends: eslint:recommended | |
| rules: | |
| brace-style: error |
| "followed by Darius Kazemi tinysubversions | |
| { Item: { username: { S: 'tinysubversions' } } }" | |
| this person already subscribes! | |
| "followed by Darius Kazemi tinysubversions | |
| { Item: { username: { S: 'tinysubversions' } } }" | |
| Express listening on 8081... | |
| setting up stg/prd server | |
| error in file write! null | |
| error in file write! null | |
| error in file write! null |
| /** | |
| * Just a collection of common list functions written recursively. | |
| * https://jsbin.com/zupafusuco/1/edit?js,console | |
| */ | |
| /** | |
| * callback function for iterating over a list | |
| * | |
| * @callback listCallback | |
| * @param {any} value |
| defmodule Mod do | |
| def sum(0), do: 0 | |
| def sum(n), do: n + sum(n - 1) | |
| def gcd(x, 0), do: x | |
| def gcd(x, y), do: gcd(y, rem(x, y)) | |
| end |