in reply to Re^2: Parsing by indentation
in thread Parsing by indentation

So, you're saying that you came to the Monastery to gain wisdom from people that aren't as technical ;)

I'm very much just kidding. Your question was well laid out and understandable, ++.

Replies are listed 'Best First'.
Re^4: Parsing by indentation
by llarochelle (Beadle) on Oct 24, 2018 at 20:33 UTC
    You are very funny and I totally get your point :-) Thanks for the heads up, well writing it down was actually a good exercise for me. I thought maybe it would help me assimilate the problem better and maybe find a solution along the way. But it didn't. And then I came here I got seriously impressed. I though I was finally approaching expert level in Perl ... definitly need to work harder. Cheers,
      "I though I was finally approaching expert level in Perl"

      I've thought that every day for the past 10 or so years, but each day I find something new. I stick with "intermediary" just to be safe ;)

      Writing things down (even without code) helps a lot of the time. Many call that Rubber Duck Debugging. I'll explain my issue to my wife (who has no idea what I'm talking about), to myself on a walk along the waterfront at my home, or to my desk as I'm headbanging it out of frustration.

      Many solutions to extremely complex problems have been found via these types of methods. Several times, while I'm at a loss, I start typing the question here on Perlmonks, only to solve the problem by trying to explain the situation. Mostly, if that happens, I post the question anyways, in the event that someone else may benefit one day.

        Writing things down (even without code) helps a lot of the time. Many call that Rubber Duck Debugging. I'll explain my issue to my wife (who has no idea what I'm talking about), to myself on a walk along the waterfront at my home, or to my desk as I'm headbanging it out of frustration.

        Well, i usually try to explain things to my "internal imaginery dumb user personality". Basically, a fantasy personality in my own head that doesn't know much about computers. Same strategy i use when designing user interfaces and similar stuff. Now, whoever says "you don't have to be mad to work here" - well, madness certainly helped me to improve code quality and user experience ;-)

        perl -e 'use MIME::Base64; print decode_base64("4pmsIE5ldmVyIGdvbm5hIGdpdmUgeW91IHVwCiAgTmV2ZXIgZ29ubmEgbGV0IHlvdSBkb3duLi4uIOKZqwo=");'
        Thanks for the insight ! I find solutions to code problems at an unexpected moment, while mowing the lawn or taking a shower where part of my brain goes on auto pilot ... The rubber duck debugging is a very interesting method too !