Live data from Hacker News

The Password Game

neal.fun

501–510 of 540 posts

Re: The Password Game

#501
post #12

I'm stuck at "iatetomatoesyesterday0265Z#521juneVpepsiVIIxngxcaboutAg[moon emojis]italy2020Bf7+" trying to solve the chess notation puzzle. I especially laughed at the rule "must include today's Worldle" and I'm happy with my solution including every emoji for "must include the current phase of the moon as an emoji." (HackerNews doesn't seem to display emoji. My solution is to paste every moon phase emoji.) Excited t…

I got the chess one pretty easily but I'm stuck on "The elements in your password must have atomic numbers that add up to 200". I haven't found a way to satisfy both this and "The roman numerals in your password should multiply to 35" simultaneously. Iodine (I) and Uranium (U) have high atomic numbers which blow out way higher than 200 and I haven't found a way to avoid them. Edit: OK, just realised that it's case se…

Seems to accept Qxh6+ as well as the other answer given here, I guess both work!

Re: The Password Game

#502

A warning to future players: I got to rule 16 and was given an egg named paul that I had to keep safe. Then on rule 18 a fire (of emojis) broke out in my password, killing paul and ending the game. Dont be like me, keep Paul safe.

I killed Paul when trying to get the atomic numbers to equal 200. My plan was to add "H" until the rule was satisfied. Then, I thought I accidentally went past it, so I started holding backspace. I went too far.

hahaha yes exactly the same happened to me too

Re: The Password Game

#503
post #42

This isn’t really significantly more irritating than half the password “rules” forced on me by major companies who ought to know better. “A special character…” Okay, how about: “ “No, not THAT special!! (Shh, we are worried about a SQL injection attack… in your password… which we dont even know how to escape)” Let the many implications sink in for a minute.)

I once had to deal with an site that would be fine with a ' in the password when setting it, but would throw a mysterious error every time you tried to log in.

For about 2 years I reset my password many times, always to the same one and that would also log me in. I just figured the site was broken for me but this worked and contacting support is rarely helpful for stuff like this so whatever, until it suddenly dawned on me the ' might be the "problem".

Re: The Password Game

#504
post #12

I'm stuck at "iatetomatoesyesterday0265Z#521juneVpepsiVIIxngxcaboutAg[moon emojis]italy2020Bf7+" trying to solve the chess notation puzzle. I especially laughed at the rule "must include today's Worldle" and I'm happy with my solution including every emoji for "must include the current phase of the moon as an emoji." (HackerNews doesn't seem to display emoji. My solution is to paste every moon phase emoji.) Excited t…

Python:

  >>> sentence = """Only the fool would take trouble to verify that his sentence was composed of ten a's, three b's, four c's, four d's, forty-six e's, sixteen f's, four g's, thirteen h's, fifteen i's, two k's, nine l's, four m's, twenty-five n's, twenty-four o's, five p's, sixteen r's, forty-one s's, thirty-seven t's, ten u's, eight v's, eight w's, four x's, eleven y's, twenty-seven commas, twenty-three apostrophes, seven hyphens and, last but not least, a single !"""
  >>> import collections
  >>> sorted(collections.Counter(sentence.lower()).items())
  [(' ', 73), ('!', 1), ("'", 23), (',', 27), ('-', 7), ('a', 10), ('b', 3), ('c', 4), ('d', 4), ('e', 46), ('f', 16), ('g', 4), ('h', 13), ('i', 15), ('k', 2), ('l', 9), ('m', 4), ('n', 25), ('o', 24), ('p', 5), ('r', 16), ('s', 41), ('t', 37), ('u', 10), ('v', 8), ('w', 8), ('x', 4), ('y', 11)]
Checks out.

Re: The Password Game

#506

List of countries in geoguessr: AlbaniaAndorraArgentinaAustraliaAustriaBangladeshBelgiumBhutanBoliviaBotswanaBrazilBulgariaCambodiaCanadaChileColombiaCroatiaCzechiaDenmarkDominicanRepublicEcuadorEstoniaFinlandFranceGermanyGhanaGreeceGuatemalaHungaryIcelandIndonesiaIrelandIsraelItalyJapanJordanKenyaKyrgyzstanLatviaLithuaniaLuxembourgMalaysiaMexicoMongoliaMontenegroNetherlandsNewZealandNigeriaNorthMacedoniaNorwayPeruPh…

I had to look at the source to find the possible options. In 906d40b.js starting at line 3471 (could change in the future) is an array of possible values. You can search for the embed url of the iframe to get the country name.

It looks like

  [
    {
      title: 'Australia',
      link: 'https://www.google.com/maps/@-25.350684,131.0463223,3a,7...',
      embed: 'https://www.google.com/maps/embed?pb=!4v1686332510022!6m8!1m7...'
    },
    {
      title: 'Austria',
      link: 'url',
      embed: 'url'
    },
    ...
  ]

Re: The Password Game

#508
For the country one, I got "www.google.com/maps/embed?pb=!4v1687119352692!6m8!1m7!1sINHBz4HdSwMAAAQrBnftjg!2m2!1d9.080961517214682!2d7.524398838108427!3f84.34!4f-4.950000000000003!5f0.4000000000000002"

I think it should be 9.08N, 7.52E and it works

Post reply on HN