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
#!/bin/bash | |
# | |
# ############################################################# | |
# these work in batocera plus, will need to be edited further for regular batocera | |
# | |
# https://wiki.batocera.org/systems:windows | |
# https://wiki.batocera.org/systems:mugen | |
# | |
# edit the autorun.cmd might need more editing to work | |
# after you can compress them into a squashfs |
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
""" | |
uv project toml | |
--------------- | |
[project] | |
name = "mysql_csv_import" | |
version = "0.1.0" | |
description = "Add your description here" | |
readme = "README.md" | |
requires-python = ">=3.12" | |
dependencies = [ |
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
#!/bin/bash | |
# the purpose of this script is to make all the PSN PSX games I purchased on my PS3, PSP, PS Vita | |
# playable in DuckStation and Batocera | |
# | |
# you will need to build the following projects: | |
# | |
# https://github.com/AKuHAK/psxtract | |
# https://github.com/bryanperris/PSXPackager | |
# | |
# I downloaded the zip files and build them that way, you might need to fix the path for your setup |
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
#!/bin/bash | |
# borrowed from https://github.com/RamiKrispin/awesome-ds-setting | |
# a great guide from Remi Krispin, thank you! | |
# he has a telegram chanel that has dev and data tutorials posted if you want to learn more | |
# his setup is MacOS based, I'm using this on Ubuntu on an OrangePi 5 plus | |
# | |
# homebrew dosen't work on Linux ARM64 | |
# using apt | |
sudo apt-get install zsh jq |