I hereby claim:
- I am kmcnellis on github.
- I am kmcnellis (https://keybase.io/kmcnellis) on keybase.
- I have a public key whose fingerprint is 0E5F E78E BD12 8FEC D6B0 81C7 64A1 18DD 146D 24EC
To claim this, I am signing this object:
| var crypto = require('crypto'); | |
| var fs = require('fs'); | |
| var exec = require('child_process').exec; | |
| var uploadCommand = "firebase auth:import users.json --hash-algo=MD5 --rounds=0"; | |
| var stringToBase64 = function(plaintext){ | |
| return new Buffer(plaintext).toString('base64'); | |
| } | |
| var users = [ |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| #ROC for mac | |
| echo $@ | |
| $@ | |
| while fswatch -r --one-event . | |
| do | |
| $@ | |
| done |
| #Google Chrome on Mac | |
| #osascript -e 'tell application "Google Chrome" to tell the active tab of its first window to reload' | |
| #Safari | |
| osascript -e 'tell application "Safari" to set docUrl to URL of document 1 | |
| tell application "Safari" to set URL of document 1 to docUrl' |
| #!/bin/bash | |
| setup_dir=$(pwd) | |
| repodir="gradingcode" | |
| repodepth="../" | |
| echo $setup_dir | |
| # Setup a basic project (DEVELOP or MASTER) | |
| read -p "Clone develop? (n = master, o = other) (y|n|o) " dev | |
| dev="${dev:-y}" |