Keybase proof
I hereby claim:
- I am nathanmsmith on github.
- I am nathunsmitty (https://keybase.io/nathunsmitty) on keybase.
- I have a public key ASCa-250tFPEd153lJePLUMjq6Gi7kwhcAgJrjcxvCMUUgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# Useful for more up-to-date software | |
PATH=/usr/local/cs/bin:$PATH | |
# Stolen from Mathias Bynens: https://github.com/mathiasbynens/dotfiles | |
prompt_git() { | |
local s=''; | |
local branchName=''; |
[ | |
[ | |
{ | |
"f": 1, | |
"f2": 2, | |
"w": 0.675, | |
"h": 0.85 | |
}, | |
"\nEsc", | |
{ |
I hereby claim:
To claim this, I am signing this object:
import numpy as np | |
np.set_printoptions(formatter={'float': lambda x: "{0:0.3f}".format(x)}) | |
cam = np.matrix() # put cam matrix here | |
wcs = np.matrix([[3, 0, -2, 1], | |
[2, 0, -1, 5], | |
[1, -3, 2, -1], |
let events = []; | |
for (const calendar of calendars) { | |
console.log(calendar); | |
ical.fromURL(calendar, {}, (err, data) => { | |
for (var k in data) { | |
if (data.hasOwnProperty(k)) { | |
const event = data[k]; | |
const eventStart = moment(event.start); | |
const now = moment(); | |
const later = moment().add(1, 'days'); |