This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |