This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)) |