Skip to content

Instantly share code, notes, and snippets.

View dayt0n's full-sized avatar
🎧
vibing

dayt0n dayt0n

🎧
vibing
View GitHub Profile
@dayt0n
dayt0n / getColeman.py
Last active January 10, 2019 21:32
grab Dr. Rick Coleman's lecture slides for the day and combine into a PDF
#
# getColeman.py - grab Dr. Rick Coleman's lecture slides for the day and combine into a PDF
#
# made by Dayton Hasty
#
# (you may need to pip install fpdf)
#
import os
import requests
@dayt0n
dayt0n / qcow2-image-downloader.py
Created September 20, 2025 17:03
Downloads latest qcow2 images of Debian and Rocky. Use in automated deployment environments, expand to other OSes as desired.
# qcow2-image-downloader.py - downloads qcow2 images from Debian and Rocky repositories.
#
# meant to be run periodically by a systemd unit/timer.
#
# use for automated deployment environments where having the latest OS patches at first boot is a necessity.
#
# license: BSD-3-Clause (https://opensource.org/license/bsd-3-clause)
#
# copyright (C) 2025 Dayton Hasty (dayt0n)