Skip to content

Instantly share code, notes, and snippets.

@g1ver
g1ver / Vague.icls
Created April 29, 2025 12:26
vague.nvim for jetbrains rider
<scheme name="Vague" version="142" parent_scheme="">
<metaInfo>
<property name="ide">Rider</property>
<property name="ideVersion">2025.1.1.0.0</property>
<property name="originalScheme">Vague</property>
<!-- Based on: https://github.com/vague2k/vague.nvim -->
<!-- Generated by Gemini 2.5 Pro -->
</metaInfo>
<colors>
<!-- Mapped from Vague 'plus' -->
@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;