Skip to content

Instantly share code, notes, and snippets.

View LegoLoco7's full-sized avatar
🧱
possibly modding

LegoLoco7

🧱
possibly modding
View GitHub Profile
@mary-ext
mary-ext / bluesky-osa.md
Last active July 19, 2026 18:56
Bluesky's age assurance sucks, here's how to work around it.

Bluesky's age assurance sucks, here's how to work around it.

Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.

This sucks, but thankfully there are ways to work around it.

Before diving in: I encourage you to read this entire document, including the

@shinyquagsire23
shinyquagsire23 / rf-extract.py
Last active February 23, 2026 14:59
LEGO LOCO RFH/RFD unpacker
import struct
import os
contents = open("resource.RFH", "rb").read()
blob_f = open("resource.RFD", "rb")
def huff_decompress(data):
bits = 0
node = struct.unpack("<H", data[4:6])[0]
decomp = ""
@BuffaloWill
BuffaloWill / hex_00_to_FF
Created December 6, 2016 18:41
hex 00 to FF
00
01
02
03
04
05
06
07
08
09