Skip to content

Instantly share code, notes, and snippets.

View scottzach1's full-sized avatar
💭
🐧

Zac Scott scottzach1

💭
🐧
View GitHub Profile
@scottzach1
scottzach1 / concurrent_runners.sh
Last active May 9, 2024 23:59
Bash script to configure multiple Self-hosted GitHub Runners
#!/bin/bash
# _ _ _ _
# ___ ___ ___ | |_| |_ ______ _ ___| |__ / |
# / __|/ __/ _ \| __| __|_ / _` |/ __| '_ \| |
# \__ \ (_| (_) | |_| |_ / / (_| | (__| | | | |
# |___/\___\___/ \__|\__/___\__,_|\___|_| |_|_|
#
# Zac Scott (github.com/scottzach1)
#
# A quick and hacky script to configure n self-hosted GitHub runners.
@scottzach1
scottzach1 / decorator_optional_arg.py
Created July 5, 2022 05:50
Python Decorator Optional Argument
#!/bin/python3
import functools
from typing import Callable
def wrapped(fn: Callable[..., str] = None, /, chars: str = '"') -> Callable[..., str] or str:
"""
A decorator to wrap a method response in quotes
@scottzach1
scottzach1 / nz_covid_tracer_usage_2021-09-12.csv
Created September 12, 2021 00:26
NZ Covid-19 Tracer Usage 12 09 2021
Date/Time From Date/Time To App Registrations QR Codes Generated NZBN Registered Businesses Scans Manual Entries Active Devices Bluetooth Active (24hr)
19/05/2020 12:00 20/05/2020 12:00 92595 1407 0
20/05/2020 12:00 21/05/2020 12:00 143405 5800 11411 11411 0
21/05/2020 12:00 22/05/2020 12:00 57000 4892 23561 23561 0
22/05/2020 12:00 23/05/2020 12:00 31000 1528 30275 30275 0
23/05/2020 12:00 24/05/2020 12:00 30000 31444 0
24/05/2020 12:00 25/05/2020 12:00 26000 29426 0
25/05/2020 12:00 26/05/2020 12:00 25000 3330 31629 0
26/05/2020 12:00 27/05/2020 12:00 17000 1510 36794 0
27/05/2020 12:00 28/05/2020 12:00 14000 1200 39216 0
@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 % );