Skip to content

Instantly share code, notes, and snippets.

View ptrcnull's full-sized avatar
🏳️‍🌈
she/her

Patrycja ptrcnull

🏳️‍🌈
she/her
View GitHub Profile
@ptrcnull
ptrcnull / meds.txt
Created April 28, 2025 14:44
Space Station 14 (Funky Station) meds list
50 chlorine + 50 sodium + hotplate = 100 salt
===
# Probital/Libital 1:1 - Brute 37.5/5u - 40u OD
===
20 carbon + 20 hydrogen + 20 welding fuel = 80 oil
20 oil + 20 welding fuel + 20 oxygen = 60 acetone
60 acetone + 60 copper + 60 phosphorus = 180 probital
60 oil + 60 nitrogen + 60 oxygen = 180 libital
@ptrcnull
ptrcnull / SaePermission.java
Last active February 2, 2026 21:44
GMV bus app "Permission" keygen
import java.util.Random;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
public final class SaePermission {
public static final long MILLIS_MARGIN = 300000;
public static final int m_iMultiplier = 131;
private static String date;
private static String key;
@ptrcnull
ptrcnull / SaeAPI.java
Created February 3, 2026 09:50
GMV SaeBus API (partial)
@URL("/SaeBus.IIS.AppsApi/Datos")
public interface SaeDatosServiceApi {
@POST("GetLines")
Call<List<SaeLine>> linesList(@Body GetLinesRequest getLinesRequest);
@POST("GetMunicipalities")
Call<List<SaeMunicipality>> municipalitiesList(@Body BaseRequest baseRequest);
@POST("GetZeroTime")
Call<String> nextRestartTime(@Body BaseRequest baseRequest);
@ptrcnull
ptrcnull / amach
Last active June 1, 2026 13:11
Build Firefox with Alpine config/patches in gecko-dev
#!/bin/sh
# for lto
ulimit -n 4096
# can't be set here and fail
unset RUSTFLAGS
_mozappdir=/usr/lib/firefox-nightly