Skip to content

Instantly share code, notes, and snippets.

@davidjray
Last active April 1, 2024 19:20
Show Gist options
  • Save davidjray/054886a717f7cc0a7fbdef75ba479253 to your computer and use it in GitHub Desktop.
Save davidjray/054886a717f7cc0a7fbdef75ba479253 to your computer and use it in GitHub Desktop.
Wheel Decide Google Meet Auto Generate
var url = 'http://www.wheeldecide.com/index.php?';
$$('*[data-sort-key]').forEach(function(el, i) {
url += 'c' + (i + 1) + '=' + encodeURIComponent(el.dataset.sortKey.replace(/ spaces.*$/, '')) + '&';
});
url += '&col=pastel&t=Who+it+be%3F&time=10&width=1200&remove=1';
window.open(url, '_blank');
/*** 20 Questions ***/
let questions = ['the aliens that make first contact be robotic or organic?',
'lose the ability to read or lose the ability to speak?',
'have a golden voice or a silver tongue?',
'be covered in fur or covered in scales?',
'every shirt you ever wear be kind of itchy or only be able to use 1 ply toilet paper?',
'have edible spaghetti hair that regrows every night or sweat (not sweet) maple syrup?',
'have to read aloud every word you read or sing everything you say out loud?',
'wear a wedding dress/tuxedo every single day or wear a bathing suit every single day?',
'have one real get out of jail free card or a key that opens any door?',
'know the history of every object you touched or be able to talk to animals?',
'be able to talk to land animals, animals that fly, or animals that live under the water?',
'spend the rest of your life with a sailboat as your home or an RV as your home?',
'give up all drinks except for water or give up eating anything that was cooked in an oven?',
'be able to see 10 minutes into your own future or 10 minutes into the future of anyone but yourself?',
'be the first person to explore a planet or be the inventor of a drug that cures a deadly disease?',
'be able to control animals (but not humans) with your mind or control electronics with your mind?',
'have unlimited international first-class tickets or never have to pay for food at restaurants?',
'be forced to dance every time you heard music or be forced to sing along to any song you heard?',
'have all your clothes fit perfectly or have the most comfortable pillow, blankets, and sheets in existence?',
'be an unimportant character in the last movie you saw or an unimportant character in the last book you read?',
'be a famous director or a famous actor?',
'live in a cave or live in a tree house?',
'be able to control fire or water?',
'live without the internet or live without AC and heating?',
'have a completely automated home or a self-driving car?',
'be an amazing painter or a brilliant mathematician?',
'never be stuck in traffic again or never get another cold?']
var url = 'http://www.wheeldecide.com/index.php?';
questions.forEach(function(el, i) {
url += 'c' + (i + 1) + '=' + encodeURIComponent(el.replace(/ spaces.*$/, '')) + '&';
});
url += '&col=pastel&t=Would+you+rather%3F&time=10&width=1200&remove=1';
window.open(url, '_blank');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment