Skip to content

Instantly share code, notes, and snippets.

View LordOfPolls's full-sized avatar
👋

LordOfPolls LordOfPolls

👋
View GitHub Profile
@LordOfPolls
LordOfPolls / Bulk-Delete-Claude-Chats.js
Created January 28, 2026 08:32
Paste this in dev console on claude.ai, and it will delete all chats on your claude account.
async function bulkDeleteClaudeChats() {
const DELAY_MS = 500;
const orgMatch = document.location.pathname.match(/org\/([a-f0-9\-]+)/);
let orgId = orgMatch ? orgMatch[1] : null;
if (!orgId) {
const orgResp = await fetch("https://claude.ai/api/organizations", { credentials: 'include' });
const orgs = await orgResp.json();
orgId = orgs[0]?.uuid;
import random
import time
from pypresence import Presence
print("Connecting to client...")
client_id = "834696811729125417" # the app ID you're playing
RPC = Presence(client_id=client_id)
RPC.connect()
@LordOfPolls
LordOfPolls / GistDelete.py
Created March 27, 2018 20:54
Delete all Gists
from github import Github as git
import os
g=git("[token]")
i=0
for gist in g.get_user().get_gists():
i = i+1
gist.delete()
print("{}| Gist {}|| Deleted".format(i, gist.description))