Live data from Hacker News

Worldle

worldle.teuteuf.fr

221–230 of 241 posts

Re: Worldle

#221

Earlier quoted context omitted.

The real problem is there's only 195 countries.

In that case, it will be a good game for at least 195 days

No, the problem is much worse than that. Wordle has you drawing from a pool of 12000 possible 5-letter words to guess from a pool of 2500 answers.

Compare this to drawing from 195 countries to guess 195 countries.

Re: Worldle

#222
post #41

I don't understand how this works? It had a picture of _____, and the correct answer was ______. Is it just guessing the country name based on the shape? edit - hid my answer in case it wasn't as obvious to others.

Todays question was super easy for a lot of people. Past countries have been things like Turks & Cacos, Liberia, Guatemala. Those I got close to and then the last guess or two I was scanning around google maps. Yeah it’s not as fun as Wordle, kinda interesting for a few plays though.

Yep, that's why I was confused - seemed too easy to be fun. But I tried again today and it was much more difficult.

Re: Worldle

#223

Earlier quoted context omitted.

It's really a shame the developer didn't add this feature. One might be scared off by the large number of geometry files involved with this, but actually this is a great example of when hard coding can supersede dynamic/robust code. It would be better to simply store an object of all countries borders and the their relative direction to one another. I could see this being a slight issue with countries that share a bo…

France would be fascinating

(For context France has borders with Brazil for example, and is only a few miles from Canada and not far from Austrailia)

Re: Worldle

#224
post #152

I was extremely confused about the distance values in relation to the percentages until I read the help: > The distances displayed correspond to the distances between the selected and the target territory centers. > For instance, the computed distance between United States and Canada is around 2260km even if they have a common border. That's extremely deceptive and non-obvious unless you read through the documentatio…

How is it deceptive? To me it's an extra tidbit of information that doesn't seem important. It's clearly linked with distance, so I know it's something to do with distance.

> How is it deceptive?

When people talk about how far one country is from another, chances are extremely unlikely they are referring to how far their central points are from one another.

Re: Worldle

#226
post #152

Earlier quoted context omitted.

How is it deceptive? To me it's an extra tidbit of information that doesn't seem important. It's clearly linked with distance, so I know it's something to do with distance.

> How is it deceptive? When people talk about how far one country is from another, chances are extremely unlikely they are referring to how far their central points are from one another.

That's true, but it takes a moment to realize the intuitive first thought couldn't work in practice. So it must be something like the centers. Plus the exact distance doesn't matter in this game.

Re: Worldle

#227
post #211
post #194

Earlier quoted context omitted.

Seriously. How do you get a fresh one?

You wait a day. (Although there are various workarounds.)

> various workarounds

Such as?

Edit: looking at the source code, it seems to take your local system time so that would be one. Wonder if I can just go through each country in random order without repeating.

    $ sudo date -s @$(($RANDOM*$RANDOM))

Re: Worldle

#228
post #161

Earlier quoted context omitted.

If you get a ‘country that’s 2000 km north of the USA’ and do not guess Canada (the ‘only’ country north of the US) then I don’t know what to say.

And you could presumably say the same thing about any other two countries, yes?

No?

Re: Worldle

#230
post #180

Earlier quoted context omitted.

Not quite, you'd get the maximum distance from the extreme end of one territory to the nearest point of the other.

> Not quite, you'd get the maximum distance from the extreme end of one territory to the nearest point of the other. But which country do you pick the extreme edge of, and which country do you pick the nearest point of? For example, if measuring US Canada, do you pick the extreme end of Canada or the extreme end of the US?

You pick whatever gives you the largest distance.

For every point in both territories, find the closest point in the other territory. From these pairs of points, find the pair with the largest distance. That distance is your Hausdorff distance.

Post reply on HN