Skip to content

Instantly share code, notes, and snippets.

View ryukoposting's full-sized avatar

Evan Perry Grove ryukoposting

View GitHub Profile
@ryukoposting
ryukoposting / mupen64plus-bazzite.sh
Last active June 4, 2026 21:32
How to: N64 Emulation on Bazzite using Mupen64Plus
# This guide explains how to run Mupen64Plus on Bazzite, without any
# extra stuff like retroarch or RMG.
#
# You should only follow this guide if you have already tried RetroArch
# and/or RMG. I highly recommend trying RMG first:
#
# https://flathub.org/en/apps/com.github.Rosalie241.RMG
#
# If RMG isn't working for you, this guide will walk you through setting
# up a bare Mupen64Plus installation straight from the source.
@ryukoposting
ryukoposting / legodb.json
Created May 19, 2023 13:38
Every product listed on LEGO.com USA, May 9 2023
{
"timestamp": "2023/05/09 17: 32",
"result": {
"hokusai--the-great-wave-31208": {
"title": "Hokusai \u2013 The Great Wave",
"link": "/en-us/product/hokusai--the-great-wave-31208",
"price": 99.99,
"discount_price": null,
"piece_count": 1810,
"age": "18+",
@ryukoposting
ryukoposting / Makefile
Created November 14, 2022 21:59
Automatically generate c_cpp_properties.json from Makefile with a 99-line Ruby script
CC:=gcc
CFLAGS:=\
-I./include\
-DFOO\
-DBAR\
-std=c11
.vscode/c_cpp_properties.json: Makefile
ruby vscode_cprops_gen.rb .vscode $(CC) $(CFLAGS)