• Dandroid@sh.itjust.works
          link
          fedilink
          arrow-up
          0
          ·
          7 months ago

          It’s funny how solvable that problem is now. I remember seeing that comic, I think over a decade ago now, and thinking about how true it was. It really shows you have far we’ve come in CS.

      • mac@infosec.pub
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        “I also sampled everything in the medicine cabinet”

        This made me smile.

      • RobertoOberto@sh.itjust.works
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        From the hovertext: “I wrote 20 short programs in Python yesterday. It was wonderful. Perl, I’m leaving you.

        After years of a dozen other languages, I finally tried Perl the other day.

        Never again, if I can help it.

    • mac@infosec.pub
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

      I thought it was poking fun at the tutorial saying instead of learning to code, import a library from someone who knows how to code.

      • lowleveldata@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        7 months ago

        That’s what libraries are for. I’m no security expert and the sensible thing to do is using a library instead of taking a class.

          • Gabu@lemmy.ml
            link
            fedilink
            arrow-up
            0
            ·
            7 months ago

            Impressive and unsurprising. As soon as you start getting complex libraries with multiple dependencies it becomes nearly impossible to review everything. At one time I had an interest in contributing to some AI libraries, but they’re a mess as soon as you go looking for points of improvement.

          • unique_hemp@discuss.tchncs.de
            link
            fedilink
            arrow-up
            0
            ·
            7 months ago

            Love the part where he claims that if your users are authenticated, it’s not untrusted input. I mean, surely you trust all of your users to run any code on your server, right?

      • billwashere@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        7 months ago

        Which is funny because when I first started my CS degree in the late 80s (get off my lawn) we used to make fun of the beginning Java classes because it seems 90% of coding was to import the right library.

    • Otter@lemmy.ca
      link
      fedilink
      English
      arrow-up
      0
      ·
      7 months ago
      from Lemmy import Upvote
      from Fediverse import Posts
      from ActivityPub import Submit
      
      target_post = 'https://lemmy.ca/post/18691085'
      num_votes = 8
      
      post = Posts.open(target_post)
      
      package = Upvote(post, num_votes)
      
      package.Submit(target_post)
      

      or something