- C-19 incubation period is 2-14 days with highest contagion somewhere in the 5-8 day range after contact 1
- To date, it seems ~.86 > RØ < 1.29 (FL data) 2
- Memorial Day was May 25th meaning inflection point starts ~May 30 / 31.
- The rest of the numbers here are from worldometers
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:
This file contains hidden or 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
[email protected]?subject=Jennifer%20Borrego%20with%20Whimsy%20%26%20Wood&body=I%20cast%20my%20vote%20for%20Jennifer%20Borrego%20with%20Whimsy%20%26%20Wood! | |
copy and paste that above if you're using an "Insert link" function I'm an email client. if you want to post on your website: | |
<a href="mailto:[email protected]?subject=Jennifer%20Borrego%20with%20Whimsy%20%26%20Wood&body=I%20cast%20my%20vote%20for%20Jennifer%20Borrego%20with%20Whimsy%20%26%20Wood!">Click here to vote for Whimsy & Wood</a> |
This file contains hidden or 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
# 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 |
This file contains hidden or 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
# 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|') | |