- Format the SD Card with Fat32 (not extfat which is the default)
- If the card is bigger than 32gb this could be problematic, also, it might not be 🤷
- Copy ROMs to the card
- Set the Fat32
noarch
flag - Set the Fat32
nohidden
flag
Here's a collection of links that I found useful while learning to develop for the NES:
nesam
and not ca65
.
ca65
compatible# Use this to set the screensaver on a firetv | |
# you can't set it as executable (unless you're rooted) | |
# so you need to run it as: | |
# $ source ./sleep_settings.sh | |
echo "Enter screensaver timeout in minutes (Default 5)" | |
read SCREENSAVER_ON_IN_MINUTES | |
echo "Enter screen off timeout in minutes (Default 20)" | |
read SLEEP_IN_MINUTES | |
SCREENSAVER_IN_MILLISECONDS=`expr "$SCREENSAVER_ON_IN_MINUTES" \* 60000` |
Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)
import yaml | |
import sys | |
VAR_DELIM = "," | |
KEY_DELIM = ":" | |
def int_try_parse(value): | |
try: | |
return int(value) |