Skip to content

Instantly share code, notes, and snippets.

View jaredculp's full-sized avatar
🌱
Building @GrowTherapy

Jared Culp jaredculp

🌱
Building @GrowTherapy
View GitHub Profile
@jaredculp
jaredculp / dmb-analysis.py
Last active May 21, 2020 00:16
Web scraper to grap all setlists from http://dmbalmanac.com and output to CSV file. Invoked via `python dmb-scraper.py START_YEAR END_YEAR OUTPUT_FILENAME`. To get song counts invoke `python dmb-analysis.py DATA_FILENAME`.
import csv
import sys
from collections import Counter
with open (sys.argv[1], 'rb') as csvfile:
reader = csv.reader(csvfile, delimiter='\t')
reader.next()
songs = [row[4] for row in reader]
@jaredculp
jaredculp / README.md
Last active August 6, 2023 16:56
Void Linux

Void Linux Macbook Air 2013

Flash installer:

$ dd if=void-live-x86_64-musl-20181111.iso of=/dev/X bs=1m

login as root:voidlinux

Base Install: