Skip to content

Instantly share code, notes, and snippets.

View ktnjared's full-sized avatar

Jared ktnjared

View GitHub Profile
@ktnjared
ktnjared / remove-asahi.sh
Last active July 22, 2025 16:17
Remove Asahi Linux paritions
#!/bin/bash
# License: MIT
# Asahi Linux Partition Deletion Script for macOS
# Warning: This script will delete partitions. Ensure you have backups!
# Constants
readonly BANNER="=========================== REMOVE ASAHI LINUX =============================="
readonly FILLER="++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
readonly DVLINE="______________________________________________________________________________"
readonly TARGET_DISK="disk0"
@ktnjared
ktnjared / computer_names.md
Last active June 2, 2024 07:00
Computer Names

Computer Names

This list contains the names, if any, of all computers - desktops and laptops - that I've owned (be it family or personal). It excludes mobile devices, tablets, mobile devices, VPSes, etc.

Current Machines

Active

Since 2018 or so, the current naming scheme is: - modern machines are generally Disney Princesses - retro machines are Sailor Moon characters, specifically the Sailor Scouts

@ktnjared
ktnjared / browser keywords.md
Last active May 29, 2024 06:33
Browser Keywords

Browser Keywords

About

HOWTO

Firefox

Keywords are added to bookmarks. Open the Bookmark Manager. When adding or editing a bookmark, the bottom/fourth field is Keyword.

@ktnjared
ktnjared / boxstarter.ps1
Last active September 6, 2019 23:05
Windows 10 Setup Script for Myyah
# Myyah Setup Script
#############################################################################
# Rename the Computer (requires a reboot to take effect)
$computername = "Myyah" # Notebook
if ($env:computername -ne $computername) {
Rename-Computer -NewName $computername
}