Skip to content

Instantly share code, notes, and snippets.

@shy1132
shy1132 / twitter6.js
Last active October 10, 2025 13:04
old twitter proxy
//very lazy proxy to make old versions of twitter app kinda work
//run npm i http-mitm-proxy, then node twitter6.js
//dms don't work, everything else kinda does
//PROBABLY NOT SAFE TO ACTUALLY USE
//CHANGE THESE
const authToken = '' //auth_token cookie
const csrfToken = '' //ct0 cookie
//for some reason, http-mitm-proxy incorrectly(?) uses fs.writeFile and it doesn't work. idk if it's something that changed in a node version or what, but patching this fixes it
@shy1132
shy1132 / userscript.js
Last active June 6, 2024 15:31
change under 13 account's birthday on roblox (id required) (install this with tampermonkey)
// ==UserScript==
// @name roblox age overrider
// @version 1.0
// @description allows you to verify your id even if you are under 13 (ages you up)
// @author shy
// @match https://www.roblox.com/my/account
// @grant none
// @run-at document-start
// ==/UserScript==