Skip to content

Instantly share code, notes, and snippets.

@UltiRequiem
Created December 10, 2025 18:20
Show Gist options
  • Select an option

  • Save UltiRequiem/15d650798cb35f78371e6ec02e11f0e3 to your computer and use it in GitHub Desktop.

Select an option

Save UltiRequiem/15d650798cb35f78371e6ec02e11f0e3 to your computer and use it in GitHub Desktop.
const eventName = "dvlive";
const email = "dvlive.co";
const baseId = 2098390;
const quantity = 10;
console.log("PromoterLink,Name,Last name, Email");
for (let i = 1; i <= quantity; i++) {
const link = `https://www.ticketfairy.com/events/${eventName}?r=${baseId + i}`;
const name = `Promoter ${i}`;
const promoterEmail = `bookings+pr${i}@${email}`;
console.log(`${link},${name},Promoter,${promoterEmail}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment