openpgp4fpr:A0E5035657E55E6BEEAAD809D427E91F7B76FD0D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Christine Vick", | |
"label": "Customer Support Manager", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "", | |
"url": "", | |
"summary": "I am a generalist that thrives in a startup environment where I can learn new\nskills and deliver solutions for both customers and peers.\n\nDepending on the needs of an organization I happily help fill gaps and keep\nthings moving including customer support requests, documentation, security training, QA, and planning new product features.\n\nWhile I am always trying to pursue improving leadership and technical\nskill sets most of my experience revolves around listening to customers,\nunderstanding their pain points, and learning whatever is required to help\nthem be successful.\n\nFor my next role I want to continue to develop engineering skill sets, so I can\nsolve more problems myself, more opportunity to participate in leader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"keyboard":"ergodox_infinity","keymap":"ergodox_infinity_layout_ergodox_mine","layout":"LAYOUT_ergodox","layers":[["KC_EQL","KC_1","KC_2","KC_3","KC_4","KC_5","KC_ESC","KC_BSLS","KC_Q","KC_W","KC_E","KC_R","KC_T","KC_NO","KC_TAB","KC_A","KC_S","KC_D","KC_F","KC_G","KC_LSFT","KC_Z","KC_X","KC_C","KC_V","KC_B","MO(1)","KC_LGUI","KC_GRV","KC_BSLS","KC_LEFT","KC_RGHT","KC_LCTL","KC_LALT","KC_HOME","KC_BSPC","KC_DEL","KC_END","KC_NO","KC_6","KC_7","KC_8","KC_9","KC_0","KC_MINS","KC_LBRC","KC_Y","KC_U","KC_I","KC_O","KC_P","KC_RBRC","KC_H","KC_J","KC_K","KC_L","KC_SCLN","KC_QUOT","MO(1)","KC_N","KC_M","KC_COMM","KC_DOT","KC_SLSH","KC_RSFT","KC_LEFT","KC_DOWN","KC_UP","KC_RGHT","KC_RGUI","KC_RALT","KC_RCTL","KC_PGUP","KC_PGDN","KC_ENT","KC_SPC"],["KC_NO","KC_F1","KC_F2","KC_F3","KC_F4","KC_F5","KC_NO","KC_NO","KC_NO","KC_MS_U","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_MS_L","KC_MS_D","KC_MS_R","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_TRNS","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO","KC_NO" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: | |
# $ export TOKEN=abcdefg | |
# $ viewgsvuploads.sh $orgID 2018-10-1 2018-10-31 | |
token="$TOKEN" | |
organization="$1" | |
created_gte="${2}T00:00:00%2B00:00" | |
created_lt="${3}T00:00:00%2B00:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ath_api="https://api.coindesk.com/v1/bpi/historical/close.json" | |
ath_args="?start=2013-01-01&end=$(date '+%Y-%m-%d')" | |
ath=$(\ | |
curl -s ${ath_api}${ath_args} | \ | |
jq '.bpi| to_entries[] | .value' | \ | |
sort -nr | \ | |
head -n 1 | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/node | |
//Array.from(Array(101).keys()).forEach(function(i) { | |
for (var i = 0; i < 101; i++) { | |
if ((i % 3) == 0) { | |
console.log("fizz"); | |
} | |
if ((i % 5) == 0) { | |
console.log("buzz"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>PATH</key> | |
<string>/Users/cvick/.local/bin:/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/bin:/bin:/usr/sbin:/sbin</string> | |
</dict> | |
<key>Label</key> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <SPI.h> | |
#include <Adafruit_PN532.h> | |
#define PN532_IRQ (2) | |
#define PN532_RESET (3) // Not connected by default on the NFC Shield | |
Adafruit_PN532 nfc(PN532_IRQ, PN532_RESET); | |
void setup(void) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Steps to install: | |
# 1. Install imagemagick (For example: apt-get install imagemagick) | |
# 2. Save this script to a folder in your $PATH (For example: $HOME/bin/ss) | |
# 3. Update variables below as appropriate | |
SSH_USERNAME="stinethebean" | |
SSH_HOSTNAME="admin.hashbang.sh" | |
PUBLIC_URL="stinethebean.hashbang.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
i=99 s=s | |
while [ $i -gt 0 ]; do | |
p="bottle" | |
p2="of beer" | |
p3="on the wall" | |
echo $i $p$s $p2 $p3 | |
echo $i $p$s $p2 |
NewerOlder