It was volcano but I only discovered it after finding that Android autocorrect can suggest a word for me.
Show HN: My 70 year old grandma is learning to code and made a word game
51–60 of 160 posts
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#52I found Grandma's Word in 25 guesses https://grandmasword.com It was volcano but I only discovered it after finding that Android autocorrect can suggest a word for me.
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#53I found Grandma's Word in 25 guesses https://grandmasword.com It was volcano but I only discovered it after finding that Android autocorrect can suggest a word for me.
spoiler alert -- no need to share the answer, it takes the fun away for others
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#54Earlier quoted context omitted.
> About the game: somewhat fun but if you don't know the word, that's it. No really any way to figure out in a rewarding way. What does this mean? You could say the same thing about Wordle.
I guessed many words I didn't know on Wordle (not a native English speaker), if you are able to reduce enough the letters search space there's going to be only a few options that e.g. make sense phonetically.
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#55Re: Show HN: My 70 year old grandma is learning to code and made a word game
#56[flagged]
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#57Re: Show HN: My 70 year old grandma is learning to code and made a word game
#58There is some bug in the sorting, because it sorted “vol” after “volatile” for me. It seems to depend on some previous state, though, because I couldn’t reproduce it in a new window. Edit: See also https://news.ycombinator.com/item?id=41217457 .
It seems the previous guess is always placed either one up or one down from the entry box. So if you're guessing "V" words, then type "apple", then "apple" will show after "vodka". So the list is not getting re-alphabatized.
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#59[flagged]
> Not to be negative or anything but [pure shade] I'm gonna bet that my mom has had a website since before you were born*. She was taking fortran classes in the 60s. Your ageist attitude is pretty gross. So what if she had help? Another bet, you can't program without the help of online resources and/or a chatbot either. * given the dates on your resume, there's a very good chance I'm correct in this
Re: Show HN: My 70 year old grandma is learning to code and made a word game
#60time to LLM a binary search import requests url = 'https://grandmasword.com/dictionary.js' response = requests.get(url) lines = response.text.split('\n')[2:] exec('\n'.join(lines)) def binary_search(dictionary): while len(dictionary) > 1: mid_index = len(dictionary) // 2 mid_word = dictionary[mid_index] print(f"Guess this middle word: {mid_word}") user_input = input("Did grandma say her word is before or after? (type…