just one more question about the python challenge

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Roel Schroeven

    #16
    Re: just one more question about the python challenge

    John Salerno schreef:[color=blue]
    > Fredrik Lundh wrote:[color=green]
    >> John Salerno wrote:
    >>[color=darkred]
    >>>> At the second, don't rename the file, rename the URL.
    >>> Do you mean rename the URL *aside from* the file name?[/color]
    >> no, the URL you got when you followed georg's instructions will give you
    >> some data that you need to manipulate before you can see what it is. to
    >> figure out how to manipulate it, study the *first* image carefully. what
    >> is the person on that page doing?[/color]
    >
    > Thanks Fredrik. I think my problem lies in not knowing what the 'data'
    > is I need to move on to the next step of the puzzle. I now have 3
    > images, along with gfx file. I know shuffling/unshuffling has something
    > to do with the puzzle, but I haven't figure out what yet. Am I wrong to
    > think that this is another PIL puzzle?[/color]

    As others have said, you don't need PIL for this one. You need to have a
    look at the data of the gfx file itself (you can do that with some
    simple Python code, though I find it easier to use a hex editor). Focus
    on the start of the data at first. Compare the patterns in the data with
    the data at the start of other image files (JPG, PNG, GIF).

    From another view of how you need to manipulate the bytes, look at what
    the dealer is doing with the cards. Count how many piles he's using.

    And I guess you'll be happy to know that puzzle 13 doesn't have anything
    to do with images :)

    --
    If I have been able to see further, it was only because I stood
    on the shoulders of giants. -- Isaac Newton

    Roel Schroeven

    Comment

    • Jerry

      #17
      Re: just one more question about the python challenge

      This one threw me for a loop as well. I looked at that gfx file for a
      whole day before I finally understood what was in it. I only knew to
      separate it into five piles because of the hint forums though. I guess
      I'm not intuitive enough. :)

      I too did this challenge without PIL. Just remember that all files are
      just bytes of data. Hopefully, that idea with the rest of the hints
      will help you along.

      On a side note, level 13 was really fun. No images at all (whew!) and
      I got to learn something about Python AND the other technology used.

      As for level 14.... back to images. I really didn't like this level
      and it was the first time that I needed to find a solution. Yes, I
      cheated on this level. I'm not proud of it. But as it turns out, my
      solution was correct, but I was going in the wrong direction. I
      figured as much from the hints in the forum, but when I reversed my
      algorithm, it still ended up wrong. I didn't realize that there were
      four directions you could use to build the image. I had only accounted
      for two and both were not right. *sigh*

      On to level 15.

      Comment

      • JW

        #18
        Re: just one more question about the python challenge

        You said:[color=blue]
        > Sorry to post here about this again, but the hint forums are dead, and
        > the hints that are already there are absolutely no help (mostly it's
        > just people saying they are stuck, then responding to themselves saying
        > the figured it out! not to mention that most of the hints require
        > getting past a certain point in the puzzle before they make sense, and
        > i'm just clueless).[/color]

        I just went to the hint forums:


        There are SEVEN pages of clues for level 12. The most recent post (to
        challenge 1) was on April 11, so the forums are most certainly not
        dead. Yes, the hints don't spell out what step they are refering to,
        and a certain level of obfuscation is required to avoid giving away
        hints.

        Many can not be solved in a day - they require reading hints, thinking
        hard, then doing something else (reading, working, sleeping) to let the
        subconscious chew over the clues. This is the fun of the challenge -
        there is no secret knowledge gained, other than a list of URLs and
        passwords. If this isn't your definition of fun, then you can go on to
        other things with a clear conscious.

        Comment

        • John Salerno

          #19
          Re: just one more question about the python challenge

          JW wrote:
          [color=blue]
          > There are SEVEN pages of clues for level 12. The most recent post (to
          > challenge 1) was on April 11, so the forums are most certainly not
          > dead.[/color]

          I read those seven pages at least twice and they still don't make much
          sense to me (not to mention that many of the posts are just
          conversational comments anyway, and not hints).

          The last post for level 12 was made last year, so I'd call that dead
          enough to be unhelpful.
          [color=blue]
          > passwords. If this isn't your definition of fun, then you can go on to
          > other things with a clear conscious.[/color]

          Some of them are really fun, some are a pain. But if I had 'other
          things' to use Python on consistently, I would definitely spend more
          time with that.

          Comment

          • Jerry

            #20
            Re: just one more question about the python challenge

            John,

            If you are really frustrated with this one (like I was on 14), email me
            off-list to get further hints. I'm willing to help you out.

            I wish that someone was around to help me work through some of these.
            I really think they are more fun/helpful when you work on them with
            another person so if you don't see something in the riddle, they just
            might. For me, this is more about learning python than about solving
            the riddles.

            Comment

            Working...