Those patches are to convert GameBoy ROM to .pocket
ROM. This allows you to play games from the SD Card on your Analogue Pocket.
Feature like RTC and Link cable seems to be unsupported by the Analogue Pocket in GB Studio mode.
#!/bin/sh | |
# This is a script that allows you to easily launch Steam apps via Proton | |
# without going through Steam. | |
# It also allows you to specify specific libraries, for those who utilize | |
# multiple Steam library folders. | |
# Finally, it also makes use of curly braces for variable expansion, | |
# which is best-practice: https://stackoverflow.com/a/8748880 | |
# | |
# To use this script: | |
# 1. Save it somewhere (e.g. ~/Desktop/LaunchMyGame.sh) |
import struct | |
import time | |
import hid | |
import sys | |
import argparse | |
# | |
# Constants | |
# |
#!/bin/bash | |
# Setup should be fairly standard for wine | |
# | |
# Install wine version > 5.4 | |
# Install winetricks | |
# > sudo dnf -y install win winetricks | |
# | |
# For the moment I have assumed the default WINEPREFIX | |
# > winetricks dotnet35sp1 win7 |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"net/http" | |
"time" | |
"github.com/hashicorp/vault/api" | |
"github.com/hashicorp/vault/builtin/credential/aws" |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
On my RetroPie machine I wanted a hardware volume knob — the games I play use a handful of emulators, and there's no unified software interface for controlling the volume. The speakers I got for my cabinet are great, but don't have their own hardware volume knob. So with a bunch of googling and trial and error, I figured out what I need to pull this off: a rotary encoder and a daemon that listens for the signals it sends.
A rotary encoder is like the standard potentiometer (i.e., analog volume knob) we all know, except (a) you can keep turning it in either direction for as long as you want, and thus (b) it talks to the RPi differently than a potentiometer would.
I picked up this one from Adafruit, but there are plenty others available. This rotary encoder also lets you push the knob in and treats that like a button press, so I figured that would be useful for toggling mute on and off.
This used to be a draft of my blog post "Finding the SqueezeBox Radio Default SSH Password".