Skip to content

Instantly share code, notes, and snippets.

View SixBeeps's full-sized avatar
🍎
windows

Brandon Lee SixBeeps

🍎
windows
View GitHub Profile
@SixBeeps
SixBeeps / AutoMemeSkin.cs
Created September 28, 2019 21:37
Replaces every image in an osu! skin with a specified base image
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace AutoMemeSkin
{
class Program
@SixBeeps
SixBeeps / Program.cs
Created December 28, 2020 07:00
NES ROM Graphics Injector
using System;
using System.IO;
using System.Linq;
namespace NESMixer {
class Program {
public static Random rng = new Random();
static void Main(string[] args) {
if (args.Length == 2) {
ROM rom = new ROM(args[0]);
@SixBeeps
SixBeeps / mixxx_scrobbler.py
Last active September 27, 2025 10:13
Mixxx Scrobbler
# Mixxx Scrobbler - SixBeeps 2024
# I can't be bothered to write a proper license, so do whatever you want with this code.
# Steps:
#
# 1. Grab an API key and secret, for Last.fm go to https://www.last.fm/api/account/create
# 2. Install the pylast library with `pip install pylast`
# 3. Create a .env file in the same directory as this script with the following contents
# API_KEY=your_api_key
# API_SECRET=your_api_secret
# NETWORK=lastfm OR librefm