Skip to content

Instantly share code, notes, and snippets.

View scottzach1's full-sized avatar
🐧

Zac Scott scottzach1

🐧
View GitHub Profile
@scottzach1
scottzach1 / nz-covid-announcements-12-09-2021.csv
Last active September 12, 2021 11:51
nz-covid-announcements-12-09-2021.csv
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 7.
date,message,messageShort
21 March 2020,"The Government introduces the 4-tiered Alert Level system to help combat COVID-19. The Prime Minister announces that New Zealand is at Alert Level 2.","NZL L2"
23 March 2020,"At 1:30pm the Prime Minister announces New Zealand has moved to Alert Level 3, effective immediately. In 48 hours, New Zealand will move to Alert Level 4.","NZL L3"
25 March 2020,"At 11:59pm, New Zealand moves to Alert Level 4, and the entire nation goes into self-isolation. A State of National Emergency is declared at 12:21pm.","NZL L4"
29 March 2020,"New Zealand reports its first COVID-19-related death.","Covid death #1"
31 March 2020,"The State of National Emergency is extended at 9:27am. Further extensions are made at: 9:25am on 2 April 2020\n, 12:21pm on 8 April 2020\n, 12:21pm on 15 April 2020\n, 12:21pm on 22 April 2020\n, 12:21pm on 29 April 2020\n, 12:21pm on 5 May 2020.","State Emergency Extended"
20 April 2020,"The Prime Minister announces New Zealand will remain at Alert Level 4 for an
@scottzach1
scottzach1 / d3v7-mouse-over-line.ts
Last active September 11, 2021 23:20 — forked from martinnormark/d3-mouse-over-line.js
Adding a vertical line to a D3v7 chart, that follows the mouse pointer.
const vertical = d3.select(".chart")
.append("div")
.attr("class", "remove")
.style("position", "absolute")
.style("z-index", "19")
.style("width", "1px")
.style("height", "100%")
.style("top", "0px")
.style("left", "0px")
.style("background", "#000000");
@scottzach1
scottzach1 / config.rasi
Last active July 28, 2020 00:46 — forked from EgZvor/config.rasi
Dracula theme for rofi (put in ~/.config/rasi)
// Dracula colors Credit: https://gist.github.com/EgZvor
* {
background: rgba ( 40, 42, 54, 100 % );
current-line: rgba ( 68, 71, 90, 100 % );
selection: rgba ( 68, 71, 90, 100 % );
foreground: rgba ( 248, 248, 242, 100 % );
comment: rgba ( 98, 114, 164, 100 % );
cyan: rgba ( 139, 233, 253, 100 % );
green: rgba ( 80, 250, 123, 100 % );
orange: rgba ( 255, 184, 108, 100 % );