From 6333922c46a485cff9af29de796c53827ecb0620 Mon Sep 17 00:00:00 2001 From: NriotHrreion Date: Sat, 6 Jan 2024 10:25:09 +0800 Subject: [PATCH 1/3] feat(wordlist): added tokens in wordlists --- src/wordlists/javascript.json | 3 +- src/wordlists/sentences.json | 59 +++++++++++++- src/wordlists/words.json | 145 +++++++++++++++++++++++++++++++++- 3 files changed, 204 insertions(+), 3 deletions(-) diff --git a/src/wordlists/javascript.json b/src/wordlists/javascript.json index b9b05fb..407d935 100644 --- a/src/wordlists/javascript.json +++ b/src/wordlists/javascript.json @@ -82,5 +82,6 @@ "volatile", "while", "with", - "yield" + "yield", + "infer" ] diff --git a/src/wordlists/sentences.json b/src/wordlists/sentences.json index 1fad6b2..26710f5 100644 --- a/src/wordlists/sentences.json +++ b/src/wordlists/sentences.json @@ -6,5 +6,62 @@ "I quickly put on my red winter jacket, black snow pants, waterproof boots, homemade mittens, and handknit scarf.", "The incessant ticking and chiming echoed off the weathered walls of the clock repair shop.", "Nervously, I unfolded the wrinkled and stained letter from my long-dead ancestor.", - "Into the suitcase, I carelessly threw a pair of ripped jeans, my favorite sweater from high school, an old pair of tube socks with stripes, and $20,000 in cash." + "Into the suitcase, I carelessly threw a pair of ripped jeans, my favorite sweater from high school, an old pair of tube socks with stripes, and $20,000 in cash.", + "The cat and dog ate.", + "My parents and I went to a movie", + "Mrs. Juarez and Mr. Smith are dancing gracefully.", + "Samantha, Elizabeth, and Joan are on the committee.", + "The paper and pencil sat idle on the desk.", + "I rinsed and dried the dishes.", + "The Spirits of All Three shall strive within me.", + "The sun is shining brightly.", + "Birds are chirping outside my window.", + "I enjoy reading books.", + "Cooking is a fun activity.", + "My favorite color is blue.", + "I like to go for a walk in the evening.", + "The cat is sleeping on the couch.", + "I love eating chocolate.", + "Raindrops are falling on the roof.", + "I have a green pen on my desk.", + "Pizza is my go-to comfort food.", + "Flowers bloom in spring.", + "The moon is full tonight.", + "I listen to music every day.", + "Coffee is a morning essential.", + "The mountains are covered in snow.", + "I have a red umbrella.", + "Soccer is a popular sport.", + "I prefer tea over coffee.", + "The clock is ticking.", + "I enjoy watching movies.", + "The river flows silently.", + "My phone is charging.", + "Autumn leaves are falling.", + "I like to wear comfortable clothes.", + "Ice cream melts quickly in the sun.", + "I have a blue backpack.", + "The stars twinkle at night.", + "The computer is on my desk.", + "I brush my teeth before bed.", + "I have a yellow notepad.", + "The ocean waves crash on the shore.", + "I like to take pictures.", + "Apples are a healthy snack.", + "The car is parked in the driveway.", + "I enjoy going to the beach.", + "My favorite season is summer.", + "I have a black pen too.", + "I like to draw in my free time.", + "The wind is blowing gently.", + "I wear glasses for reading.", + "Pancakes are delicious for breakfast.", + "I have a whiteboard on my wall.", + "I like to solve puzzles.", + "The sky is clear today.", + "I water the plants regularly.", + "I use a laptop for work.", + "I take a nap in the afternoon.", + "I have a green mug for my tea.", + "The door is closed." ] diff --git a/src/wordlists/words.json b/src/wordlists/words.json index aec3fd8..d3b756f 100644 --- a/src/wordlists/words.json +++ b/src/wordlists/words.json @@ -198,5 +198,148 @@ "course", "change", "help", - "line" + "line", + "reason", + "area", + "base", + "study", + "result", + "case", + "build", + "care", + "country", + "try", + "provide", + "international", + "stubborn", + "due", + "straightforward", + "wherever", + "restrict", + "prior", + "duplicate", + "load", + "gain", + "earn", + "fight", + "obtain", + "attain", + "lake", + "forest", + "mouse", + "software", + "hardware", + "random", + "serve", + "account", + "combine", + "consist", + "insist", + "persist", + "though", + "although", + "thorough", + "therefore", + "thus", + "shrink", + "blink", + "label", + "language", + "electron", + "nature", + "disappointment", + "pain", + "pay", + "beauty", + "left", + "power", + "king", + "queen", + "query", + "quick", + "clown", + "squirrle", + "code", + "script", + "browse", + "window", + "print", + "fear", + "fright", + "afraid", + "tremble", + "seize", + "light", + "delight", + "amaze", + "culture", + "cultivate", + "peace", + "aspect", + "respect", + "salute", + "translate", + "transform", + "transport", + "industry", + "dust", + "pollution", + "air", + "apple", + "banana", + "orange", + "watermelon", + "mango", + "pear", + "peach", + "fruit", + "color", + "relay", + "conquer", + "convince", + "library", + "unique", + "uniform", + "unite", + "unbelievable", + "incredible", + "link", + "yell", + "pile", + "lie", + "buy", + "purchase", + "origin", + "please", + "tea", + "one", + "two", + "three", + "four", + "five", + "six", + "seven", + "eight", + "nine", + "ten", + "eleven", + "twelve", + "twenty", + "thirty", + "forty", + "fifty", + "sixty", + "seventy", + "eighty", + "ninety", + "hundred", + "thousand", + "million", + "billion", + "millionaire", + "contact", + "contrast", + "contract", + "contest", + "compete" ] From 7f233916d0a490a81672e3b49594d6a7f5b12f6c Mon Sep 17 00:00:00 2001 From: NriotHrreion Date: Sat, 13 Jan 2024 20:10:40 +0800 Subject: [PATCH 2/3] feat(wordlist): added hard difficulty words --- src/components/Header.tsx | 10 +++++- src/wordlists/difficult.json | 67 +++++++++++++++++++++++++++++++++++ src/wordlists/javascript.json | 3 +- src/wordlists/words.json | 14 -------- 4 files changed, 77 insertions(+), 17 deletions(-) create mode 100644 src/wordlists/difficult.json diff --git a/src/components/Header.tsx b/src/components/Header.tsx index df45625..46cb610 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -43,7 +43,15 @@ export const options: Options = { "pink-sky", "red-season", ], - type: ["words", "sentences", "numbers", "got", "javascript", "python"], + type: [ + "words", + "difficult", + "sentences", + "numbers", + "got", + "javascript", + "python", + ], }; export default function Header() { diff --git a/src/wordlists/difficult.json b/src/wordlists/difficult.json new file mode 100644 index 0000000..ea1671a --- /dev/null +++ b/src/wordlists/difficult.json @@ -0,0 +1,67 @@ +[ + "internationalization", + "straightforward", + "duplicate", + "therefore", + "disappointment", + "cultivate", + "translate", + "transform", + "transport", + "pollution", + "watermelon", + "unbelievable", + "incredible", + "millionaire", + "relationship", + "scholarship", + "championship", + "citizenship", + "friendship", + "leadership", + "membership", + "readership", + "childhood", + "adulthood", + "neighborhood", + "likelyhood", + "commitment", + "judgement", + "statement", + "amazement", + "statistics", + "extraodinary", + "universal", + "brainstorm", + "astronomy", + "preoccupied", + "reservation", + "phenomenon", + "irrespective", + "apprehensive", + "circumstance", + "unaccountable", + "uncharacteristically", + "establishmentarianism", + "communication", + "eco-tourism", + "acquisition", + "localization", + "globalization", + "restriction", + "stimulation", + "virtualization", + "technology", + "application", + "sourcecode", + "appearance", + "preference", + "performance", + "exceptionally", + "difficulties", + "dimensionality", + "enhancement", + "documentary", + "originality", + "disability" +] diff --git a/src/wordlists/javascript.json b/src/wordlists/javascript.json index 407d935..b9b05fb 100644 --- a/src/wordlists/javascript.json +++ b/src/wordlists/javascript.json @@ -82,6 +82,5 @@ "volatile", "while", "with", - "yield", - "infer" + "yield" ] diff --git a/src/wordlists/words.json b/src/wordlists/words.json index d3b756f..7925e3a 100644 --- a/src/wordlists/words.json +++ b/src/wordlists/words.json @@ -210,14 +210,11 @@ "country", "try", "provide", - "international", "stubborn", "due", - "straightforward", "wherever", "restrict", "prior", - "duplicate", "load", "gain", "earn", @@ -239,7 +236,6 @@ "though", "although", "thorough", - "therefore", "thus", "shrink", "blink", @@ -247,7 +243,6 @@ "language", "electron", "nature", - "disappointment", "pain", "pay", "beauty", @@ -273,22 +268,16 @@ "delight", "amaze", "culture", - "cultivate", "peace", "aspect", "respect", "salute", - "translate", - "transform", - "transport", "industry", "dust", - "pollution", "air", "apple", "banana", "orange", - "watermelon", "mango", "pear", "peach", @@ -301,8 +290,6 @@ "unique", "uniform", "unite", - "unbelievable", - "incredible", "link", "yell", "pile", @@ -336,7 +323,6 @@ "thousand", "million", "billion", - "millionaire", "contact", "contrast", "contract", From c9b07af1c6b217be3f82bf1fd2dba68999c44d26 Mon Sep 17 00:00:00 2001 From: NriotHrreion Date: Sat, 20 Jan 2024 21:55:42 +0800 Subject: [PATCH 3/3] feat(wordlist): rename `difficult` to `hard-words` and re-add some sentences --- src/components/Header.tsx | 2 +- .../{difficult.json => hard-words.json} | 0 src/wordlists/sentences.json | 59 ++++--------------- 3 files changed, 14 insertions(+), 47 deletions(-) rename src/wordlists/{difficult.json => hard-words.json} (100%) diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 46cb610..1251c33 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -45,7 +45,7 @@ export const options: Options = { ], type: [ "words", - "difficult", + "hard-words", "sentences", "numbers", "got", diff --git a/src/wordlists/difficult.json b/src/wordlists/hard-words.json similarity index 100% rename from src/wordlists/difficult.json rename to src/wordlists/hard-words.json diff --git a/src/wordlists/sentences.json b/src/wordlists/sentences.json index 26710f5..7c5e37e 100644 --- a/src/wordlists/sentences.json +++ b/src/wordlists/sentences.json @@ -18,50 +18,17 @@ "Birds are chirping outside my window.", "I enjoy reading books.", "Cooking is a fun activity.", - "My favorite color is blue.", - "I like to go for a walk in the evening.", - "The cat is sleeping on the couch.", - "I love eating chocolate.", - "Raindrops are falling on the roof.", - "I have a green pen on my desk.", - "Pizza is my go-to comfort food.", - "Flowers bloom in spring.", - "The moon is full tonight.", - "I listen to music every day.", - "Coffee is a morning essential.", - "The mountains are covered in snow.", - "I have a red umbrella.", - "Soccer is a popular sport.", - "I prefer tea over coffee.", - "The clock is ticking.", - "I enjoy watching movies.", - "The river flows silently.", - "My phone is charging.", - "Autumn leaves are falling.", - "I like to wear comfortable clothes.", - "Ice cream melts quickly in the sun.", - "I have a blue backpack.", - "The stars twinkle at night.", - "The computer is on my desk.", - "I brush my teeth before bed.", - "I have a yellow notepad.", - "The ocean waves crash on the shore.", - "I like to take pictures.", - "Apples are a healthy snack.", - "The car is parked in the driveway.", - "I enjoy going to the beach.", - "My favorite season is summer.", - "I have a black pen too.", - "I like to draw in my free time.", - "The wind is blowing gently.", - "I wear glasses for reading.", - "Pancakes are delicious for breakfast.", - "I have a whiteboard on my wall.", - "I like to solve puzzles.", - "The sky is clear today.", - "I water the plants regularly.", - "I use a laptop for work.", - "I take a nap in the afternoon.", - "I have a green mug for my tea.", - "The door is closed." + "Your life is too important to let it control you.", + "As I stepped out of the car and onto the sand, it all melted.", + "Moved by his kindness, she could not utter a single word, tears blurring her eyes.", + "Fear slowly crept upon her and her legs shook involuntarily.", + "The grief had a gravity, pulling me down, but a tiny voice whispered in my mind.", + "The news cast a cloud of gloom over his face and he couldn't help crying bitterly.", + "She sobbed, hiding her face in her hands.", + "She laughed, eyes sparkling excitement.", + "Staring at that beast, she gathered all her courage and shouted at it.", + "Amy begged in an eager voice, clinging on to her mom's sleeve.", + "He stormed out of the room in a burst of anger and slammed the door furiously.", + "My legs tingled and shook ,but I staggered away.", + "Without any hesitation, he immediately rushed out of the house, got into his car and drove away." ]