Skip to content

Instantly share code, notes, and snippets.

View g1ver's full-sized avatar
🕶️

giver g1ver

🕶️
View GitHub Profile
@g1ver
g1ver / discord-name-check.js
Created June 12, 2023 00:00
Check discord names using the pomelo-attempt endpoint. This endpoint is only available if you have the option to pick a new name for the first time.
async function processNames() {
for (const name of namelist) {
try {
const res = await makeRequest(name);
if (res.ok) {
const data = await res.json();
if (data.taken) {
console.log(`[-] ${name} was taken.`)
continue;
@g1ver
g1ver / discordnames.js
Created June 7, 2023 07:44
discord name trying script
namelist = [] // names here
async function processNames() {
for (const name of namelist) {
try {
const res = await makeRequest(name);
if (res.ok) {
console.log(`Username ${name} is available.`);
break;