Skip to content

Instantly share code, notes, and snippets.

@gotbletu
gotbletu / udpfs_server.py help man page ps2 nhddl neutrino udpfs server playstation 2.txt
Last active June 11, 2026 18:58
udpfs_server.py help man page ps2 nhddl neutrino udpfs server playstation 2
usage: udpfs_server.py [-h] [--block-device BLOCK_DEVICE] [--root-dir ROOT_DIR] [--port PORT] [--bind IP] [--sector-size SECTOR_SIZE]
[--read-only] [--verbose] [--enable-compression] [--compression-cache-size COMPRESSION_CACHE_SIZE]
UDPFS Server - Unified file and block device server over UDPRDMA
options:
-h, --help show this help message and exit
--block-device, -b BLOCK_DEVICE
Block device or disk image to serve as handle 0
--root-dir, -d ROOT_DIR
@gotbletu
gotbletu / eXoAppleIIGS 1.0 game list.txt
Created May 17, 2025 08:38
eXoAppleIIGS 1.0 game list
3D-Triss (1993).zip
4th and Inches (1988).zip
A-maze-ing (1988).zip
Aaargh! (1988).zip
Adventure Alive (1993).zip
Adventures of Sinbad, The (1988).zip
Aesop's Fables (1988).zip
Airball (1989).zip
Alien Mind (1988).zip
All About America (1988).zip
@gotbletu
gotbletu / eXoDOS 6.04 game list.txt
Last active June 27, 2026 22:24
eXoDOS 6.04 game list
!Bingo Granny! (2002).zip
$100,000 Pyramid (1988).zip
'Nam 1965-1975 (1991).zip
+K (1996).zip
007 - Licence to Kill (1989).zip
1 Ton (1996).zip
1000 Miglia (1992).zip
1000 Miler (1987).zip
10Rogue (1984).zip
10th Frame (1987).zip
@gotbletu
gotbletu / eXoScummVM 2.9.0 game list.txt
Last active March 24, 2026 13:53
eXoScummVM 2.9.0 game list
1.5 Ritter (Windows).zip
11 Mysterious Adventures (C64).zip
11th Hour, The (Windows).zip
13th Disciple, The (DOS).zip
3 Geeks (Windows).zip
3 Skulls of the Toltecs (CD DOS).zip
404 - Life Not Found (IF).zip
5 Days A Stranger (Windows).zip
6 Days A Sacrifice (Windows).zip
69,105 Keys (IF).zip
@gotbletu
gotbletu / eXoWin3x 2.0 game list.txt
Created March 19, 2024 11:30
eXoWin3x 2.0 game list
'Jongg CD!, The (1997).zip
101 Dalmatians - Escape From DeVil Manor (1997).zip
1942 - The Pacific Air War Gold (1994).zip
20,000 Leagues Under The Sea (1995).zip
3-D Dinosaur Adventure Anniversary Edition (1997).zip
3-D Ultra Minigolf (1997).zip
3-D Ultra Pinball (1995).zip
3-D Ultra Pinball - Creep Night (1996).zip
3-D Ultra Pinball - The Lost Continent (1997).zip
3D Atlas '98 (1997).zip
@gotbletu
gotbletu / urlportal
Created February 11, 2024 23:48
urlportal with menu
#!/usr/bin/env bash
### _ _ _ _
### __ _ ___ | |_| |__ | | ___| |_ _ _
### / _` |/ _ \| __| '_ \| |/ _ \ __| | | |
###| (_| | (_) | |_| |_) | | __/ |_| |_| |
### \__, |\___/ \__|_.__/|_|\___|\__|\__,_|
### |___/
### https://www.youtube.com/user/gotbletu
### https://twitter.com/gotbletu
### https://github.com/gotbletu
@gotbletu
gotbletu / 9xbuddy-filler
Created October 15, 2022 06:54
autofill current url with prefix string to rip videos using just 9xbuddy.com
#!/usr/bin/env sh
# author: gotbletu (@gmail|twitter|youtube|github|lbry|odysee)
# https://www.youtube.com/user/gotbletu
helpmsg() {
printf "%s\n" "desc: autofill current url with prefix string to rip videos using just 9xbuddy.com"
printf "%s\n" "depend: xdotool coreutils"
}
if [ "$1" = -h ] || [ "$1" = --help ]; then
helpmsg
@gotbletu
gotbletu / comic2cbz
Created August 30, 2021 19:46
comic2cbz - convert images to webp at 50% quality and create cbz (comicbook archive)"
#!/usr/bin/env bash
# AUTHOR: gotbletu (@gmail|twitter|youtube|github|lbry)
helpmsg() {
printf "%s\n" "desc: convert images to webp at 50% quality and create cbz (comicbook archive)"
printf "%s\n" "depend: imagemagick zip coreutils libwebp"
printf "\n"
printf "%s\n" "usage: ${0##*/} <image>"
printf "\n"
printf "%s\n" " $ ${0##*/} *.png"
@gotbletu
gotbletu / fdisk DOS partition table
Last active June 27, 2019 06:24
fdisk DOS partition table
echo -e "d\n\nd\n\nd\n\nd\n\nd\n\nd\n\nd\n\nd\n\no\nn\np\n1\n\n\nt\nb\nw" | sudo fdisk /dev/"$DEVICE_NAME"
# delete partiton x8 using d\n\n
# d delete a partition
# default, partition
# o create a new empty DOS partition table
# n add a new partition
# p primary
# 1 partition number 1
# default, first sector
# default, last sector
@gotbletu
gotbletu / fzf-cheat.sh
Created May 10, 2019 02:14
fzf-cheat -- fuzzy finder quickly copy code snippets from cheat to clipboard
#!/usr/bin/env bash
### _ _ _ _
### __ _ ___ | |_| |__ | | ___| |_ _ _
### / _` |/ _ \| __| '_ \| |/ _ \ __| | | |
###| (_| | (_) | |_| |_) | | __/ |_| |_| |
### \__, |\___/ \__|_.__/|_|\___|\__|\__,_|
### |___/
### https://www.youtube.com/user/gotbletu
### https://twitter.com/gotbletu
### https://github.com/gotbletu