schoenwolf-schroeder
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
irelephant [he/him]🍭 to Programmer Humor@programming.devEnglish • 4 months ago

looks good to me

lemm.ee

message-square
46
fedilink
  • cross-posted to:
  • programmerhumor@lemmy.ml
1

looks good to me

lemm.ee

irelephant [he/him]🍭 to Programmer Humor@programming.devEnglish • 4 months ago
message-square
46
fedilink
  • cross-posted to:
  • programmerhumor@lemmy.ml
alert-triangle
You must log in or register to comment.
  • @Classy@sh.itjust.works
    link
    fedilink
    0•4 months ago

    I, too, place 2> /dev/null after every line

    • Billegh
      link
      fedilink
      0•4 months ago

      Yes, but 2>&1 > /dev/null is the real hero.

      • @far_university190@feddit.org
        link
        fedilink
        English
        0•4 months ago

        No, > /dev/null 2>&1 is. If try your example but with file instead null, stderr content not in file.

        Because x>y not redirect x to y, but duplicate y and set x to y-duplicate. See bash manpage REDIRECTION (your example in that section for what not work).

        As i understand, your example set 2 to what 1 is, then set 1 to null. Now 2 not null, but what 1 before.

        • Billegh
          link
          fedilink
          0•4 months ago

          So, the joke is that it should hide all output.

  • @SaharaMaleikuhm@feddit.org
    link
    fedilink
    0•4 months ago

    Eh it’s Javascript. Anything goes

    • irelephant [he/him]🍭OP
      link
      fedilink
      0•4 months ago

      Yeah, array.length is mutable in javascript. I’m surprised it caught on.

    • @perviouslyiner@lemmy.world
      link
      fedilink
      0•4 months ago

      https://github.com/mattdiamond/fuckitjs/blob/master/README.md

      • @coldsideofyourpillow@lemmy.cafe
        link
        fedilink
        English
        0•4 months ago

        this is fucking gold

    • @lesnout27@feddit.org
      link
      fedilink
      0•4 months ago

      If i can just suppress the warnings which need to be fixed till morning in my buggy code, anything goes!

  • @coldsideofyourpillow@lemmy.cafe
    link
    fedilink
    English
    0•4 months ago

    Actually fixing warnings is for noobs

    • @1rre@discuss.tchncs.de
      link
      fedilink
      0•4 months ago

      if they mattered they’d be errors I’m sure

      • @coldsideofyourpillow@lemmy.cafe
        link
        fedilink
        English
        0•4 months ago

        That’s when you do CTRL+C, CTRL+V

  • Karyoplasma
    link
    fedilink
    0•4 months ago
    if (error) {
        continue;
    }
    
    • @FooBarrington@lemmy.world
      link
      fedilink
      0•4 months ago
      try {
          operation();
      } catch {
          // nice weather, eh?
      }
      
      • @DjMeas@lemm.ee
        link
        fedilink
        0•4 months ago

        ☑️ PR Approved

      • Karyoplasma
        link
        fedilink
        0•
        edit-2
        4 months ago

        Starting with Java 21 (I think), they’ve introduced ignored variables, so you can now actually do this:

        try {
            operation();
        } catch (Exception _) {
            // nice weather, eh?
        }
        

        Edit: forgot that this is about JS lel

        • @__ghost__@lemmy.ml
          link
          fedilink
          0•4 months ago

          Same thing right?

          • Traister101
            link
            fedilink
            0•4 months ago

            If your joking yes, if your not Java and Java Script are seperate things.

            • @JustAnotherKay@lemmy.world
              link
              fedilink
              0•4 months ago

              Actually made this mistake in front of 20 people the other day. Guy at my job mentioned coding in java and I asked if he was doing web dev 🤦

              • @BangersAndMash@lemmy.world
                link
                fedilink
                0•
                edit-2
                4 months ago

                Plenty of java back end web development, so maybe not as embarrassing as you felt?

            • @dajoho@sh.itjust.works
              link
              fedilink
              0•4 months ago

              His joking?

        • @jubilationtcornpone@sh.itjust.works
          link
          fedilink
          English
          0•4 months ago

          So basically the same as a discard in C#?

          • Karyoplasma
            link
            fedilink
            0•
            edit-2
            4 months ago

            Yeah, Python has it as well. I think the only real use of it is code readability since you declare that this variable will never be used.

      • @MajorHavoc@programming.dev
        link
        fedilink
        0•4 months ago

        Thanks. I hate it.

      • @lengau@midwest.social
        link
        fedilink
        0•4 months ago
        with contextlib.suppress(BaseException):
            do_thing()
        
    • @Willem@kutsuya.dev
      link
      fedilink
      0•4 months ago

      On Error Resume Next

      Visual Basic is a beautiful language

      • @Knock_Knock_Lemmy_In@lemmy.world
        link
        fedilink
        0•4 months ago
        On error goto 0 
        

        Was always syntacticly confusing for me.

  • @brlemworld@lemmy.world
    link
    fedilink
    0•
    edit-2
    4 months ago

    I don’t get it. This isn’t funny. I wouldn’t approve it in merge request. Most wouldn’t.

    • @skrlet13@feddit.cl
      link
      fedilink
      0•4 months ago

      Trying to hide problems and incompetence is the joke. A lot of people don’t want problems solved, they just don’t want to see them, and will take the easy route. If you just want that, this is the easy route.

      Incompetent? Absolutely, that’s the joke.

  • @pscamodio@feddit.it
    link
    fedilink
    0•4 months ago

    Meanwhile in another universe one of my biggest win was to introduce this line in our PR validation pipeline.

    eslint . --max-warnings 0
    
    • @skuzz@discuss.tchncs.de
      link
      fedilink
      0•4 months ago

      Works so well, and soothes the warning annoyance brain, and keeps warnings from eventually becoming errors.

      • @pscamodio@feddit.it
        link
        fedilink
        0•4 months ago

        In a codebase with a lot of warnings is even better for me to add a disable comments for all the existing warning and then not allow any new one in.

        And then each time a part of the code needs to be touched the existing warning there should be solved too.

        • @jjjalljs@ttrpg.network
          link
          fedilink
          0•4 months ago

          Several times I’ve set the max warnings to whatever the current warning count is, and then decreased that over time.

  • @cbazero@programming.dev
    link
    fedilink
    0•4 months ago

    If it works, it works

    • @limer@lemmy.dbzer0.com
      link
      fedilink
      English
      0•4 months ago

      Sometimes it’s better to hope while closing eyes

    • @breakingcups@lemmy.world
      link
      fedilink
      0•4 months ago

      I would add: until it doesn’t.

    • @Isoprenoid@programming.dev
      link
      fedilink
      English
      0•4 months ago

      This is why:

      “It ain’t stupid if it works.”

      is fundamentally incorrect.

  • @wizardbeard@lemmy.dbzer0.com
    link
    fedilink
    English
    0•4 months ago

    -ErrorActionPreference SilentlyContinue

    • @MajorHavoc@programming.dev
      link
      fedilink
      0•4 months ago

      –yolo

  • @HipsterTenZero@dormi.zone
    link
    fedilink
    0•4 months ago

  • MaggiWuerze
    link
    fedilink
    0•4 months ago

    If it wanted to get my attention it should have been an error

  • Nicht BurningTurtle
    link
    fedilink
    0•4 months ago

    If I can’t see it, is it really there?

  • Ricky Rigatoni
    link
    fedilink
    0•4 months ago

    Warnings are for ignorings :3

  • @i_stole_ur_taco@lemmy.ca
    link
    fedilink
    0•4 months ago

    Warnings? We’ll come back and address those later. Maybe once we’re feature complete. Or maybe shortly after that.

    • @jubilationtcornpone@sh.itjust.works
      link
      fedilink
      English
      0•4 months ago

      Don’t worry. We’ll totally fix all of them soon. Promise. Hand to God. They definitely will not be here five years from now.

  • @Phoenix3875@lemmy.world
    link
    fedilink
    0•4 months ago

    edit: works better when used together with StackOverflow.comment.enabled = false;

Programmer Humor@programming.dev

!programmer_humor@programming.dev

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !programmer_humor@programming.dev

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

  • Keep content in english
  • No advertisements
  • Posts must be related to programming or programmer topics
  • 168 users / day
  • 495 users / week
  • 1.31K users / month
  • 3.85K users / 6 months
  • 23.4K subscribers
  • 1.27K Posts
  • 36.3K Comments
  • Modlog
  • mods:
  • Feyter
  • adr1an
  • @BurningTurtle@programming.dev
  • Pierre-Yves Lapersonne
  • BE: 0.19.3
  • Modlog
  • Instances
  • Docs
  • Code
  • join-lemmy.org