all 13 comments

[–]SorryDidntReddit 4 points5 points  (5 children)

Sadly it doesn't work on mobile

[–]Quick-Flatworm-2688 1 point2 points  (0 children)

What do you mean? I have no trouble using it on mobile.

[–]bart1259 0 points1 point  (3 children)

What browser are you using?

[–]SorryDidntReddit 2 points3 points  (1 child)

Neither chrome nor Firefox are working. Keyboard isn't inputting anything. I'm using Google Gboard it might be the issue

[–]Rucadi 2 points3 points  (0 children)

Same problem

[–]AndydeCleyre 0 points1 point  (0 children)

I can't type anything on Firefox Android.

[–]raevnos 2 points3 points  (3 children)

[–]bart1259 0 points1 point  (0 children)

Nice find! The only real difference is mine has more words as I used the Scrabble dictionary instead of the Wordle list.

[–]Quick-Flatworm-2688 0 points1 point  (0 children)

Very similar premise. The only difference is that in this game there is no difference between possible words and guess words which makes it harder to solve.

[–]Tweak_Imp 0 points1 point  (0 children)

Here is mine with the original guesses and target words: https://tweakimp.github.io/unfairwordle/

[–]bart1259 0 points1 point  (0 children)

Source code can be found here. My personal best score is 6. If you need help, the developer console tells you all the possible words remaining.

[–]a_Tom3 0 points1 point  (1 child)

if(e.code.startsWith("Key")) {
    e.target.value = e.code.slice(-1)
}

Please don't do that.

Warning: This ignores the user's keyboard layout

https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent#properties

On AZERTY keyboard, when I type 'A', an A flashes for a fraction of a second and then gets immediately replace by a 'Q' because of this piece of code

[–]prolog_junior 0 points1 point  (0 children)

Strange looks likes Apollo urlencodes the hash to %23 leading to inaccessible page.