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
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 |
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
!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 |
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
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 |
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
'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 |
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 | |
### _ _ _ _ | |
### __ _ ___ | |_| |__ | | ___| |_ _ _ | |
### / _` |/ _ \| __| '_ \| |/ _ \ __| | | | | |
###| (_| | (_) | |_| |_) | | __/ |_| |_| | | |
### \__, |\___/ \__|_.__/|_|\___|\__|\__,_| | |
### |___/ | |
### https://www.youtube.com/user/gotbletu | |
### https://twitter.com/gotbletu | |
### https://github.com/gotbletu |
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 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 |
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 | |
# 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" |
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
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 |
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 | |
### _ _ _ _ | |
### __ _ ___ | |_| |__ | | ___| |_ _ _ | |
### / _` |/ _ \| __| '_ \| |/ _ \ __| | | | | |
###| (_| | (_) | |_| |_) | | __/ |_| |_| | | |
### \__, |\___/ \__|_.__/|_|\___|\__|\__,_| | |
### |___/ | |
### https://www.youtube.com/user/gotbletu | |
### https://twitter.com/gotbletu | |
### https://github.com/gotbletu |
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
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" |
NewerOlder