Skip to content

Instantly share code, notes, and snippets.

View Midnoclose's full-sized avatar

Midnoclose Midnoclose

View GitHub Profile
@Midnoclose
Midnoclose / extract.c
Last active June 20, 2022 20:46
Extract music from .vvv file
/*
*
* VVVVVV Music Extractor
* by Midnoclose
*
* BSD Zero Clause License
*
* Copyright (c) 2021 Midnoclose
*
* Permission to use, copy, modify, and/or distribute this software for any
@Midnoclose
Midnoclose / zeal-run.sh
Last active April 18, 2024 19:54
ZealOS QEMU VM script
#!/bin/sh
# Attach the following line to the arguments to mount the install disc
# -cdrom ZealOS-boot.iso
[ -f Zeal.qcow2 ] || qemu-img create -f qcow2 Zeal.qcow2 20G
qemu-system-x86_64 \
-machine q35,kernel_irqchip=off \
-boot c \
-hda Zeal.qcow2 \
-nic user,model=virtio-net-pci \
-m 2G \
#!/usr/bin/env bash
# journal.sh
# ==========
#
# One daily text file to rule them all.
#
# Copyright: 2022 Tyler Cipriani <[email protected]
# License: GPLv3
set -euo pipefail