• snowraven@sh.itjust.works
    link
    fedilink
    arrow-up
    138
    arrow-down
    1
    ·
    edit-2
    9 months ago

    Purely in technical terms, this meme doesn’t really fit unless they start running literally from the edge.

    While and do while are equal except for the very first test. So if the very first test does not evaluate to false, they are essentially same. In the meme that implies they started running sometime before reaching the edge, that runs the “run()” atleast once and later on for every run it would be checked and it would be false at the cliff edge.

  • hperrin@lemmy.world
    link
    fedilink
    arrow-up
    36
    ·
    9 months ago

    When productivity is measured in lines of code:

    do {
      if (!edge) {
        run();
      }
    } while (!edge);
    
    • Square Singer@feddit.de
      link
      fedilink
      arrow-up
      6
      ·
      9 months ago

      It’s still ironic to me that the turbo button’s purpose was to limit the CPU speed.

      You know, like you use a turbo on a car to limit it’s performance.

      • xmunk@sh.itjust.works
        link
        fedilink
        arrow-up
        5
        ·
        9 months ago

        Naming things is one of the two hard problems in computer science and the turbo button was the button you press if your computer is going too fast… it made sense from someone’s point of view.

        • 👍Maximum Derek👍@discuss.tchncs.de
          link
          fedilink
          English
          arrow-up
          6
          ·
          edit-2
          9 months ago

          Brands starting doing this in the 486 days to match customer expectation. In the 286 and 386 days it slowed the PC down to 8MHz. It was called turbo because it was 8088 Turbo mode, as the 8088 nominally operated at 4.7MHz.

          Source: Those of around since the 8088 days viciously mocked the brands that did this on newsgroups because they were catering to newbs… or whatever we called them back then.

        • Square Singer@feddit.de
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          9 months ago

          After they flipped the meaning. But even then, if the PC didn’t have the button it would run at full speed.

          Turning it off would limit the speed. So the purpose of the existence of the button was not to make the PC go faster, but rather to make it go slower if you turned it off.

          It’s kinda like as if the eco mode button in you car was labelled “turbo mode” with flipped meaning.

  • AMillionMonkeys@lemmy.world
    link
    fedilink
    English
    arrow-up
    10
    ·
    9 months ago

    One of these days I’ll read through the PEP and figure out why Python doesn’t have do-while. I understand that it’s just as bad, but while(True) feels so dangerous.

    • DreamButt@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      ·
      9 months ago

      Curious what use case you have for needing a do-while. Honestly I barely use while at all, a good ol for-loop normally does the trick

      • pixelscript@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        9 months ago

        I got an application that runs through a big calculation that has to pass several sanity checks along the way. If any check fails, the input parameters are tweaked and the calculation starts again from the top, iteratively approaching the ideal solution. Do-while is perfect for this.

        It beats recursion in non-tail-call-optimized implementations (JavaScript…). And while this could be done just as well with a comon while loop plus a flag variable, I like the way the syntax of do-while naturally reads as, “Do [thing]. … Did it work? No? Do it again”.

        I’d still argue it’s redundant. If they got rid of it tomorrow I’d refactor and cope with no complaints. But as long as it’s around, I like using it.

      • prograhammingdev@lemmy.prograhamming.com
        link
        fedilink
        arrow-up
        1
        ·
        9 months ago

        IMO I find it really useful in scenarios where you have a set condition that needs to be met (and can always be met so it’s not endless) and looping through to achieve it. I wrote a simple part calculation for a production company I worked for. Essentially while parts_needed < parts packed, pack qty 'x' of part 1, and qty 'x' of part 2 until all parts were filled to the correct amounts. Though it can be done with either / both I just find it more legible.

    • glibg10b@lemmy.ml
      link
      fedilink
      arrow-up
      27
      arrow-down
      3
      ·
      9 months ago

      Well, it’s wrong. The only difference between the two kinds of loops is that do-while starts by unconditionally running the body once

      • KTVX94@lemmy.myserv.one
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 months ago

        Yes, that’s true. It’s also good enough to make an abstract concept more approachable while getting a kick out of it too. Honestly this is more of a “well akcshually” thing that someone who already knows how this works would point out (nobody has so far) than something that misleads students who don’t get it. It works.

    • xmunk@sh.itjust.works
      link
      fedilink
      arrow-up
      11
      ·
      9 months ago

      Please switch over to something that actually has a condition that needs to logically be evaluated on each step and not as an end condition - yes this meme is technically correct for the case where they both start adjacent to the cliff and programmers should always consider (cliff) edge cases… but the visual strongly implies they’ve been running for a while.

      • KTVX94@lemmy.myserv.one
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 months ago

        I mean yeah, it does have that problem, but even if it’s not entirely accurate it’s good enough to illustrate an otherwise abstract concept that’s not exactly easy to understand for someone who’s just getting started with programming and may not really be interested in it, rather looking to be an artist or game designer. Also humor really helps when it comes to learning. It does way more good than bad in my experience so far.