diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f46a383 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = crlf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..429eac4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.vercel +.DS_Store +.cache +dist +node_modules diff --git a/README.md b/README.md new file mode 100644 index 0000000..f91f212 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# getatopic.com website + +[getatopic.com](https://getatopic.com) offers resources for English language learning +1. Random discussion topics tailored for use in speaking clubs and conversation practice +2. Taboo game where participants describe words without using restricted terms + +![Get a topic](/img/og.png) + +The website is a really simple fully static HTML/CSS/JavaScript, built without the use of bundlers or similar tools diff --git a/about/index.html b/about/index.html new file mode 100644 index 0000000..fc1bdc8 --- /dev/null +++ b/about/index.html @@ -0,0 +1,105 @@ + + + + + + + + About — Get a topic + + + + + + + + + + + + + + + + +
+
+

Hi

+

This site created by a group of friends who study English and practice it in their + speaking club (almost) every week.

+
+
+ + Sergey Kozlov EmojiSergey Kozlov + + + Sergey Lisovskiy EmojiSergey Lisovskiy + + + Vova Lukashov EmojiVova Lukashov + +
+
+
Credits
+
+
+
Idea
+
Sergey Kozlov
+
Design
+
Sergey + Lisovskiy
+
Development
+
+ Sergey Kozlov, + Sergey + Lisovskiy +
+
Telegram bot
+
Vova Lukashov
+
3D Hands
+
Unnamed Human
+
Font
+
Sporting grotesque by Lucas Le Bihan, George + Triantafyllakos, Maciej Połczyński
+
Content
+
Part of the cards for the taboo game were taken from the repository of Pato Lankenau. Other cards and topics were + collected from many different open communities on social networks
+
+
+ If you have any ideas feel free to contact us +




+ © + +
+
+
+
+ + + \ No newline at end of file diff --git a/about/sergeykozlov.jpg b/about/sergeykozlov.jpg new file mode 100644 index 0000000..18eeff6 Binary files /dev/null and b/about/sergeykozlov.jpg differ diff --git a/about/sergeylisovskiy.jpg b/about/sergeylisovskiy.jpg new file mode 100644 index 0000000..8ffb705 Binary files /dev/null and b/about/sergeylisovskiy.jpg differ diff --git a/about/vovalukashov.jpg b/about/vovalukashov.jpg new file mode 100644 index 0000000..cc8a844 Binary files /dev/null and b/about/vovalukashov.jpg differ diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..a77cda0 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,570 @@ +@font-face { + font-family: "Sporting Grotesque"; + src: url("../font/Sporting_Grotesque-Bold_web.woff") format("woff"); +} + +html, +body { + margin: 0; + padding: 0; + color: #111; + background: #fff; + -webkit-font-smoothing: antialiased; + -webkit-text-size-adjust: 100%; +} + +::selection { + color: #fff; + background: #111; +} + +.hi { + display: flex; + align-items: center; + justify-content: center; + font-size: 6.5vw; + position: fixed; + top: 0; + bottom: 0; + right: 0; + left: 0; + padding-bottom: 0.66em; +} + +.text { + font-family: sans-serif; + font-size: 13px; + text-transform: uppercase; +} + +.accent { + font-family: "Sporting Grotesque", serif; + font-size: 2vw; + letter-spacing: -0.02em; + line-height: 1; + font-feature-settings: "liga" 1; +} + +.menu { + position: fixed; + top: 0; + right: 0; + display: flex; + padding: 1vh; + z-index: 2; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; +} + +.menu > button { + position: absolute; + right: 0; + top: 0; + height: 100%; + width: 70px; + box-sizing: border-box; + background: transparent; + z-index: 1; + overflow: hidden; + border: 0; + padding: 0; +} + +.menu:hover > button { + transform: scale(0); + opacity: 0; +} + +.menu > button span { + position: absolute; + overflow: hidden; + margin: -1px; + width: 1px; + height: 1px; + top: 0; + left: 0; + clip: rect(0 0 0 0); +} + +.menu::after { + content: "•••"; + display: block; + padding: 3vh; + font-size: 20px; + cursor: pointer; + display: flex; + align-items: center; + transition: transform 0.3s ease, opacity 0.3s ease; +} +.menu:hover::after, +.menu:focus-within::after { + transform: scale(0); + opacity: 0; +} + +.menu:hover a, +.menu:focus-within a { + opacity: 1; + visibility: visible; + transform: translate3d(0, 0, 0); +} + +.menu a { + color: #111; + padding: 10px 20px; + transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, + color 0.3s ease; + opacity: 0; + visibility: hidden; + transform: translate3d(10px, 0, 0); + text-decoration: none; + position: relative; + z-index: 2; + text-align: center; + overflow: hidden; + border-radius: 100px; + border: 1px solid #fff; +} + +.menu a.accent { + padding: 0.3em 20px 0.1em 20px; + display: flex; + align-items: center; + justify-content: center; + min-height: 40px; +} + +.menu a:focus { + z-index: 3; +} + +.menu a:nth-child(2) { + transition-delay: 0.05s; +} +.menu a:nth-child(3) { + transition-delay: 0.1s; +} +.menu a:nth-child(4) { + transition-delay: 0.15s; +} +.menu a:nth-child(5) { + transition-delay: 0.2s; +} + +.menu a::before { + content: ""; + position: absolute; + bottom: 0; + left: 0; + right: 0; + top: 0; + background-color: #111; + transition: transform 0.3s ease; + transform: scaleY(0) translateZ(0); + z-index: -1; + transform-origin: bottom; +} + +.menu a:hover, +.menu a.active { + color: #fff; + transition-delay: 0s !important; +} +.menu a:hover::before, +.menu a.active::before { + transform: scaleY(1) translateZ(0); + opacity: 1; + transform-origin: top; +} + +.menu__block { + border-radius: 20px; + display: flex; + flex-direction: column; + position: absolute; + z-index: 2; + top: 2vh; + right: 2vh; + padding: 2vh; + width: calc(14vw + 2vh + 40px); + opacity: 0; + visibility: hidden; + transform: scale(0.75); + transform-origin: 90% 10%; + transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; + background-color: #fff; + box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); + border: 1px solid #111; + align-items: center; +} + +.menu:hover .menu__block, +.menu:focus-within .menu__block { + opacity: 1; + visibility: visible; + transform: scale(1); +} + +.container { + height: 100vh; + height: calc(var(--vh, 1vh) * 100); + display: flex; + justify-content: center; + text-align: center; + cursor: pointer; + -webkit-tap-highlight-color: transparent; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; +} + +.aic { + align-items: center; +} + +.topic { + width: 75vw; + font-size: 4.5vw; + font-family: "Sporting Grotesque", serif; + line-height: 1.15em; + letter-spacing: -0.02em; + font-feature-settings: "liga" 1; +} + +.helper { + text-align: center; + position: fixed; + bottom: 4vh; + left: 5vw; + width: 90vw; +} + +.helper span { + display: inline-block; + position: relative; + transform: scale(1); +} + +.helper button { + display: inline; + white-space: nowrap; + background: transparent; + border: 0; + padding: 0; + font-family: inherit; + text-transform: uppercase; + font-size: inherit; + line-height: inherit; + letter-spacing: inherit; + cursor: pointer; + -webkit-appearance: none; +} + +.click { + transition: transform 0.5s ease; +} + +.mask { + overflow: hidden; +} + +span.mask { + display: inline-flex; +} + +.word { + transform: translate3d(0, 0, 0); + opacity: 1; + transition: transform 0.5s ease, opacity 0.5s ease; + display: inline-flex; +} + +._is-animated .word { + transform: translate3d(0, 250%, 0) rotate(15deg); +} + +.container:active .click { + transform: scale(0.8); + transition-duration: 0.1s; +} + +/** taboo **/ + +.taboo { + width: 75vw; + font-size: 6.5vw; + font-family: "Sporting Grotesque", serif; + line-height: 1.15em; + letter-spacing: -0.02em; + margin-top: 1em; + font-feature-settings: "liga" 1; +} + +.card__word { + margin-bottom: 0.5em; + text-transform: capitalize; +} + +.card__list { + list-style: none; + font-size: 0.3em; + margin: 0; + padding: 0; + line-height: 1.75em; +} + +.card__list .word { + position: relative; +} + +.card__list .word::after { + content: ""; + position: absolute; + top: 47%; + left: -0.75vw; + right: -0.75vw; + height: 1px; + background: #000; + transform-origin: left; + transform: scalex(1); + transition: transform 0.3s ease; + opacity: 0.5; +} +.card__list .mask:nth-child(1) .word::after { + transition-delay: 0.8s; +} +.card__list .mask:nth-child(2) .word::after { + transition-delay: 0.9s; +} +.card__list .mask:nth-child(3) .word::after { + transition-delay: 1s; +} +.card__list .mask:nth-child(4) .word::after { + transition-delay: 1.1s; +} +.card__list .mask:nth-child(5) .word::after { + transition-delay: 1.2s; +} +.card__list .mask:nth-child(6) .word::after { + transition-delay: 1.3s; +} +.card__list .mask:nth-child(7) .word::after { + transition-delay: 1.4s; +} +.card__list .mask:nth-child(8) .word::after { + transition-delay: 1.5s; +} +.card__list .mask:nth-child(9) .word::after { + transition-delay: 1.6s; +} + +._is-animated .card__list .word::after { + transform: scalex(0); +} + +/* about */ + +.about { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + padding: 15vh 0 3vh 0; + user-select: auto; + -webkit-user-select: auto; + -moz-user-select: auto; +} +.grid_3 { + display: grid; + grid-template-columns: repeat(3, 1fr); + width: 75vw; + gap: 2vw; + margin-top: 2vw; +} +.grid_2 { + display: grid; + grid-template-columns: repeat(2, 1fr); + width: 75vw; + margin-top: 8vw; +} +.person { + display: flex; + flex-direction: column; + padding: 50px 20px; + text-decoration: none; + border-radius: 30px; + color: #111; + box-sizing: border-box; + overflow: hidden; + position: relative; + transform: translateZ(0); + justify-content: center; + align-items: center; + text-align: center; +} +.person > img { + display: inline-block; + transform: translateZ(0); + width: 100%; + max-width: 300px; + z-index: -1; +} +.person::after { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: #111; + opacity: 0; + transition: opacity 0.3s ease; + transform: translateZ(0); +} +.person:hover::after { + opacity: 0.03; +} +.person:hover > img { + animation: face 1s ease infinite; +} +.credits { + display: grid; + grid-template-columns: 1fr 2fr; + gap: 2em; + margin-bottom: 8vw; +} +.grid_2 a { + color: #111; + text-decoration: none; + display: inline-block; + position: relative; +} +.grid_2 a::after { + content: ""; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 1px; + background-color: #111; + transform: translateZ(0); + transition: transform 0.3s ease; + transform-origin: left; +} +.grid_2 a:hover::after { + transform: scaleX(0) translateZ(0); + transform-origin: right; +} +.text_l { + font-size: 4.5vw; + font-family: "Sporting Grotesque", serif; + line-height: 1.15em; + letter-spacing: -0.02em; + font-feature-settings: "liga" 1; +} + +@media (max-width: 767px) { + .text_l { + font-size: 8vw; + } + .topic { + width: 90vw; + font-size: 8vw; + } + .taboo, + .grid_2, + .grid_3 { + width: 90vw; + font-size: 12vw; + } + .grid_3, + .grid_2 { + grid-template-columns: 1fr; + } + .hi { + font-size: 12vw; + } + .helper, + .text { + font-size: 12px; + } + .accent { + font-size: 8vw; + } + .menu__block { + width: calc(100vw - 8vh - 2px); + } + .credits { + margin: 10vw 0 20vw 0; + } +} + +@keyframes face { + 0% { + transform: scale(1) rotate(0); + } + 25% { + transform: scale(1.05) rotate(5deg); + } + 50% { + transform: scale(1) rotate(0); + } + 75% { + transform: scale(1.05) rotate(-5deg); + } + 100% { + transform: scale(1) rotate(0); + } +} + +/* IE11 bugfix */ +@media all and (-ms-high-contrast: none) { + .menu:after { + content: none; + } + + .menu a { + opacity: 1; + visibility: visible; + transform: none; + border: 0; + min-height: 0 !important; + margin-bottom: 5px; + } + + .menu__block { + opacity: 1; + visibility: visible; + transform: scale(1); + background: rgba(255, 255, 255, 0.5); + border: 0; + } + + .grid_3 { + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; + } + + .grid_3 > a { + flex-shrink: 0; + } + + .credits.text { + display: flex; + flex-wrap: wrap; + margin-top: 2rem; + } + + .credits.text > div:nth-child(odd) { + width: 10rem; + margin-bottom: 1rem; + } + + .credits.text > div:nth-child(even) { + width: calc(100% - 10rem); + margin-bottom: 1rem; + } +} diff --git a/data/taboos.js b/data/taboos.js new file mode 100644 index 0000000..6220805 --- /dev/null +++ b/data/taboos.js @@ -0,0 +1,2472 @@ +window.dataTaboo = [ + { + word: "Computer language", + forbidden: ["PHP", "Java", "C++", "programming", "code"] + }, + { + word: "Camping", + forbidden: ["Tents", "Hiking", "Mountains", "Fires", "Fishing"] + }, + { + word: "Pineapple ", + forbidden: ["Fruit", "Tropical", "Yellow", "Spongebob", "Pina Colada"] + }, + { + word: "Week", + forbidden: ["Monday", "Tuesday", "Friday", "Sunday", "Wednesday"] + }, + { + word: "Ice Box", + forbidden: ["Cold", "Store", "Cooler", "Keep", "Ice"] + }, + { + word: "Credit Card", + forbidden: ["Wallet", "Pay", "Cash", "Carry", "Purchase"] + }, + { + word: "Crayon", + forbidden: ["Kids", "Crayola", "Colorful", "Color", "Scribble"] + }, + { + word: "New York", + forbidden: [ + "Big Apple", + "Statue of Liberty", + "Manhattan", + "Empire State Building", + "Long Island", + ] + }, + { + word: "Applause", + forbidden: ["Cheer", "Crowd", "Clap", "Audience", "Stand"] + }, + { + word: "Sandals", + forbidden: ["Slippers", "Shoes", "Feet", "Sand", "Wear"] + }, + { + word: 'The Letter "A"', + forbidden: ["First", "Alaphabet", "B", "C", "Z"] + }, + { + word: "A Painting", + forbidden: ["Colour", "Artist", "Brush", "Palette", "Canvas"] + }, + { + word: "Out", + forbidden: ["Inside", "Baesball", "Box", "Crickett", "Inning"] + }, + { + word: "Thanksgiving", + forbidden: ["Turkey", "November", "Pilgrims", "Holiday", "Christmas"] + }, + { + word: "Emergency", + forbidden: ["Urgent", "Wrong", "Danger", "Ambulance", "Bathroom"] + }, + { + word: "Amnesia", + forbidden: ["Remember ", "Forget", "Mental ", "Loss", "Game"] + }, + { + word: "Diamond", + forbidden: ["Ring", "Carat", "Jewel", "Glass", "Ring"] + }, + { + word: "Duckface", + forbidden: ["Lips", "Girls", "Photos", "Instagram", "Pictures"] + }, + { + word: "Pizza", + forbidden: ["Round", "Italy", "Pepperoni", "Papa John`s", "Pie"] + }, + { + word: "Mario Brothers", + forbidden: ["Luigi", "Yoshi", "Mushroom", "Nintendo", "Video Game"] + }, + { + word: "Sherlock Holmes", + forbidden: ["Detective", "British", "Mystery", "Inspector", "Clues"] + }, + { + word: "Sloth", + forbidden: ["Samuel", "Furry", "Sleepy", "Hanging", "Animal"] + }, + { + word: "Cupid", + forbidden: ["Arrow", "Heart", "Valentine", "Febuary", "Love"] + }, + { + word: "Atlas", + forbidden: ["Maps", "World", "Country", "Earth", "Globe"] + }, + { + word: "Stomach Ache", + forbidden: ["Tummy", "Hurts", "Peptobismol", "Mixed Up", "Throw Up"] + }, + { + word: "Flamingo", + forbidden: ["Pink", "Shrimp", "One Leg", "Water", "Bird"] + }, + { + word: "Ping Pong", + forbidden: ["Chinese", "Ball", "Table", "Back and Forth ", "Raquet "] + }, + { + word: "Minecraft", + forbidden: [ + "Diamond", + "Blocks", + "Multiplayer", + "Herobrine", + "Singleplayer", + ] + }, + { + word: "Pearl", + forbidden: ["Necklace", "Oyster", "White", "Ball", "Jewelry"] + }, + { + word: "Calculus ", + forbidden: ["BC", "Math", "School", "Pato", "Hard"] + }, + { + word: "Toe Nail", + forbidden: ["Feet", "Bottom", "Gross", "Fungus", "Socks"] + }, + { + word: "Nostril", + forbidden: ["Next to", "Cheek", "Mouth", "Hairy", "Breathe"] + }, + { + word: "Dust", + forbidden: ["Sneeze", "Little", "Particles", "Tiny", "Allergic"] + }, + { + word: "Callus", + forbidden: ["Tough ", "Skin", "Rough", "Feet", "Yellow"] + }, + { + word: "Quarter", + forbidden: [ + "Twenty Five", + "Penny", + "Nickel", + "Dime", + "George Washington", + ] + }, + { + word: "Tortilla ", + forbidden: ["Maize", "Flour", "Mexican", "Taco", "Flat"] + }, + { + word: "Tassel", + forbidden: ["Thread", "Hair", "Pillow", "Carpet", "Hanging"] + }, + { + word: "Vacuum Cleaner", + forbidden: ["Hoover", "Carpet", "Dusty", "Filthy", "Clean"] + }, + { + word: "Protein", + forbidden: [ + "Amino Acids", + "Work Out", + "Peanut Butter", + "Meat", + "Nutrition", + ] + }, + { + word: "Georgia", + forbidden: ["Atlanta", "Savannah", "South", "Peach", "Dixie"] + }, + { + word: "Bow Tie", + forbidden: ["Ribbon", "Tuxedo", "Fancy", "Dress up", "Colourful"] + }, + { + word: "Fragile", + forbidden: ["Break", "Drop", "Glass", "Mail", "Smash"] + }, + { + word: "Alone", + forbidden: [ + "People", + "Friends", + "Just yourself", + "Nobody ", + "1 person", + ] + }, + { + word: "Atom", + forbidden: ["Particle", "Electrons", "Small", "Protons", "Science"] + }, + { + word: "Architect", + forbidden: ["Create", "Build", "House", "Home", "Construct"] + }, + { + word: "Kernel", + forbidden: ["Corn", "Maize", "Vegetable", "Tiny", "Yellow"] + }, + { + word: "Ethernet", + forbidden: ["Connection", "Cable", "Internet", "Yellow", "Computer"] + }, + { + word: "Bladder", + forbidden: ["Pee", "Empty", "Drink", "Water", "Bathroom"] + }, + { + word: "Baseball", + forbidden: ["Home", "Out", "Base", "Pitcher", "Bat"] + }, + { + word: "American", + forbidden: ["Citizen", "Country", "USA", "Canada", "States"] + }, + { + word: "Fat", + forbidden: ["Calories", "Junk Food", "Big", "Stomach", "America"] + }, + { + word: "Toothbrush", + forbidden: ["Paste", "Every morning", "Cavity", "Dentist", "Mint"] + }, + { + word: "License", + forbidden: ["Drivers", "Document", "Legal", "Paper", "Official"] + }, + { + word: "Homeless", + forbidden: ["Hobo", "Stink", "Begging", "Bridge", "Ripped clothes"] + }, + { + word: "Big Ben", + forbidden: ["London", "Bell", "Building", "Clock", "Hands"] + }, + { + word: "Stop Light", + forbidden: ["Red", "Green", "Drive", "Yellow", "Intersection"] + }, + { + word: "Pillow", + forbidden: ["Soft", "Sleep", "Bed", "Case", "Head"] + }, + { + word: "Hairspray", + forbidden: [ + "I Can Hear the Bells", + "Sticky", + "Musical", + "Song", + "You Can`t Stop the Beat", + ] + }, + { + word: "Pie", + forbidden: ["Math", "Apple", "Circle", "180", "Desert"] + }, + { + word: "Freedom", + forbidden: ["Ring", "Choice", "Democracy", "America", "Liberty"] + }, + { + word: "Octopus", + forbidden: ["Slippery", "Ocean", "Sea", "Animal", "Tentacle"] + }, + { + word: "Author", + forbidden: ["Book", "Write", "Pen", "Name", "Mark Twain"] + }, + { + word: "Police", + forbidden: ["Jail", "Gun", "Street", "Good Guy", "Bad"] + }, + { + word: "Beatles", + forbidden: ["Singers", "Band", "Old Rock", "Music", "Beach Boys"] + }, + { + word: "Cardinal", + forbidden: ["Bird", "Red", "Chirp", "Spring", "Bishop"] + }, + { + word: "Bunny", + forbidden: ["White", "Furry", "Tail", "Alice in Wonderland", "Forest"] + }, + { + word: "Eyebrow", + forbidden: ["Socket", "Face", "Hair", "Fuzzy", "Above"] + }, + { + word: "Music", + forbidden: ["Notes", "Sound", "Hear", "Band", "Instrument"] + }, + { + word: "Flower", + forbidden: ["Colorful", "Spring", "Petal", "Grow", "Easter"] + }, + { + word: "Watch", + forbidden: ["Look", "Time", "Wrist", "Clock", "Wears"] + }, + { + word: "Touch", + forbidden: ["Hands", "Finger", "Feel", "Sense", "Reach"] + }, + { + word: "Time", + forbidden: ["Clock", "Watch", "Second", "Minute", "Hour"] + }, + { + word: "Fiber", + forbidden: ["Cereal", "Grain", "Health", "Poop", "Cardboard"] + }, + { + word: "Internet", + forbidden: ["Computers", "Connect", "WiFi", "Router", "Ethernet"] + }, + { + word: "Write", + forbidden: ["Author", "Books", "Pen", "Words", "Paper"] + }, + { + word: "Volleyball", + forbidden: ["Bump", "Set", "Spike", "Block", "Net"] + }, + { + word: "Neighbor", + forbidden: ["Live", "Next", "House", "Person", "Street"] + }, + { + word: "Camera", + forbidden: ["Shoot", "Picture", "Digital", "Focus", "Memory"] + }, + { + word: "Relation", + forbidden: ["Mother", "Father", "Friend", "Brother", "Sister"] + }, + { + word: "Snowman", + forbidden: ["Frosty", "Balls", "Carrot", "Christmas", "Abominable"] + }, + { + word: "Pythagoras", + forbidden: [ + "Theorem", + "Triangle", + "Mathematics", + "Egypt", + "Right Angle", + ] + }, + { + word: "Disco", + forbidden: ["Ball", "Dancing", "Fever", "Mirror", "Lights"] + }, + { + word: "Jail", + forbidden: ["Law", "Penalty", "Police", "Illegal", "Bars"] + }, + { + word: "Sideburn", + forbidden: ["Elvis", "Hair", "Boy", "Texan", "Beard"] + }, + { + word: "Casual", + forbidden: ["Relaxed", "Friday", "Suit", "Dress Code", "Informal"] + }, + { + word: "Poker", + forbidden: ["Chips", "High Stakes", "Cards", "All In", "Hold em"] + }, + { + word: "Mt. Everest", + forbidden: ["Tallest", "Himalayas", "Cold", "Mountain", "Climb"] + }, + { + word: "Lion", + forbidden: ["Cat", "Big", "Wild", "Roar", "Mane"] + }, + { + word: "Gondola", + forbidden: ["Venice", "Boat", "Stripes", "Singing", "Italy"] + }, + { + word: "Circus", + forbidden: ["Ring", "Tent", "Clown", "Animals", "Ringling"] + }, + { + word: "Colony", + forbidden: [ + "United Kingdom", + "Colonization", + "Britain", + "India", + "States", + ] + }, + { + word: "Hotdog", + forbidden: ["America", "Food", "BBQ", "Grill", "Sausage"] + }, + { + word: "Pixar", + forbidden: ["Finding Nemo", "Animation", "Toy Story", "Lamp", "Movies"] + }, + { + word: "Friday", + forbidden: ["Saturday", "Thursday", "Days", "Two", "Weekend"] + }, + { + word: "Funny", + forbidden: ["Smile", "Laugh", "Giggle", "Joke", "Riddle"] + }, + { + word: "Piano", + forbidden: ["Keys", "Player", "Tune", "Notes", "Music"] + }, + { + word: "Scalp", + forbidden: ["Dandruff", "Hair", "Head", "Top", "Skull"] + }, + { + word: "Blend", + forbidden: ["Merge", "Combine", "Fuse", "Smoothie", "Mix"] + }, + { + word: "Whats Up", + forbidden: ["Greeting", "Hello", "Hi", "Doing", "You"] + }, + { + word: "Origami", + forbidden: ["Paper folding", "Japanese", "Art", "Crane", "Flowers"] + }, + { + word: "Protractor", + forbidden: ["Instrument", "Math", "School", "Shapes", "Circle"] + }, + { + word: "Rice", + forbidden: ["Cooker", "Grain", "White", "Asian", "Fried"] + }, + { + word: "Scary Movie", + forbidden: ["Fright", "Scared", "Comedy", "Sequel", "Mock"] + }, + { + word: "Rap", + forbidden: ["Dancer", "Music", "Gangster", "Black", "Eminem"] + }, + { + word: "Runway", + forbidden: ["Catwalk", "Airport", "Fashion", "Airplanes", "Models"] + }, + { + word: "Crepes", + forbidden: ["Dessert", "Sweet", "France", "Pancakes", "Tortilla"] + }, + { + word: "Partner", + forbidden: ["Companion", "Husband", "Wife", "Boss", "Head"] + }, + { + word: "Generate", + forbidden: ["Effect", "Make", "Trigger", "Electricity", "Create"] + }, + { + word: "Dollars", + forbidden: ["Cents", "Penny", "Washington", "Money", "Cash"] + }, + { + word: "Paintbrush", + forbidden: ["Art", "Create", "Canvas", "House", "Tool"] + }, + { + word: "Maximum", + forbidden: ["Top", "Highest", "Amount", "Minimum", "Height"] + }, + { + word: "Kindle", + forbidden: ["Amazon", "Reader", "Book", "E-Reader", "Nook"] + }, + { + word: "Halloween", + forbidden: ["October", "Scary", "Holiday", "Pumpkin", "Costume"] + }, + { + word: "Las Vegas", + forbidden: ["Casino", "Hotel", "Betting", "Hangover", "Desert"] + }, + { + word: "Air Conditioner", + forbidden: ["Summer", "Cool", "Air", "Fan", "A/C"] + }, + { + word: "Beans", + forbidden: ["Farts ", "Mexican", "Brown", "Taco", "Lima"] + }, + { + word: "Finally", + forbidden: [ + "Finish", + "End", + "Once and for All", + "At Last", + "Ultimately", + ] + }, + { + word: "AC/DC", + forbidden: ["Rock", "Band", "Thunder", "Highway to Hell", "Music"] + }, + { + word: "Potato", + forbidden: ["Sack", "French Fries", "Mashed", "Baked", "Meat"] + }, + { + word: "The", + forbidden: ["Before", "Sentence", "Movie", "Name", "Word"] + }, + { + word: "Laugh", + forbidden: ["Funny", "Hilarious", "Smile", "Sound", "Giggle"] + }, + { + word: "Slide", + forbidden: ["Park", "Down", "Kids", "Slip", "Photo"] + }, + { + word: "Lama ", + forbidden: ["Spit", "Animal ", "Furry", "Animal", "Ugly"] + }, + { + word: "Tequila", + forbidden: ["Mexico", "Shot", "Alcohol", "Drink", "Bar"] + }, + { + word: "Omelette", + forbidden: ["Breakfast", "Eggs", "Yolk", "White", "Eat"] + }, + { + word: "Africa", + forbidden: ["Hot", "Elephants", "South", "Zebras", "Black People"] + }, + { + word: "Thunder", + forbidden: ["Wet", "Rain", "Lightning", "Sound", "Umbrella"] + }, + { + word: "Magnet", + forbidden: [ + "Metal", + "Conduct", + "Electric", + "Stick together", + "Opposites attract", + ] + }, + { + word: "Carmel", + forbidden: ["Chewy", "Sugar", "Sweet ", "Sticky", "Topping"] + }, + { + word: "Nintendo", + forbidden: ["Play", "DS", "Xbox", "Playstation", "Video Game"] + }, + { + word: "Focus", + forbidden: ["Camera", "Blurry", "Attention", "Ford", "Sharpen"] + }, + { + word: "Food", + forbidden: ["Eat", "Mouth", "Digest", "Stomach", "Live"] + }, + { + word: "Zipper", + forbidden: ["Close", "Sweater", "Jacket", "Jeans ", "Shut"] + }, + { + word: "Unicycle", + forbidden: ["One", "Circus", "Wheel", "Balance", "Less"] + }, + { + word: "Monday", + forbidden: ["Tuesday", "Sunday", "Days", "Two", "Eve"] + }, + { + word: "Full House", + forbidden: [ + "T.V show", + "Tanner", + "Flush", + "Olsen twins", + "Uncle Jessie", + ] + }, + { + word: "Finland", + forbidden: ["North", "Cold", "Santa ", "Sweden", "Scandanavia"] + }, + { + word: "Hip Hop", + forbidden: ["Rap", "Music", "Slang", "Artist", "Kanye"] + }, + { + word: "Avalanche", + forbidden: ["Snow", "Mountains", "Falling", "Skiing", "Winter"] + }, + { + word: "Chandelier", + forbidden: ["Lights", "Crystal", "Fancy", "Ceiling", "Palace"] + }, + { + word: "Monitor", + forbidden: ["Computer", "Screen", "Display", "Hallway", "Baby"] + }, + { + word: "Kitten", + forbidden: ["Purr", "Meow", "Pet", "Dog", "Cat"] + }, + { + word: "Air", + forbidden: ["Breath", "Invisible", "Life", "Oxygen", "Wind"] + }, + { + word: "Sprite", + forbidden: ["Lemon", "Soda", "Fizzy", "Carbonated", "Coke"] + }, + { + word: "Taboo", + forbidden: ["Game", "Board", "Words", "Family", "Play"] + }, + { + word: "Ghost", + forbidden: ["Halloween", "Scary", "Dead", "Float", "Boo"] + }, + { + word: "North Pole", + forbidden: ["Cold", "Earth", "Artic", "Snow", "South"] + }, + { + word: "Gnome", + forbidden: [ + "Garden", + "Little tiny small", + "Decoration", + "Hat", + "Ceramic", + ] + }, + { + word: "Handkerchief", + forbidden: ["Nose", "Cloth", "Wipe", "Tissue", "Pocket"] + }, + { + word: "Bedroom", + forbidden: ["Sleep ", "House ", "Master", "Family", "Closet"] + }, + { + word: "Squeak", + forbidden: ["Mouse", "Rust", "Gate", "Oil", "Grease"] + }, + { + word: "Yell", + forbidden: ["Voice", "Loud", "Sceam", "Annoying", "Juanpi"] + }, + { + word: "Stripes", + forbidden: ["Stars", "American flag", "Gondola", "Lines", "Pattern"] + }, + { + word: "Gym", + forbidden: ["Weights", "Dumb Bells", "Sweat", "Muscles", "Workout"] + }, + { + word: "Mozart", + forbidden: ["Piano", "Cembalo", "Austria", "Salzburg", "Music"] + }, + { + word: "Scissors", + forbidden: ["Cut", "Knife", "School", "Paper", "Blades"] + }, + { + word: "Fashion", + forbidden: ["Regina", "Style", "Clothes", "Designers", "Girls"] + }, + { + word: "Wheat", + forbidden: ["Food", "Bread", "Allergic", "Plant", "Grow"] + }, + { + word: "Potato Chips", + forbidden: ["Junk food", "Eat", "Salt and Vinegar", "Takis", "Lays"] + }, + { + word: "Leopard", + forbidden: ["Lion", "Tiger", "Cat", "Animal", "Spots"] + }, + { + word: "FIFA", + forbidden: ["Goals", "Soccer", "Game", "Playstation", "We"] + }, + { + word: "Owl", + forbidden: ["Night", "Fly", "Bird", "Wise", "Eyes"] + }, + { + word: "Oreos", + forbidden: ["Chocolate", "White", "Black", "Milk", "Cookies"] + }, + { + word: "Rainbow", + forbidden: ["Colour", "Arch", "Leprechaun", "Gold", "Sun"] + }, + { + word: "A Page", + forbidden: ["Book", "Paper", "Words", "Magazine ", "Newspaper"] + }, + { + word: "Left", + forbidden: ["Right", "Side", "Handed", "Write", "Leg"] + }, + { + word: "Like", + forbidden: ["Love", "Crush", "The same", "Similar", "Equivalent"] + }, + { + word: "Muffin", + forbidden: ["Top", "Bread", "Morning", "Breakfast", "Eat"] + }, + { + word: "Fairy", + forbidden: ["Tooth", "Magic", "Flies", "Peter Pan", "Tinkerbell"] + }, + { + word: "Beanstalk", + forbidden: [ + "Jack and the Giant", + "Story", + "Fairytale", + "Golden Eggs", + "Plant", + ] + }, + { + word: "Polo Shirt", + forbidden: ["Collar", "Horse", "Ralph Lauren", "Preppy", "Buttons"] + }, + { + word: "Poland", + forbidden: ["Lived", "Where", "Cold", "Country", "Europe"] + }, + { + word: "Starvation", + forbidden: ["Africa", "Hunger", "Food", "No", "Skinny"] + }, + { + word: "Detail", + forbidden: ["Attention", "Exact", "Perfect", "Little", "Small"] + }, + { + word: "Waiter", + forbidden: ["Restaurant", "Receipt", "Food", "Service", "Tip"] + }, + { + word: "Travel", + forbidden: ["Go", "Places", "Countries", "Passport", "Airplanes"] + }, + { + word: "Soy Milk", + forbidden: ["Allergic", "Buelo", "Dairy", "White", "Drink"] + }, + { + word: "Trampoline", + forbidden: ["Outside", "Jump", "Bounce", "Net", "Circular"] + }, + { + word: "Janitor", + forbidden: ["Custodian", "Clean", "School", "Mop", "Sweep"] + }, + { + word: "Winnie the Pooh", + forbidden: ["Think", "Honey", "Yellow", "Piglet", "Bear"] + }, + { + word: "UFO", + forbidden: [ + "Space", + "Aliens", + "Mother", + "Extraterrestrial", + "Universe", + ] + }, + { + word: "Crumb", + forbidden: ["Little", "Small", "Food", "Leaves", "Tiny"] + }, + { + word: "Recycle", + forbidden: ["World", "Good", "Reuse", "Green", "Garbage"] + }, + { + word: "Flute", + forbidden: ["Wind", "Instrument", "Blowing", "Band", "Recorder"] + }, + { + word: "Car", + forbidden: [ + "driver", + "ride", + "transport", + "fast", + "travel" + ] + }, + { + word: "Dragonfly", + forbidden: [ + "Red", + "Wings", + "Insect", + "Fly", + "dragon" + ] + }, + { + word: "Snowflake", + forbidden: [ + "cold", + "winter", + "flower", + "snow", + "fall" + ] + }, + { + word: "Hungry", + forbidden: [ + "feeling", + "eat", + "food", + "breakfast", + "meal" + ] + }, + { + word: "Duck", + forbidden: [ + "bird", + "yellow", + "chicken", + "quack", + "food" + ] + }, + { + word: "Dance", + forbidden: [ + "Shoes", + "Romantic", + "Music", + "Sing", + "Town Square" + ] + }, + { + word: "Proud", + forbidden: [ + "feeling", + "Accomplish", + "Great", + "Boast", + "Humble" + ] + }, + { + word: "Blanket", + forbidden: [ + "Warm", + "Bed", + "Pillow", + "Soft", + "Cold" + ] + }, + { + word: "Shanghai", + forbidden: [ + "Modern", + "Big", + "China", + "Expo", + "Famous" + ] + }, + { + word: "Soccer", + forbidden: [ + "Ball", + "world Cup", + "Black", + "Sport", + "Team" + ] + }, + { + word: "Cheese", + forbidden: [ + "Yellow", + "White", + "Pizza", + "Food", + "Italy" + ] + }, + { + word: "Snail", + forbidden: [ + "Round", + "Slow", + "River", + "Eat", + "Animal" + ] + }, + { + word: "Dinosaur", + forbidden: [ + "Big", + "Animal", + "Extinct", + "Long Ago", + "Reptile" + ] + }, + { + word: "Japan", + forbidden: [ + "Country", + "Asia", + "Cherry Blossom", + "Sushi", + "Tokyo" + ] + }, + { + word: "Husband", + forbidden: [ + "Wife", + "Ring", + "Marry", + "Man", + "Friend" + ] + }, + { + word: "Underwear", + forbidden: [ + "Small", + "Clothing", + "Every Day", + "Secret", + "Under" + ] + }, + { + word: "Girlfriend", + forbidden: [ + "Boyfriend", + "Beautiful", + "Flowers", + "Date", + "Female" + ] + }, + { + word: "Giraffe", + forbidden: [ + "Tall", + "Africa", + "Neck", + "Long", + "Yellow" + ] + }, + { + word: "Slippers", + forbidden: [ + "Warm", + "Feet", + "Winter", + "House", + "Soft" + ] + }, + { + word: "Comb", + forbidden: [ + "Brush", + "Hair", + "Smooth", + "Small", + "Beautiful" + ] + }, + { + word: "Hamburger", + forbidden: [ + "America", + "Beef", + "Bread", + "McDonalds", + "Unhealthy" + ] + }, + { + word: "Polar Bear", + forbidden: [ + "cold", + "Winter", + "Alaska", + "White", + "Snow" + ] + }, + { + word: "Penguin", + forbidden: [ + "Bird", + "Fly", + "Animal", + "Black", + "White" + ] + }, + { + word: "Glasses", + forbidden: [ + "Eyes", + "See", + "Contacts", + "Wear", + "Face" + ] + }, + { + word: "Popcorn", + forbidden: [ + "Kernel", + "Butter", + "Sweet", + "Microwave", + "Snack Food" + ] + }, + { + word: "Speech", + forbidden: [ + "Give", + "Speak", + "Important", + "Audience", + "Nervous" + ] + }, + { + word: "Furious", + forbidden: [ + "Angry", + "Red Face", + "Hurt", + "Rage", + "Violent" + ] + }, + { + word: "Jealousy", + forbidden: [ + "Envy", + "Emotion", + "Compare", + "Green", + "Achieve" + ] + }, + { + word: "Toilet", + forbidden: [ + "Washroom", + "WC", + "Pee", + "Poop", + "Bathroom" + ] + }, + { + word: "Wish", + forbidden: [ + "Want", + "Desire", + "Hope", + "Dream", + "Long For" + ] + }, + { + word: "Bench", + forbidden: [ + "Sit", + "Wooden", + "Chair", + "Long", + "Park" + ] + }, + { + word: "Exercise", + forbidden: [ + "Run", + "Sports", + "Healthy", + "Daily", + "Morning" + ] + }, + { + word: "Crown", + forbidden: [ + "Head", + "Gold", + "King", + "Queen", + "Jewels" + ] + }, + { + word: "Princess", + forbidden: [ + "Prince", + "Queen", + "Daughter", + "Royal", + "Castle" + ] + }, + { + word: "Jacket", + forbidden: [ + "Coat", + "Warm", + "Clothes", + "Sleeves", + "Zipper" + ] + }, + { + word: "Shower", + forbidden: [ + "Rain", + "Clean", + "Water", + "Every Day", + "Bath" + ] + }, + { + word: "Wind", + forbidden: [ + "Blow", + "Autumn", + "Invisible", + "Trees", + "Kite" + ] + }, + { + word: "Ice Cream", + forbidden: [ + "Cold", + "Summer", + "Sweet", + "Snack", + "Cone" + ] + }, + { + word: "Foreigner", + forbidden: [ + "Teacher", + "Different", + "Outside", + "Country", + "Travel" + ] + }, + { + word: "Church", + forbidden: [ + "Sing", + "Building", + "Cross", + "God", + "Speaker" + ] + }, + { + word: "Boots", + forbidden: [ + "Winter", + "Shoes", + "Warm", + "Fashion", + "Snow" + ] + }, + { + word: "Turkey", + forbidden: [ + "bird", + "Holiday", + "thanksgiving", + "Big", + "Tired" + ] + }, + { + word: "Freezer", + forbidden: [ + "Cold", + "Refrigerator", + "Ice", + "Food", + "Kitchen" + ] + }, + { + word: "Soy Sauce", + forbidden: [ + "Chinese", + "Liquid", + "Brown", + "Cooking", + "Salty" + ] + }, + { + word: "Leaf", + forbidden: [ + "Tree", + "Green", + "Fall", + "Plant", + "Page" + ] + }, + { + word: "Noun", + forbidden: [ + "Verb", + "Speech", + "Adjective", + "PERSON", + "Place" + ] + }, + { + word: "Carry", + forbidden: [ + "Hold", + "Pick Up", + "Move", + "Transport", + "Support" + ] + }, + { + word: "Taxi", + forbidden: [ + "Car", + "Public", + "Transport", + "Fare", + "City" + ] + }, + { + word: "Blossom", + forbidden: [ + "Flower", + "Young", + "Bud", + "Spring", + "Bloom" + ] + }, + { + word: "Broom", + forbidden: [ + "Sweep", + "Floor", + "Witch", + "Wooden", + "Dust" + ] + }, + { + word: "Witch", + forbidden: [ + "Broom", + "Green", + "Magic", + "Halloween", + "Powers" + ] + }, + { + word: "Fork", + forbidden: [ + "Spoon", + "Knife", + "Eat", + "Prongs", + "Divide" + ] + }, + { + word: "Parade", + forbidden: [ + "Line", + "Crowd", + "Floats", + "Gather", + "Holiday" + ] + }, + { + word: "Wedding Dress", + forbidden: [ + "White", + "married", + "Clothes", + "SPECIAL", + "Girls" + ] + }, + { + word: "Marker", + forbidden: [ + "Write", + "Draw", + "Colors", + "Children", + "Art" + ] + }, + { + word: "Wings", + forbidden: [ + "Bird", + "Chicken", + "Fly", + "Arms", + "Feathers" + ] + }, + { + word: "Pilot", + forbidden: [ + "Fly", + "Plane", + "Helicopter", + "Man", + "Travel" + ] + }, + { + word: "Lawyer", + forbidden: [ + "Argue", + "Defend", + "Law", + "Client", + "Crime" + ] + }, + { + word: "Purse", + forbidden: [ + "Leather", + "Bag", + "Money", + "Woman", + "Carry" + ] + }, + { + word: "Alligator", + forbidden: [ + "Crocodile", + "Green", + "Animal", + "Teeth", + "Florida" + ] + }, + { + word: "Orange", + forbidden: [ + "Color", + "Fruit", + "Juicy", + "Citrus", + "Red" + ] + }, + { + word: "Makeup", + forbidden: [ + "Face", + "Mascara", + "Lipstick", + "Girls", + "Beautiful" + ] + }, + { + word: "Tutor", + forbidden: [ + "Teach", + "One on One", + "Learn", + "Make Up", + "Review" + ] + }, + { + word: "Worry", + forbidden: [ + "Nervous", + "Anxiety", + "Stress", + "Scared", + "Trouble" + ] + }, + { + word: "Moose", + forbidden: [ + "Animal", + "Mammal", + "Forest", + "Antlers", + "Hunting" + ] + }, + { + word: "Shampoo", + forbidden: [ + "Conditioner", + "Lather", + "Wash", + "Hair", + "Shower" + ] + }, + { + word: "Bridge", + forbidden: [ + "Cross", + "River", + "Build", + "Over", + "Connect" + ] + }, + { + word: "Nervous", + forbidden: [ + "Anxious", + "Test", + "Difficulty", + "Pressure", + "Scared" + ] + }, + { + word: "Camel", + forbidden: [ + "Humps", + "Desert", + "Animal", + "Water", + "Cigarette" + ] + }, + { + word: "Brush", + forbidden: [ + "Comb", + "Hair", + "Bristles", + "Wooden", + "Stroke" + ] + }, + { + word: "Librarian", + forbidden: [ + "Books", + "Library", + "School", + "Job", + "Quiet" + ] + }, + { + word: "Liberty", + forbidden: [ + "Freedom", + "Statue", + "Power", + "Choose", + "Decide" + ] + }, + { + word: "Radio", + forbidden: [ + "Listen", + "Music", + "AM", + "FM", + "News" + ] + }, + { + word: "Shout", + forbidden: [ + "Yell", + "Loud", + "Speak", + "Angry", + "Danger" + ] + }, + { + word: "Unlock", + forbidden: [ + "Key", + "Door", + "Box", + "Safe", + "Hole" + ] + }, + { + word: "Pear", + forbidden: [ + "Apple", + "Fruit", + "Shape", + "Tree", + "Juice" + ] + }, + { + word: "Jump", + forbidden: [ + "Leap", + "Up", + "Down", + "Excited", + "Action" + ] + }, + { + word: "Glove", + forbidden: [ + "Hand", + "Cold", + "Winter", + "Disposable", + "Mitten" + ] + }, + { + word: "Tornado", + forbidden: [ + "Storm", + "Dorothy", + "Swirl", + "Wind", + "Blow" + ] + }, + { + word: "Melt", + forbidden: [ + "Soft", + "Warm", + "Ice", + "Heat", + "Liquid" + ] + }, + { + word: "Mature", + forbidden: [ + "Old", + "Wise", + "Develop", + "Grown", + "Advance" + ] + }, + { + word: "Daisy", + forbidden: [ + "White", + "Yellow", + "Flower", + "Duck", + "Field" + ] + }, + { + word: "Custom", + forbidden: [ + "Culture", + "Way", + "Tradition", + "Behave", + "Society" + ] + }, + { + word: "Curtain", + forbidden: [ + "Red", + "Window", + "Light", + "Cloth", + "Play" + ] + }, + { + word: "Cruel", + forbidden: [ + "Mean", + "Angry", + "Unkind", + "Pain", + "Suffering" + ] + }, + { + word: "Milk", + forbidden: [ + "White", + "Liquid", + "Drink", + "Bones", + "Cow" + ] + }, + { + word: "Politics", + forbidden: [ + "Law", + "President", + "Leaders", + "Country", + "Citizen" + ] + }, + { + word: "Guitar", + forbidden: [ + "Instrument", + "Play", + "Strings", + "Strum", + "Music" + ] + }, + { + word: "Chalk", + forbidden: [ + "White", + "Dust", + "Teach", + "Blackboard", + "Erase" + ] + }, + { + word: "Bottle", + forbidden: [ + "Feed", + "Baby", + "Glass", + "Juice", + "Water" + ] + }, + { + word: "Table", + forbidden: [ + "Eat", + "Chairs", + "Legs", + "Study", + "Wooden" + ] + }, + { + word: "Distance", + forbidden: [ + "Length", + "Mile", + "Meter", + "Space", + "Far Away" + ] + }, + { + word: "Elderly", + forbidden: [ + "Old", + "Nurse", + "Aged", + "Adult", + "Health" + ] + }, + { + word: "Fish", + forbidden: [ + "Swim", + "Gills", + "River", + "Eat", + "Catch" + ] + }, + { + word: "Famous", + forbidden: [ + "Popular", + "Known", + "Important", + "Recognize", + "Position" + ] + }, + { + word: "Train", + forbidden: [ + "Ride", + "Travel", + "Cheap", + "Railroad", + "Choo-Choo" + ] + }, + { + word: "Needle", + forbidden: [ + "Haystack", + "Sharp", + "Small", + "Metal", + "Sew" + ] + }, + { + word: "Joy", + forbidden: [ + "Happy", + "Celebrate", + "Excited", + "Pleasure", + "Feeling" + ] + }, + { + word: "Superman", + forbidden: [ + "Fly", + "Hero", + "Bird", + "Plane", + "Clark Kent" + ] + }, + { + word: "Sun", + forbidden: [ + "Warm", + "Yellow", + "Light", + "Solar", + "Planet" + ] + }, + { + word: "Monkey", + forbidden: [ + "Swing", + "Banana", + "Zoo", + "Brown", + "Animal" + ] + }, + { + word: "Shark", + forbidden: [ + "Swim", + "Teeth", + "Dangerous", + "Ocean", + "Sea" + ] + }, + { + word: "Window", + forbidden: [ + "Curtain", + "Glass", + "Screen", + "Home", + "Door" + ] + }, + { + word: "Desk", + forbidden: [ + "Homework", + "Sit", + "Wooden", + "Classroom", + "Student" + ] + }, + { + word: "Coffee", + forbidden: [ + "Tea", + "Brown", + "Drink", + "Caffeine", + "Starbucks" + ] + }, + { + word: "Candle", + forbidden: [ + "Bright", + "Light", + "Wax", + "Burn", + "Wick" + ] + }, + { + word: "Santa", + forbidden: [ + "Fat", + "Man", + "Christmas", + "Claus", + "Gifts" + ] + }, + { + word: "Bells", + forbidden: [ + "Ring", + "Silver", + "Hear", + "Metal", + "Gold" + ] + }, + { + word: "Heart", + forbidden: [ + "Shape", + "Beat", + "Broken", + "Body", + "Love" + ] + }, + { + word: "Headache", + forbidden: [ + "Pound", + "Beat", + "Medicine", + "Sick", + "Rush" + ] + }, + { + word: "Discuss", + forbidden: [ + "Talk", + "Debate", + "Ideas", + "Oppose", + "Share" + ] + }, + { + word: "Debate", + forbidden: [ + "Discuss", + "Sides", + "Talk", + "Oppose", + "Win" + ] + }, + { + word: "Eraser", + forbidden: [ + "Clean", + "Pencil", + "Fix", + "Mistake", + "Change" + ] + }, + { + word: "Prisoner", + forbidden: [ + "Jail", + "Convict", + "Murder", + "Crime", + "Bad" + ] + }, + { + word: "Zoo", + forbidden: [ + "Place", + "Animals", + "Tigers", + "Elephants", + "Cage" + ] + }, + { + word: "Bank", + forbidden: [ + "Robbery", + "Money", + "Safe", + "Deposit", + "Invest" + ] + }, + { + word: "Caterpillar", + forbidden: [ + "Crawl", + "Insect", + "Legs", + "Tree", + "Butterfly" + ] + }, + { + word: "Pregnant", + forbidden: [ + "Baby", + "Fat", + "Belly", + "Life", + "9 Months" + ] + }, + { + word: "Towel", + forbidden: [ + "Dry", + "Dishes", + "Shower", + "Soft", + "Beach" + ] + }, + { + word: "Promise", + forbidden: [ + "Vow", + "Pledge", + "Expect", + "Reassure", + "Marry" + ] + }, + { + word: "Ugly", + forbidden: [ + "Duck", + "Beautiful", + "Hideous", + "Deformed", + "Butt" + ] + }, + { + word: "Stupid", + forbidden: [ + "Smart", + "Clever", + "Dull", + "Dumb", + "Intelligent" + ] + }, + { + word: "Spoon", + forbidden: [ + "Fork", + "Knife", + "Eating", + "Soup", + "Metal" + ] + }, + { + word: "Paris", + forbidden: [ + "Romance", + "France", + "Eiffel", + "Tower", + "French" + ] + }, + { + word: "Gold", + forbidden: [ + "Silver", + "Metal", + "Rich", + "Money", + "King" + ] + }, + { + word: "London", + forbidden: [ + "Big Ben", + "England", + "Europe", + "Capital", + "U.K." + ] + }, + { + word: "Camping", + forbidden: [ + "Tent", + "Outside", + "Fire", + "Roast", + "Sleep" + ] + }, + { + word: "Theater", + forbidden: [ + "Movie", + "Seats", + "Popcorn", + "Cinema", + "Drama" + ] + }, + { + word: "Death", + forbidden: [ + "Die", + "Old", + "Murder", + "Cause", + "Life" + ] + }, + { + word: "Flag", + forbidden: [ + "Wave", + "Fly", + "Old Glory", + "Pole", + "Fabric" + ] + }, + { + word: "Describe", + forbidden: [ + "Talk About", + "Words", + "Characteristic", + "Quality", + "Depict" + ] + }, + { + word: "Fly", + forbidden: [ + "Wings", + "Bird", + "Airplane", + "Insect", + "Bee" + ] + }, + { + word: "Knee", + forbidden: [ + "Bend", + "Joint", + "Leg", + "Move", + "Cap" + ] + }, + { + word: "Web", + forbidden: [ + "Internet", + "Spider", + "World", + "Wide", + "Net" + ] + }, + { + word: "Worm", + forbidden: [ + "Crawl", + "Animal", + "Wriggle", + "Slimy", + "Rain" + ] + }, + { + word: "Machine", + forbidden: [ + "Parts", + "Device", + "Metal", + "Power", + "Cog" + ] + }, + { + word: "Waitress", + forbidden: [ + "Service", + "Restaurant", + "Food", + "Bring", + "Helper" + ] + }, + { + word: "Wash", + forbidden: [ + "Clean", + "Shower", + "Dishes", + "Hair", + "Laundry" + ] + }, + { + word: "Biology", + forbidden: [ + "Science", + "Subject", + "Life", + "School", + "Chemistry" + ] + }, + { + word: "Chemistry", + forbidden: [ + "Physics", + "Chemicals", + "School", + "Science", + "Subject" + ] + }, + { + word: "History", + forbidden: [ + "Politics", + "Past", + "Events", + "Finished", + "Happen" + ] + }, + { + word: "Magazine", + forbidden: [ + "Pages", + "Book", + "Entertain", + "News", + "Read" + ] + }, + { + word: "Unfair", + forbidden: [ + "Unjust", + "Fair", + "Equal", + "Just", + "Unreasonable" + ] + }, + { + word: "CD", + forbidden: [ + "Disc", + "Music", + "Listen", + "Play", + "Computer" + ] + }, + { + word: "Immediately", + forbidden: [ + "Fast", + "Now", + "Delay", + "Rapid", + "Soon" + ] + }, + { + word: "Danger", + forbidden: [ + "Safe", + "Harm", + "Injury", + "Protect", + "Avoid" + ] + }, + { + word: "Ice", + forbidden: [ + "Cold", + "Solid", + "Water", + "Freezer", + "Skate" + ] + }, + { + word: "Salt", + forbidden: [ + "White", + "Sweet", + "Popcorn", + "Cooking", + "Flavor" + ] + }, + { + word: "Stand", + forbidden: [ + "Sit", + "Floor", + "Feet", + "Up", + "Take" + ] + }, + { + word: "Bull", + forbidden: [ + "Ride", + "Red", + "Male", + "Horns", + "Charge" + ] + }, + { + word: "Peaceful", + forbidden: [ + "Harmony", + "Calm", + "Quiet", + "Tranquil", + "Violent" + ] + }, + { + word: "Normal", + forbidden: [ + "Strange", + "Standard", + "Typical", + "Status Quo", + "Weird" + ] + }, + { + word: "Original", + forbidden: [ + "First", + "Unique", + "Special", + "Standard", + "Early" + ] + }, + { + word: "Magic", + forbidden: [ + "Wizard", + "Witch", + "Power", + "Trick", + "Show" + ] + }, + { + word: "Naughty", + forbidden: [ + "Bad", + "Behavior", + "Good", + "Rude", + "Disobedient" + ] + }, + { + word: "Rescue", + forbidden: [ + "Save", + "Hero", + "Danger", + "Safe", + "Help" + ] + }, + { + word: "Match", + forbidden: [ + "Fire", + "Strike", + "Pair", + "Together", + "Equal" + ] + }, + { + word: "Hippo", + forbidden: [ + "Fat", + "Animal", + "Africa", + "Large", + "River" + ] + }, + { + word: "Fairy Tale", + forbidden: [ + "Prince", + "Princess", + "Magic", + "Queen", + "Story" + ] + }, + { + word: "Literature", + forbidden: [ + "Works", + "American", + "British", + "Books", + "Written" + ] + }, + { + word: "Globe", + forbidden: [ + "Earth", + "World", + "Model", + "Geography", + "Oceans" + ] + }, + { + word: "Cookbook", + forbidden: [ + "Food", + "How To", + "Kitchen", + "Manual", + "Guide" + ] + }, + { + word: "Continent", + forbidden: [ + "Ocean", + "Asia", + "Land", + "Seven", + "Earth" + ] + }, + { + word: "Director", + forbidden: [ + "Movie", + "Producer", + "In Charge", + "Supervise", + "Set" + ] + }, + { + word: "Advice", + forbidden: [ + "Guide", + "Wise", + "Recommend", + "What to do", + "Help" + ] + }, +]; diff --git a/data/topics.js b/data/topics.js new file mode 100644 index 0000000..935c1ed --- /dev/null +++ b/data/topics.js @@ -0,0 +1,768 @@ +window.dataTopics = [ + // Age + "How are you doing?", + "How do you usually feel on your birthday?", + "What’s the best age to be?", + "Have you ever had to prove your age?", + "Is there a generation gap between you and your parents?", + "What’s the best age for leaving parents’ home?", + "Are young women usually more mature than young men?", + "Do men remain attractive longer than women?", + "Is love between people of different generations possible?", + "What age limits should be changed?", + "What annoying things do people younger or older than you do?", + "Have you ever lied about your age?", + "Why does getting older usually depress people?", + "Is friendship between people of different generations possible?", + "What things can old people teach young ones?", + "What’s the best age for retirement?", + "Should men retire older than women?", + "Should old people be forced to retire?", + "What problems can ‘ageing population’ cause?", + // Architecture + "What kind of buildings do you like?", + "What kind of buildings don’t you like?", + "Do you prefer old architecture or modern one?", + "Can you describe the biggest building you’ve ever seen?", + "Can you describe the oldest building you’ve ever seen?", + "Can you describe the most beautiful building you’ve ever seen?", + "Can you describe the most unusual building you’ve ever seen?", + "What city impressed you most of all with its architecture?", + "Which period of history has the best architecture?", + "Why have ancient buildings stood for thousands of years while modern ones have not?", + "Why is it necessary to protect old buildings?", + "What role does architecture play in modern society?", + "What would you like to change about buildings in your town?", + "What can your town’s authorities do to improve its architecture?", + "What’s more important: building appearance or comfort for people?", + "How much does architecture affect a person’s mind?", + "What changes of architecture took place in the past 20 years?", + "What will architecture be like in 20 years from now?", + // Beauty + "Who is the most beautiful person in the world?", + "Is beauty the same for every person?", + "Can you name some celebrities who are considered to be beautiful, but you do not think so?", + "Who decides what is beautiful?", + "Is it possible to measure beauty?", + "What do you think about beauty pageants?", + "Do models portray an unrealistic image of beauty?", + "How much does advertising make us to think what is beautiful?", + "Do you believe cosmetics companies’ advertisements?", + "Do people spend too much time and money on beauty?", + "What kind of people worries about their beauty more than others?", + "What do you think of plastic surgery?", + "Does plastic surgery always make people look better?", + "How much is beauty important for success in life?", + "What are the advantages of being beautiful?", + "What are the disadvantages of being beautiful?", + "Which is more important: inner or outer beauty?", + "How would the world be different if we never consider beauty?", + // Conflicts + "What is a conflict?", + "Can you remember your first conflict?", + "What kind of conflicts can take place at school?", + "What kind of conflicts can happen at work?", + "What kind of conflicts can occur in a family?", + "What kind of conflicts can take place between neighbours?", + "What kind of conflicts can happen between countries?", + "Are conflicts inevitable?", + "What are the advantages of a conflict?", + "What are the disadvantages of a conflict?", + "Why do some people confront more than others?", + "Why do some people create conflicts?", + "Do you usually try to avoid conflicts?", + "Can you tell about your last conflict?", + "What are the constructive ways to solve a conflict?", + "What are the deconstructive ways to solve a conflict?", + "How do you feel about involving third-party mediation?", + "What would life be like without conflicts?", + // Environment + "How much do you worry about the environment?", + "How has the environment changed since your childhood?", + "Are you interested in reading articles or watching TV programmes about environmental problems?", + "What are the main environmental problems in your country?", + "How do you feel about recycling?", + "Which kind of energy do you support?", + "What are the biggest environmental problems in the world?", + "Are the recent natural disasters the result of human influence on the environment?", + "Do you see any changes in the weather or climate of your place?", + "What are factors that have contributed to global warming?", + "What can governments do to save our environment?", + "How can we protect the environment and at the same time improve people’s standard of living?", + "What can individuals do to help the environment?", + "Have you ever done anything to help the environment?", + "What do you think about environmental groups like Greenpeace?", + "What can be done to increase the awareness about environmental problems?", + "Is the planet being gradually damaged?", + "How will the world look like in 100 years?", + // Fame + "Who is the most famous person in the world?", + "Which celebrity annoys you?", + "Are you interested in stars’ private lives?", + "Can you tell some news about any celebrity?", + "Does stars’ life affect their personality?", + "Do stars have a big influence on people’s minds?", + "Which celebrity is a good role model for you?", + "Which celebrity is a bad role model for you?", + "Did you have an icon at your teen age?", + "Should stars have responsibility towards their fans?", + "Do you think stars are overpaid?", + "Would you like to be famous?", + "What are the advantages of being famous?", + "What are the disadvantages of being famous?", + "Have you ever met anyone famous?", + "If you could have dinner with someone famous, who would you choose?", + "Do people nowdays become famous for the same reasons as 100 years ago?", + "Which famous people living today might still be remembered in 100 years?", + // Health + "How conscious are you about your health?", + "What things might damage your health?", + "Do you fell you should give up something to protect your health?", + "What do you do to stay healthy?", + "Do you ever read articles or watch TV programmes about health?", + "Do you usually take medicine when you are sick?", + "Do you usually go to a doctor when you get a cold?", + "How often do you have a health check?", + "What are your experiences of hospitals?", + "Have you ever been to a hospital in another country?", + "How could hospitals be made better places to visit and stay in?", + "Which is better: private and public health care?", + "What do you think about alternative medicine?", + "Who is more responsible for your health: you or the government?", + "Is the health care in your country getting better or worse?", + "What are the health care problems in your country?", + "Are people today healthier or unhealthier than 50 years ago?", + "What health problems can the mankind face in the future?", + // Law + "What laws in your country do you like?", + "What laws in your country don’t you like?", + "Is anything that is not prohibited by law allowed?", + "Is it OK sometimes to break the law?", + "Have you ever broken the law?", + "Have you ever got into trouble for breaking the law?", + "Have you ever used a lawyer?", + "Have you ever been in a court?", + "What should be done to improve the courts?", + "Are there different laws for the rich and the poor?", + "Would you like to be a lawmaker?", + "What laws would you introduce?", + "What laws would you take from other countries?", + "What laws would you never take from other countries?", + "What’s the craziest law you have ever heard about?", + "How do you feel about death penalty?", + // Politics + "How much are you interested in politics?", + "Can you tell some recent political news?", + "How often do you read articles or watch TV programmes on political issues?", + "Do you like talking about politics?", + "What are the main political problems in your country?", + "What do you think about your country’s political system?", + "What do you think about your country’s politicians?", + "What qualities make a good political leader?", + "Did you vote in the last election?", + "How do you decide who or what to vote for?", + "How have your political views changed during your lifetime?", + "How is it possible to get more people to vote?", + "How do you feel about stars who run for a position in politics?", + "Would you like to work in politics?", + "If you were a politician, what problems would you focus on?", + "What are the main political issues in the world?", + "What can cause a war?", + "What would the world be like without politics?", + // School + "Did you enjoy going to school?", + "Were you a good or a bad pupil?", + "What were your favourite subjects?", + "What were your favourite teachers?", + "What did you use to do at break time?", + "Was there any bullying at your school?", + "Did you ever get in trouble at school?", + "What was the most useful thing you learnt at school?", + "How have schools changed since your childhood?", + "How old should children be when they start and finish school?", + "Should school children wear uniform?", + "Should religion be taught at school?", + "What should children be taught at school to be prepared for ‘real world’?", + "What do you think about private education?", + "What do you think about educating boys and girls in separate schools?", + "What should be done to improve the quality of education in schools?", + "What will schools be like in 20 years?", + // Sport + "What is your favourite sport?", + "What sport do you hate?", + "Are you mostly a sport watcher or doer?", + "Should everyone practice sport?", + "Who’s your favourite athlete?", + "What qualities must a professional sportsperson have?", + "Should children be trained hard?", + "What makes a good trainer?", + "Do you know all the rules of your favourite sport?", + "Do you prefer watching sports live or on TV?", + "Do you prefer watching sports alone or with somebody?", + "What do you think about sports bars?", + "How do you feel about sports fans?", + "What do you think about extreme sports?", + "How do you feel about gambling on sports events?", + "What are the advantages for a country to hold sports competitions?", + "What are the disadvantages for a country to hold sports competitions?", + "What would life be like without sport?", + // Stress + "Are you stressed at the moment?", + "Is speaking English stressful for you?", + "How often do you get stressed?", + "Do you get stressed easily?", + "How do you feel that you are suffering from stress?", + "Does stress make it hard for you to think or eat?", + "How do you interact with others when you are under a lot of stress?", + "What situations stress you most of all?", + "What is the most stressful experience you have ever had?", + "What is the most stressful time of your life?", + "What do you do when you have stress?", + "Do you prefer to relax or be active when you are stressful?", + "How do you reduce stress in your life?", + "How do you help your family and friends to recover stress?", + "Is life in general becoming more or less stressful?", + "How dangerous stress is?", + "Can stress be useful?", + "What would life be like without any stress?", + // Success + "What is success?", + "Who is the most successful person?", + "Do you like reading or watching stories of success?", + "Are successful people happier than others?", + "How do you measure success?", + "Which does success mostly depend on: luck or hard-working?", + "What are the advantages of being successful?", + "What are the disadvantages of being successful?", + "How important success for you?", + "How successful are you compared with your friends?", + "Can you remember you first success?", + "Can you tell about the biggest success in your life?", + "Can you tell about your last success?", + "How often do you feel successful?", + "Can you feel successful within you, without recognizing by others?", + "Do you usually notice small successes you have every day?", + "Is it possible to teach success?", + "What would life be like if we didn’t recognize success?", + // Work + "Why do we need to work?", + "What job did you dream of in your childhood?", + "Did you choose your current job by economic necessity?", + "What do you like about your present job?", + "What do you dislike about your present job?", + "What your working conditions would you like to change?", + "Are you looking forward to your retirement?", + "Do you ever imagine being someone else?", + "What is the most exciting job?", + "What is the most boring job?", + "Are some jobs overpaid?", + "Is it better to be a boss or a subordinate?", + "Do you know any workaholic?", + "Who are better workers: men or women?", + "Is housework a real work?", + "Who is more responsible for employment: a government or a person?", + "If you had a huge amount of money, would you still work?", + "What would life be like if we did not have to work?", + // Internet + "How has the Internet changed society?", + "When did you first use the Internet?", + "How can the Internet be improved?", + "Do you think our lives have been improved by the Internet?", + "Do you have any ideas or ambitions to start an Internet company?", + "What problems does the Internet create? What problems does it solve?", + "Do you think that it is important for schools to have Internet access? Why?", + "Can you believe all the information that is published (available) on the Internet?", + "Do you think that the Internet will replace Libraries?", + "What is Copyright? How do we break Copyright law on the Internet?", + "Many Universities are now offering online courses. Is it a good or bad thing?", + "Do you think that the Internet usage is an anti-social activity?", + "How can we stop students from «cutting and pasting» from the Internet when they do their assignments?", + "How can the Internet help you learn English? Do you take advantage of this?", + "How many hours a week do you use the Internet?", + "Do you prefer watching TV or surfing the Internet in your free time?", + "Do you use the Internet mostly for work or for pleasure?", + "What websites do you visit the most often?", + "What annoys you about the Internet?", + "Are you worried to give your personal information to websites?", + "Do you think you spend too much time on the Internet?", + "Do you know anybody who is, in your opinion, an Internet addict?", + "Is the Internet making people lazier or more stupid?", + "Do we rely too much on the Internet?", + "When did you first get on the Internet?", + "Does the Internet bring more use or harm to children?", + "Should the Internet be regulated to protect children?", + "Can the Internet help to solve some global problems?", + "How might the Internet develop in the future?", + "Will the Internet replace all other media one day?", + "Is the Internet the most important invention of your lifetime?", + "Can you imagine your life without the Internet?", + // Information + "What springs to mind when you hear the word ‘information’?", + "What’s the difference between information and knowledge?", + "Do you think we get too much information every day?", + "How much useless information do you think you’ve learned?", + "Is it important to know a lot of information in today’s world?", + "Do you have more information than your grandparents?", + "What topics would you like to know more information about?", + "What do you think ‘information economics’ is?", + "What is the information superhighway and why is it important?", + "Are you happy to be living in the ‘Information Age’?", + "Is there freedom of information in your country?", + "What personal information about you should be confidential?", + "What has the Internet done for information?", + "What kind of information is dangerous in the wrong hands?", + // Cultural Differences + "What do you think is interesting about your culture?", + "When people from other countries think about your culture, what do they usually think of?", + "What has surprised you when you've met people from other countries?", + "What do you like about your culture?What don't you like about your culture?", + "How do young people in your culture behave differently from older people?", + "Are there many people of different cultures in your country? Are you friends with any?", + "Have you ever felt confused by the actions of someone from another culture?", + "Who in your culture do you admire most?", + "What is in your culture that you most proud about? Why do you think culture is important?", + "If you could change one thing about your culture, what would it be?", + "Would you ever consider marrying or dating someone from another culture?", + "Would you ever consider living permanently in a country other than your home country? Why or why not?", + // Beach + "What do people do at the beach?", + "When was the last time you went to the beach?", + "Have you ever been night-swimming?", + "Do you like to suntan? Do you think sunblock is important?", + "Have you ever played sports on the beach? Which sports have you played?", + "Have you ever collected seashells?", + "What did you do with the shells that you collected?", + "Have you ever been fishing on the beach?", + "How do you keep your wallet safe while you are swimming?", + "Why do so many people want to live on beachfront land?", + "What are some dangers of living on beachfront property?", + "Do you prefer a calm sea or do you prefer big waves?", + "Are there life guards at the beaches in your country?", + // Happiness + "What is happiness for you? Are you a happy person?", + "What do you think is the color for happiness?", + "Do you think that happiness lies within you? Or does it depend upon other people and external things?", + "Can money buy happiness?", + "Is happiness a state of mind?", + "What makes you feel happy?", + "What are the three most important things for you to be happy?", + "Are single people happy?", + "Would you be happier with a soul mate or single?", + "Does having an animal/pet make you happy?", + "What is the effect that animals/pets have on people to make them feel happy?", + "What makes you happy?", + "When was the happiest time of your childhood?", + "Can you be happy if you are rich / poor?", + "How can you become happy again when you are sad?", + "Is happiness a goal?", + "How often do you feel really happy?", + "Are the people in your country generally very happy?", + "Are you very happy most of the time?", + "What makes you unhappy?", + "How happy are you compared with your friends?", + "Do you wake up happy every morning?", + "Do you agree that older people are less happy?", + "Does your happiness change during different times of the day, week, month or year?", + "What is or was the happiest time of your life?", + "Do you need money to be happy?", + "Do you think some nations are happier than others?", + "What is missing in your life that would make you very happy?", + "Why are teenagers some of the happiest people in the world?", + // Space + "Do you think it is a waste of money to explore space?", + "Do you think that there is life on other planets?", + "How many planets are there in our galaxy? Can you put the names of the planets in order?", + "If you had the chance to go into space, would you take it?", + "Do you think that one day a human being will walk on Mars?", + "Do you or anyone in your family remember the Moon landing?", + "Some people say that the Moon landing was a hoax. What do you think?", + "Do you think that Earth has been visited by extraterrestrials?", + "Do you like movies about space and astronauts? What is your favorite one?", + // The Unexplained + "Have you or a friend ever gone to a fortune teller? If so, what happened?", + "Do you think that dreams can help us solve problems?", + "Have you ever dreamt something that later came true?", + "Do you think that some people can predict the future?", + "Is the belief in UFOs, aliens, physic powers, growing because belief in religion is dying?", + "Do you believe the predictions contained within your horoscope will come true?", + "Has anything ever happened to you that you cannot explain?", + "Do you believe in reincarnation or that you only live once?", + "Have you ever felt that you knew someone the first time you met them?", + "Have you ever visited a city for the first time and knew exactly where things were?", + "Do you believe that UFOs (Unidentified Flying Objects) exist? Why?", + "Do you believe there is life on other planets?", + "What is the most frightening thing that has ever happened to you?", + "If you had the chance to spend the night in a haunted house would you?", + "Do you know of anyone who was miraculously healed of a disease?", + "If you could travel back or forward in time what year would you choose? Why?", + "Do you believe you can hypnotize a person and make them do things they don't want to?", + "Have you ever known something was going to happen before it did? How do you explain?", + "Do you believe in the Loch Ness Monster in Scotland? Why?", + "What about ape-men creatures like the Yeti in Tibet or Bigfoot in America?", + "Do you think people can move objects without touching them (telekinesis)?", + "Do you think people can read your thoughts and know your secrets (telepathy)?", + "If you could develop just one special power which one would you choose? Why?", + "Is walking on hot coals (fire walking) something everyone can do? Why or why not?", + // Animals + "What’s your favourite animal?", + "Have you got a pet?", + "What are the advantages of having a pet?", + "What are the disadvantages of having a pet?", + "Are any pets pests?", + "What can children learn by having a pet?", + "Should people spend a lot of money on pets instead of helping people in need?", + "Do you like visiting zoos?", + "Is keeping animals in zoos cruel?", + "What do you think about using animals in circuses?", + "How do you feel about hunting?", + "What do you think about blood sports?", + "How do you feel about using animals for medical researches?", + "Are you afraid of stray dogs?", + "In what cases an animal should be put down?", + "Do animals have souls?", + "Do animals have a sense of past and future?", + "What’s the biggest difference between people and animals?", + // Music + "How much time do you spend on listening to music?", + "What kind of music do you like?", + "What kind of music don’t you like?", + "Do you like singing?", + "Do you like dancing?", + "Can you play any musical instrument?", + "How does music make you feel?", + "Can you concentrate on other things while listening to music?", + "Can you fall asleep while listening to music?", + "Can music affect unborn children?", + "Can music heal sick people?", + "Can animals enjoy music?", + "Why is music so important to culture?", + "Do people from different culture react to the same music in different ways?", + "How have your musical tastes changed since your teenage years?", + "Will your favourite music in 20 years be the same as today?", + "What will the next piece of music technology?", + "What would the world be like without music?", + // News + "Where do you usually get the news from?", + "How often do you read newspapers?", + "Do you ever buy newspapers?", + "Do you prefer newspapers or magazines?", + "What’s in the news today?", + "How is it important to stay up to date with current affairs?", + "Do you like being up to date with current affairs?", + "Do you like discussing the news with your friends and colleagues?", + "What do you think about people who invent news about themselves?", + "What do you think about reporters who invent news?", + "What annoys you about reporting the news in your country?", + "What would you like to see more in the news?", + "What would you like to see less in the news?", + "How much media influence people’s minds?", + "Should some media be banned?", + "Will there still be newspapers in 100 years?", + "Have you ever been involved in a story that was featured in the news?", + "Can you imagine your life without the news?", + // Sleep + "How many hours of sleep do you usually get?", + "Do you fall asleep easily or does it take you a while?", + "What do you do if you can’t fall asleep?", + "Do you like reading a book or watching TV in bed?", + "Can you fall asleep while reading a book or watching TV?", + "Are you a heavy sleeper or do you wake up easily?", + "What can awake you at night?", + "Can you remember your dreams when you wake up?", + "Have you ever dreamt something that later came true?", + "Do you often have the same dream?", + "Do you believe that dreams help us to predict future?", + "Do you ever suffer from nightmare?", + "Do you believe that it’s possible to interpret dreams?", + "Do you need an alarm clock to wake up?", + "What’s the first thing you do when you wake up?", + "Do you ever oversleep?", + "Do you sometimes have a nap at lunchtime or at another time of day?", + "Do you wish you could sleep more?", + // Technology + "Are you an early adopter of a new technology?", + "What’s the most advanced piece of technology that you own?", + "Are you frightened or worried about using any new technology?", + "What modern gadget couldn’t you live without?", + "Do people work more or less nowdays than 50 years ago?", + "What kind of jobs might disappear in the future?", + "Are people healthier or unhealthier now than 50 years ago?", + "Will your job be the same in 10 years?", + "What is the most important invention of your lifetime?", + "How has your home changed since your childhood?", + "How will homes change in the next 20 years?", + "What might your mobile phone do in 10 years?", + "How will cars change in the next 20 years?", + "Would you like a car that drives itself?", + "When will we get flying cars?", + "What time saving gadget do you wish someone would invent?", + "Will humans make contacts with intelligent life from another planets?", + "What do you want to see in your lifetime?", + // Time + "Are you good at managing time?", + "Do you wear a watch?", + "How long can you do without knowing the time?", + "Do you use a diary?", + "Are you good at meeting deadlines?", + "Are you usually on time for appointments?", + "Do you prefer to arrive exactly on time or a bit earlier?", + "What do you do if you arrive too early?", + "How much does waiting bother you?", + "What’s a waste of time for you?", + "When does time go slowly for you?", + "When does time go quickly for you?", + "Do you prefer being busy or having an easy schedule?", + "How are you going to spend your time when you retire?", + "What would you do if you had an extra hour a day?", + "What would you do if you could stop time?", + "If you had a pill to live 1000 years, would you take it?", + "If you had a time machine, which period would you visit?", + // Weather + "What’s your favourite kind of weather?", + "What do you like doing when the weather is good?", + "What do you like doing when the weather is bad?", + "How does the weather affect your health?", + "How does the weather affect your mood?", + "Do you know the weather forecast for the next week?", + "Why is it important to know future weather conditions?", + "Do you like to have small talks about the weather?", + "How much do you depend on weather reports?", + "How do you feel about the weather in your country?", + "What kind of climate do you prefer when choosing a place for a holiday?", + "Have you ever thought about moving to a country with a different climate?", + "What’s the hottest temperature you've ever experienced?", + "What’s the coldest temperature you've ever experienced?", + "Have you ever experienced extreme weather conditions?", + "How can extreme weather conditions affect the economy of a country?", + "Are we losing our four distinct seasons in recent years?", + "If you could abolish one form of the weather, what would it be?", + // Advertising + "How do you feel about advertising?", + "Are you easily persuaded to buy something after seeing or hearing an advertisement?", + "What kind of advertisements attracts your attention?", + "What’s the best advertisement you’ve ever seen?", + "What’s the most shocking advertisement you’ve ever seen?", + "What’s the funniest advertisement you’ve ever seen?", + "What makes an advertisement memorable?", + "Is advertising an art?", + "Can your favourite celebrity to persuade you to buy a product?", + "Are children and teenagers more influenced with advertising than adults?", + "Do you usually accept advertising fliers offered to you?", + "What’s the best form of advertising?", + "Have you ever placed an advertisement?", + "Have you ever been angry about an advertisement?", + "Should some advertisements be banned?", + "Should alcohol and tobacco companies be allowed to advertise?", + "What regulations should be applied to advertisements to protect consumers?", + "What would the world be like without advertising?", + // Pre-Intermediate + // Art + "What kind of art do you like?", + "What kind of art don’t you like?", + "Do you enjoy visiting art galleries?", + "When did you last visit an art gallery?", + "Do you have a favourite piece of art?", + "Do you have a favourite artist?", + "Have you ever seen any famous works of art?", + "Have you ever been shocked by a piece of art?", + "Do you always believe what art critics say?", + "What do you think of modern art?", + "What do you think of street art?", + "What do you think of body art?", + "Do you have any artistic talents?", + "Should children study art at school?", + "Have you got any pictures at your walls?", + "If you could buy a great work of art, what would it be?", + "Should people buy expensive pieces of art instead of helping people in need?", + "What would life be like without art?", + // Books + "Are you reading a good book at the moment?", + "What kind of books do you like?", + "What kind of books don’t you like?", + "What’s your favourite book?", + "Do you sometimes reread your favourite books?", + "Do you ever recommend your favourite books to your friends?", + "How do you decide what to read?", + "Can you judge a book by its cover?", + "Have you ever read a book that, in your opinion, was overrated?", + "Do you usually finish books you don’t like at first?", + "Can you remember your first book?", + "Have you ever read a book that had a big effect on your life?", + "When did you last visit a library?", + "Will libraries disappear in the future?", + "Do you ever order books online?", + "Do you prefer e-books or traditional ones?", + "What do you think about pirating e-books?", + "Will e-books replace traditional ones in the future?", + // Cinema + "How often do you go to the cinema?", + "Do you prefer watching films at home or at the cinema?", + "What kind of films do you like?", + "What kind of films don’t you like?", + "Do you prefer old films or modern ones?", + "Who are your favourite actors?", + "Do you have a favourite producer?", + "How do you decide what to watch?", + "Do you buy films on DVD?", + "Do you download films from the Internet?", + "Do your prefer watching a film alone or with somebody?", + "Can you remember being shocked by a film?", + "What film have you seen the most times?", + "What’s the funniest film you've ever seen?", + "What’s the scariest film you've ever seen?", + "Have you ever walked out of a cinema before the film finished?", + "Have you ever seen a film that had a big effect on your life?", + "How will the cinema change in the next 20 years?", + // Clothes + "What kind of clothes do you like?", + "What kind of clothes don’t you like?", + "What’s your favourite piece of clothing?", + "What do you never wear?", + "What do you wear now that you never wore 10 years ago?", + "What did you wear 10 years ago that you never wear now?", + "How long does it take you to decide what to wear when you get dressed?", + "Do you ever have any problems with clothes?", + "Do you enjoy shopping for new clothes?", + "Where do you know from what fashionable is?", + "Have you ever bought something quite expensive, but never really worn?", + "Do you ever make your own clothes?", + "How important is it to be well-dressed?", + "Do people feel different in different clothes?", + "Can you judge someone by clothes?", + "Do the clothes reflect what is inside?", + "What’s the strangest fashion you've seen?", + "What will we wear in 20 years?", + // Food + "What kind of food do you like?", + "What kind of food don’t you like?", + "Do you like fast food?", + "How often do you eat out?", + "What’s your favourite restaurant?", + "Do you ever get takeaway food?", + "Are you good at cooking?", + "Is eating mostly routine or pleasure for you?", + "What time do you usually have dinner?", + "Do you usually eat at the same time on weekdays and at weekends?", + "Do you have a healthy diet?", + "Do you care where the food you eat comes from?", + "Do you avoid any food or drinks for health reasons?", + "What do you think about vegetarians?", + "When you eat out, do you prefer something new or what you know?", + "What’s the most unusual dish you've ever tried?", + "Have your tastes changed since your childhood?", + "How has food changed over the recent years?", + // Holidays + "Do you prefer beach holidays or sightseeing ones?", + "Do you prefer travelling alone or with somebody?", + "What do you like about travelling?", + "What do you dislike about travelling?", + "How do you like to travel?", + "Do you usually take a lot of luggage or do you travel light?", + "What’s the best hotel you've ever stayed in?", + "What’s the worst hotel you've ever stayed in?", + "What can ruin a holiday?", + "Do you ever get bored when you are on holiday?", + "What do you like doing in a new place?", + "Are you good at using maps?", + "Have you ever lost being on holiday?", + "Do you usually take a lot of photos on your holidays?", + "Would you like to live somewhere that you've visited for a holiday?", + "Where was your last holiday?", + "Are you planning your next holiday?", + "If you could go anywhere in the world, where would you go?", + // Photos + "Do you like to take photos?", + "What kind of photos do you enjoy looking at?", + "What type of photos do you keep in your family's photo albums?", + "Why do people take photos?", + "Should photos be posted on the internet without permission?", + "When can taking photos be an invasion of your privacy?", + "How do you like to look at photos?", + "Do you always bring a camera wherever you go for vacation?", + "Are you a camera-shy?", + "Do you like taking photos of yourself?", + "Do you like taking photos?", + "What places have you taken for a photo?", + "Are photos important for you?", + "Do you have lots of photos at your home?", + "Do you keep photos as memories?", + "Are you photogenic? Or only attractive in person?", + "Do you have a favorite photo of you?", + // Hobby + "What is your hobby?", + "Why do people have hobbies?", + "Can you make money from doing your hobby?", + "How many hours a week do you spend on your hobby?", + "Is your hobby safe or dangerous?", + "What is a hobby?", + "Why do people need hobbies?", + "Does your hobby interfere with your work/study/personal life?", + "Do you spend money on your hobby?", + "Does your hobby influence your choice of friends?", + "Can a hobby save a child from bad peer influence?", + "Can a hobby be dangerous?", + "Have you got a hobby?", + "Which hobbies are the most expensive?", + "Which hobbies are the cheapest?", + "Which hobbies cost nothing at all?", + "Which hobbies are the most popular in your country?", + "Is hunting a hobby or a sport in your country?", + "Which hobbies are the most popular with women in your country? With men?", + "Did you have any hobbies when you were a child?", + "Are there any hobbies you would like to try?", + "Which hobbies do you think are the most difficult?", + // Procrastination + "Why do people procrastinate?", + "Who do you know that always procrastinates?", + "When is it good to procrastinate?", + "When is it really bad to procrastinate?", + "What kinds of things do you put off doing?", + "How do you feel when other people put off something you want done soon?", + "Who is the most patient person you know?", + "What's the difference between patience and procrastination?", + "Do you usually procrastinate when you have homework?", + "What can procrastinators do to change their lives?", + "What kinds of things do people often forget?", + // How often + "How often do you travel?", + "How often do you wake up in the middle of the night?", + "How often do you go to the dentist?", + "How often do you go to church?", + "How often do you eat candies?", + "How often do you go to the doctor?", + "How often do you say `I Love you` to your parents?", + "How often do you take your English book to study?", + "How often do you practice sports?", + "How often do you brush your teeth?", + "How often do you listen to music?", + "How often do you read?", + "How often do you go to the shopping mall?", + "How often do you buy clothes?", + "How often do you eat fast food?", + "How often do you have English classes?", + "How often do you go out with your friends?", + "How often do you go to the movies?", + "How often do you go for a walk?", + "How often do you use the Internet?", + // What would you + "What would you like to do in the future?", + "What would you do if you were rich?", + "What would you do if you were poor?", + "What would you do if you were the principal of your school?", + "What would you do if you could suddenly speak English?", + "What would you do if you won a lottery?", + "What would you do if you were told you had one month to live?", + "What would you do if you lost your passport?", + "What would you do if you were kidnapped?", + // Machines + "What do you think is the most important machine in your life?", + "What do you think was the most important invention in history?", + "Which machines do you think make our lives easier?", + "Which machines do you think make our lives more difficult?", + "Which are the most useless machines, the machines we could live without?", + "If you could invent any machine, what type of machine would you invent?", + "Which machines do you think had one purpose when they were invented, but now have many or different ones?", + "What machines do you use everyday in your life?", + "What things can you do faster without using a machine?", + "Which machines do you use on a daily basis?", +]; diff --git a/favicon.ico b/favicon.ico index b0e36e6..e111cbf 100644 Binary files a/favicon.ico and b/favicon.ico differ diff --git a/font/Sporting_Grotesque-Bold_web.woff b/font/Sporting_Grotesque-Bold_web.woff new file mode 100644 index 0000000..80bd85e Binary files /dev/null and b/font/Sporting_Grotesque-Bold_web.woff differ diff --git a/img/favicon.png b/img/favicon.png index 2abf6ec..38cb4c0 100644 Binary files a/img/favicon.png and b/img/favicon.png differ diff --git a/img/og-taboo.jpg b/img/og-taboo.jpg new file mode 100644 index 0000000..8034032 Binary files /dev/null and b/img/og-taboo.jpg differ diff --git a/img/og.png b/img/og.png new file mode 100644 index 0000000..e9252bf Binary files /dev/null and b/img/og.png differ diff --git a/img/ok.png b/img/ok.png new file mode 100644 index 0000000..6e45d3b Binary files /dev/null and b/img/ok.png differ diff --git a/img/peace.png b/img/peace.png new file mode 100644 index 0000000..50ce79f Binary files /dev/null and b/img/peace.png differ diff --git a/index.html b/index.html index 5a74d5d..b423463 100644 --- a/index.html +++ b/index.html @@ -1,807 +1,65 @@ - - - - - - - Questions in English for discussion - - - - - - -
-
1 /
-
How are you doing?
- -
- - - -
-
- - - - + + + + + + + + Get a topic + + + + + + + + + + + + + + + + +
+
+
+ + Hi +   + + + +
+
+ +
+ Click anywhere for the +
+
+ + + + + + \ No newline at end of file diff --git a/js/taboo.js b/js/taboo.js new file mode 100644 index 0000000..5b5f413 --- /dev/null +++ b/js/taboo.js @@ -0,0 +1,83 @@ +/** + * Show a random taboo card + */ +(function () { + var taboos = window.dataTaboo || []; + var topicNode = document.querySelector(".js-topic"); + + if (!taboos.length) { + topicNode.innerHTML = "Error: can't load data"; + return; + } + + var isAnimated = false; + + function getATaboo() { + var tabooIndex = Math.round(Math.random() * (taboos.length - 1)); + + topicNode.classList.add("_is-animated"); + isAnimated = true; + + // Add the new words with animation + setTimeout(function () { + var card = taboos[tabooIndex]; + var newHtml = + '
' + + card.word + + '
'; + + card.forbidden.forEach(function (word, i) { + var style = + "transition-delay: " + + (i + 1) / card.forbidden.length / 4 + + "s"; + newHtml += + '
' + + word + + "
"; + }); + + newHtml += "
"; + + topicNode.innerHTML = newHtml; + + setTimeout(function () { + topicNode.classList.remove("_is-animated"); + isAnimated = false; + }, 50); + }, 500); + } + + /** + * Click anywhere to get a new topic + */ + document.querySelector(".js-random").addEventListener("click", function () { + if (!isAnimated) { + getATaboo(); + } + }); + + /** + * Get the first random topic automatically when the page is ready + */ + document.addEventListener("DOMContentLoaded", function () { + setTimeout(function () { + getATaboo(); + }, 800); + }); +})(); + +/** + * Fix vh on mobile devices to prevent scroll + */ +(function () { + var vh = window.innerHeight * 0.01; + document.documentElement.style.setProperty("--vh", vh + "px"); + + window.addEventListener("resize", function () { + var newVh = window.innerHeight * 0.01; + document.documentElement.style.setProperty("--vh", newVh + "px"); + }); +})(); diff --git a/js/topic.js b/js/topic.js new file mode 100644 index 0000000..3e4f437 --- /dev/null +++ b/js/topic.js @@ -0,0 +1,75 @@ +/** + * Show a random topic + */ +(function () { + var topics = window.dataTopics || []; + var topicNode = document.querySelector(".js-topic"); + + if (!topics.length) { + topicNode.innerHTML = "Error: can't load data"; + return; + } + + var isAnimated = false; + + function getATopic() { + var topicIndex = Math.round(Math.random() * (topics.length - 1)); + + topicNode.classList.add("_is-animated"); + isAnimated = true; + + // Add the new words with animation + setTimeout(function () { + var words = topics[topicIndex].split(" "); + var newHtml = ""; + + words.forEach(function (word, i) { + var style = "transition-delay: " + i / words.length / 4 + "s"; + newHtml += + '' + + word + + " "; + }); + + topicNode.innerHTML = newHtml; + + setTimeout(function () { + topicNode.classList.remove("_is-animated"); + isAnimated = false; + }, 50); + }, 500); + } + + /** + * Click anywhere to get a new topic + */ + document.querySelector(".js-random").addEventListener("click", function () { + if (!isAnimated) { + getATopic(); + } + }); + + /** + * Get the first random topic automatically when the page is ready + */ + document.addEventListener("DOMContentLoaded", function () { + setTimeout(function () { + getATopic(); + }, 800); + }); +})(); + +/** + * Fix vh on mobile devices to prevent scroll + */ +(function () { + var vh = window.innerHeight * 0.01; + document.documentElement.style.setProperty("--vh", vh + "px"); + + window.addEventListener("resize", function () { + var newVh = window.innerHeight * 0.01; + document.documentElement.style.setProperty("--vh", newVh + "px"); + }); +})(); diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..273075c --- /dev/null +++ b/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Sitemap: https://getatopic.com/sitemap.xml diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..36792b4 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,18 @@ + + + + https://getatopic.com/ + always + 1.0 + + + https://getatopic.com/taboo + always + 1.0 + + + https://getatopic.com/about + monthly + 0.8 + + diff --git a/taboo/index.html b/taboo/index.html new file mode 100644 index 0000000..08cbb87 --- /dev/null +++ b/taboo/index.html @@ -0,0 +1,68 @@ + + + + + + + + Taboo — Get a topic + + + + + + + + + + + + + + + + +
+
+
+ + Taboo +   + + + +
+
+ +
+ Click + anywhere for the +
+
+ + + + + + \ No newline at end of file