Skip to content

Instantly share code, notes, and snippets.

View sdsalyer's full-sized avatar

S. D. Salyer sdsalyer

View GitHub Profile
@Gadgetoid
Gadgetoid / RetroPie-Pico8-Splore.md
Last active March 10, 2025 13:22
Instructions for integrating Pico8 and Splore into RetroPie

Just install vanilla Raspberry Pi OS for your Pi 5, and install RetroPie using retropie-setup

install lr-retro8 using RetroPie-Setup (easy way to get a Pico-8 menu option we can modify to our own ends)

Download the Rasberry Pi distro of pico8 and copy the unzipped pico-8 dir to /opt/retropie/ports/

maybe sudo chmod -R 755 /opt/retropie/ports/pico-8/

touch ~/RetroPie/roms/pico8/Splore.p8, launching this dummy cart will launch splore. IDK what zzzsplore.p8 is but it doesn't work and looks ugly in the EmulationStation UI.

@Joao-Peterson
Joao-Peterson / gmk67-manual.md
Last active August 9, 2025 20:16
GMK67 manual (English)
@yadyn
yadyn / SemanticVersion.cs
Created May 6, 2011 18:11
Semantic Version C# class
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// Represents assembly, application, or other version information,
/// compliant with the Semantic Versioning specifications.
/// </summary>
/// <remarks>
/// See http://semver.org/ for specifications.