Show HN: A simple Wordle clone in 60 lines, using Hyperscript
11–20 of 53 posts
Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#12E.g. Word was GROUP I guessed SPOON Output was green O at location 3 and yellow at 4. Happened for a couple more guesses making me think there is another O eventually to realize there are no more spots and it’s a bug.
Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#13Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#14Not take away from the brevity of the code, but these 60 lines translate into 168KB of JavaScript.
Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#15Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#16Not take away from the brevity of the code, but these 60 lines translate into 168KB of JavaScript.
Wait until you find out how big the browser that runs that code is!
Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#17Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#18This is awesome, but there's a slight bug in this implementation: Wordle won't count additional instances of a letter as wrong-position, it'll just flag them as wrong. For example, if the word is TRACE, and I guess TRACT, the first T will be green, but the second T should be black, not yellow. In this implementation, at the moment, TRACT would return GGGGY, but in Wordle it would be GGGGB. I actually made the same mi…
Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#19Re: Show HN: A simple Wordle clone in 60 lines, using Hyperscript
#20See https://github.com/hyperhype/hyperscript and all its descendants, like Mithril, HyperApp or Sinuous.
Could you please think of another name ?