Skip to content

Instantly share code, notes, and snippets.

@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 May 28, 2025 18:30
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 May 28, 2025 18:31
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
@gotbletu
gotbletu / apkversion
Last active February 3, 2019 07:24
apkversion, display android system requirements (minimum version to target version) of the apk file
alias aapt="/opt/android-sdk/build-tools/28.0.3/aapt"
apkversion() {
if [ $# -lt 1 ]; then
echo -e "display android system requirements (minimum version to target version) of the apk file"
echo -e "\nUsage: $0 <filename>"
echo -e "\nExample:\n$0 file.apk"
echo -e "$0 file1.apk file2.apk file3.apk"
echo -e "$0 *.apk"
echo -e "\nrequirement:\nhttps://aur.archlinux.org/packages/android-sdk-build-tools/"
echo -e "https://developer.android.com/studio/releases/build-tools"