Table of contents
Open uOPL and press "Start" to open the menu
# Place in /macros directory of macropad storage | |
# e.g., H:/macros/helldivers2.py | |
# Credits: https://adafruit-playground.com/u/squid_jpg/pages/easy-helldivers-ii-stratagem-macros-for-rp2040-macropad | |
# Strategem List: https://www.stratagemhero.com/stratagems | |
# Macropad Project: https://learn.adafruit.com/macropad-hotkeys/project-code | |
# MACROPAD Hotkeys: Helldiver II | |
import random | |
from adafruit_hid.keycode import Keycode | |
START_INPUT_DELAY = 0.4 |
From Feeling Good: The New Mood Therapy by Dr. David D. Burns
# Install ImageMagick via scoop | |
# scoop install imagemagick | |
# Check if ImageMagick is installed | |
if (-not (Test-Path -Path (Get-Command magick.exe -ErrorAction SilentlyContinue))) { | |
Write-Host "ImageMagick is not installed. Please install it first." | |
exit 1 | |
} | |
# Get a list of PNG files in the current working directory |
import { debounce } from './debounce'; | |
describe('Debounce', () => { | |
it('should test debounce', () => { | |
jest.useFakeTimers(); | |
const oneSecond = 1000; | |
const obj = { | |
foo: 'foo', | |
bar: 'bar', | |
} |
import { groupBy } from './groupby.ts'; | |
describe('Array Utils Test', () => { | |
it('should test groupBy', () => { | |
const data = getGroupByData(); | |
const actual = groupBy(data, 'name'); | |
const expected = getGroupByExpected(); | |
expect(actual).toEqual(expected); | |
}) | |
}) |
This is a guide on how to transfer saves from an original n64 cart to NSO. While this isn't an exhaustive list, this should help get you started. Each save is different and has different instructions on how to transfer it depending on what kind of save it is. Please use the game list table to see how each game should be transferred.
NOTE: You will need a jailbroken switch in order to perform this. I personally use JKSV to transfer my saves back and forth.
Copy and paste the .eep
file to the save directory and rename it to cartridge.sram
.