Skip to content

Instantly share code, notes, and snippets.

View raku-cat's full-sized avatar
🐕

Raku raku-cat

🐕
View GitHub Profile

Final results: Archipelago apworlds with confirmed real-hardware support

Out of the ~667 games on the Playable Worlds tab, I narrowed to 200 titles that originated on a console/handheld (excluding anything with a genuine native PC port — GTA, Bayonetta, Persona 5 Royal, etc. — since those wouldn't need a hardware path). All 200 were checked against their setup guide/GitHub docs for explicit real-hardware support language (flashcarts, homebrew, CFW, modded consoles) versus emulator-only (BizHawk, Dolphin, PCSX2, Cemu, DuckStation).

23 titles confirmed to support real hardware:

SNES — via SD2SNES / FXPak Pro (SNI):

  • ActRaiser — setup
  • Donkey Kong Country — setup
  • Donkey Kong Country 2: Diddy's Kong Quest — setup
==> Making package: drop-oss-app 0.4.0-1 (Tue 31 Mar 2026 04:45:58 PM CDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Updating drop-app git repo...
==> Validating source files with sha256sums...
drop-app ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Creating working copy of drop-app git repo...
[Unit]
Description=Neko
PartOf=neko.pod
[Container]
Pod=neko-host.pod
Image=ghcr.io/m1k1o/neko/nvidia-firefox:latest
ShmSize=2g
#AddDevice=nvidia.com/gpu=all
EnvironmentFile=/etc/containers/systemd/neko-app.env
- client_id: 'netbirdclientid'
client_name: 'NetBird'
audience: ['netbird']
client_secret: '$pbkdf2-sha512$abcd123456'
public: 'false'
authorization_policy: 'two_factor'
consent_mode: 'implicit'
require_pkce: false
pkce_challenge_method: ''
redirect_uris:
server {
server_name netbird.apps.my.site;
listen 80;
listen [::]:80;
location / {
return 301 https://$server_name$request_uri;
}
NETBIRD_MGMT_API_ENDPOINT=https://netbird.apps.my.site
NETBIRD_MGMT_GRPC_API=https://netbird.apps.my.site
AUTH_AUDIENCE=netbird
AUTH_CLIENT_ID=netbirdclientid
AUTH_CLIENT_SECRET=secret
AUTH_AUTHORITY=https://auth.raku.party
USE_AUTH0=false
AUTH_SUPPORTED_SCOPES=openid email profile offline_access
AUTH_REDIRECT_URI=/peers
AUTH_SILENT_REDIRECT_URI=/add-peers
[Unit]
Description=NetBird dashboard
[Container]
Image=docker.io/netbirdio/dashboard:latest
PublishPort=8080:80
EnvironmentFile=/opt/netbird/dashboard.env
[Unit]
Description=Coturn TURN/STUN server
PartOf=neko-host.pod
[Container]
Pod=neko-host.pod
Network=host
Image=ghcr.io/coturn/coturn:latest
Exec=-n --realm=localhost --fingerprint --listening-ip=0.0.0.0 --external-ip=192.168.1.10 --listening-port=3478 --min-port=49160 --max-port=49200 --log-file=stdout --user=neko:neko --lt-cred-mech
DKMS (dkms-3.3.0) make.log for bcachefs/1.34.0 for kernel 6.18.2-lqx1-2-lqx (x86_64)
Sat Jan 3 07:31:18 PM CST 2026
Building module(s)
# command: make -j24 KERNELRELEASE=6.18.2-lqx1-2-lqx -C /usr/lib/modules/6.18.2-lqx1-2-lqx/build M=/var/lib/dkms/bcachefs/1.34.0/build
make: Entering directory '/usr/lib/modules/6.18.2-lqx1-2-lqx/build'
make[1]: Entering directory '/var/lib/dkms/bcachefs/1.34.0/build'
CC [M] src/fs/bcachefs/alloc/accounting.o
CC [M] src/fs/bcachefs/alloc/background.o
CC [M] src/fs/bcachefs/alloc/backpointers.o
@raku-cat
raku-cat / ztnet-dns.py
Last active August 3, 2025 05:28
Python script to generate a DNS zone file for hickory-dns using the ztnet api. Mostly machine generated with AI.
#!/usr/bin/env python3
# ztnet-dns: Generate and update a Hickory DNS zone file from ZTNet API
import os
import sys
import re
import argparse
import json
import requests
from datetime import datetime