Skip to content

Instantly share code, notes, and snippets.

@TheSethRose
TheSethRose / twitter-interest-uncheck.js
Created October 26, 2025 19:19
X Twitter Interests Bulk Uncheck Script
// X Twitter Interests Bulk Uncheck Script
// This script unchecks all interest checkboxes on the Twitter interests settings page
// by simulating clicks with a 1.5 second delay between each to avoid rate limiting
const section = document.querySelector('section:nth-child(2)');
const checkboxes = section.querySelectorAll('input[type="checkbox"]');
let uncheckedCount = 0;
const uncheck = async () => {
for (let i = 0; i < checkboxes.length; i++) {
@denji
denji / http-benchmark.md
Last active November 2, 2025 09:48
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)