Skip to content

Instantly share code, notes, and snippets.

@geshan
Last active October 9, 2023 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geshan/89efd615e11fd2404fb28ba7a228a208 to your computer and use it in GitHub Desktop.
Save geshan/89efd615e11fd2404fb28ba7a228a208 to your computer and use it in GitHub Desktop.
//run in the console of any meetup.com attendee page like https://www.meetup.com/gdgcloudsydney/events/295561358/attendees/
attendees = $$('div.w-full > span.font-medium');
const names = attendees.map(attendee => attendee.innerText).sort();
console.log(names.join('\n'));
//then put the list on https://wheelofnames.com/
// you have your random winner/raffel without the need of a single sheet of paper :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment