Skip to content

Instantly share code, notes, and snippets.

View claylevering's full-sized avatar
🏠
Working from home

Clay Levering claylevering

🏠
Working from home
View GitHub Profile
@claylevering
claylevering / README.md
Last active August 17, 2020 20:44
Covid rationale from FL

Corona in Florida

Notes

  1. C-19 incubation period is 2-14 days with highest contagion somewhere in the 5-8 day range after contact 1
  2. To date, it seems ~.86 > RØ < 1.29 (FL data) 2
  3. Memorial Day was May 25th meaning inflection point starts ~May 30 / 31.
  4. The rest of the numbers here are from worldometers

"Death Lag"

@claylevering
claylevering / keybase.md
Created June 15, 2016 00:40
Keybase Claylevering

Keybase proof

I hereby claim:

  • I am claylevering on github.
  • I am claylevering (https://keybase.io/claylevering) on keybase.
  • I have a public key ASDTcYMAnmKfHPB8pSzPPakSY-Sy9R_Sm9pZNEkluJuUAwo

To claim this, I am signing this object:

@claylevering
claylevering / publiclink.html
Last active August 29, 2015 14:23
Quick email link
@claylevering
claylevering / gist:1832671
Created February 15, 2012 02:32
Canned e-mails through Sparrow using Alfred App
# applescript by @claylevering - more info here: http://claylevering.com/?p=16
# download .alfredextension here - http://cl.ly/2h393j3s2Z3x03423U04
on alfred_script(q)
set q to q as text
if (q is equal to "") then
log "no parameter"
set alfredInput to "Other"
set q to "Other"
else
@claylevering
claylevering / bitly.sh
Created February 15, 2012 02:20
Bit.ly Alfred App Extension
# modified API url to align with changes to bit.ly requirements - @claylevering
# find the .alfredextension here: http://cl.ly/EEUK
declare -r API='https://api-ssl.bitly.com/v3/shorten'
declare -r LOGIN='yourlogin'
declare -r API_KEY='yourapi'
# add http scheme to URL if none is provided
longURL=$(printf "{query}" | sed -E -e 's|^.|http://&|' -e 's|^http://([a-zA-Z\-\.\+]+://)|\1|')