Skip to content

Instantly share code, notes, and snippets.

View TiffanyNeat's full-sized avatar
☯️
You Will Never Know Why

Tiffany Parfait TiffanyNeat

☯️
You Will Never Know Why
View GitHub Profile
@bemxio
bemxio / download_creator_levels.sh
Created April 28, 2024 07:09
A script for downloading all of a creator's levels from the LittleBigPlanet archive (https://archive.org/details/dry23db). Requires `sqlite3`, `jq` and `sed`, as well as the `dry.db` database file inside the directory where the script is located. ONLY DOWNLOADS THE ROOT LEVEL, DOES NOT GET THE USER-MADE RESOURCES.
#!/bin/bash
IFS=$'\n'
author="$@"
result=$(sqlite3 -json dry.db "SELECT name, LOWER(HEX(rootLevel)) AS checksum FROM slot WHERE npHandle = '$author'")
if [ -z "$result" ]; then
echo "No levels found made by \"$author\"!" && exit 1
fi
@Sharrnah
Sharrnah / Install Docker - Pacman.sh
Last active March 20, 2024 09:41
Pacman Installation Scripts for SteamDeck (requires a set user password using `passwd` first)
#!/bin/bash
sudo steamos-readonly disable
sudo pacman-key --init
sudo pacman-key --populate archlinux
#sudo pacman-key --refresh-keys
# install docker package
echo -e "\rInstalling Docker..."
""" Game fix for FFXIV
"""
#pylint: disable=C0103
from protonfixes import util
import os
from subprocess import call
import sys
def main():