Skip to content

Instantly share code, notes, and snippets.

View GarboMuffin's full-sized avatar
🕴️
At work most of the time

Thomas Weber GarboMuffin

🕴️
At work most of the time
View GitHub Profile
@GarboMuffin
GarboMuffin / gandi-decrypt.js
Last active March 2, 2026 04:57
This decrypts projects from the cocrea.world projects API. Claude and I reverse engineered the website to figure out how this works, then Claude took our learnings and made a script.
// how to break the decryption
const https = require('https');
const crypto = require('crypto');
const PROJECT_URL = 'https://www.cocrea.world/@RedLzer2048/SprunkiHyperShifted';
function fetch(url) {
return new Promise((resolve, reject) => {
https.get(url, { headers: { 'User-Agent': 'Mozilla/5.0' } }, res => {
if (res.statusCode >= 300 && res.statusCode < 400 && res.headers.location) {
@GarboMuffin
GarboMuffin / games.md
Last active October 6, 2025 23:42
GMTK 2025 all games made using Scratch
@GarboMuffin
GarboMuffin / AudioStream.js
Last active September 15, 2024 05:47
Archive of old TurboLoader extensions for TurboWarp.
(function (Scratch) {
/*
Experimental extension for Scratch.
*/
var am_global_loop;
class AudioStream {
constructor(runtime, vm) {
this.runtime = runtime;
this.vm = vm;
this.contextList=[];