Last active
October 9, 2023 22:40
-
-
Save geshan/89efd615e11fd2404fb28ba7a228a208 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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