write clean code

write clean code

  1. 4 weeks ago
    Anonymous

    "Clean your code, bucko!"

  2. 4 weeks ago
    Anonymous

    no

  3. 4 weeks ago
    Anonymous
  4. 4 weeks ago
    Anonymous

    >wash your keyboard

  5. 4 weeks ago
    Anonymous
  6. 4 weeks ago
    Anonymous

    *AND YOUR CODE WILL GET 15X SLOWER OR MORE WHEN YOU DO IT

    • 4 weeks ago
      Anonymous

      >uses dynamic instead of static polymorphism
      >performance goes to shit
      >surprised pikachu face

      • 4 weeks ago
        Anonymous

        You first

        How would you use static polymorphism with Clean Code in the shape areas sum example?

        • 4 weeks ago
          Anonymous

          Why would you use polymorphism for that at all? Just make a "HasArea" interface. Works in Go.

          • 4 weeks ago
            Anonymous

            That wouldn't solve the performance problem at all. Each class would implement the Area method differently, so you're still reading a virtual table at runtime.

            • 4 weeks ago
              Anonymous

              Avoid speaking if you don't know what you are talking about

              • 4 weeks ago
                Anonymous

                So you don't know. Great.

        • 4 weeks ago
          Anonymous

          You could use CRTP or visitor pattern (like std::visit). The latter is better in this case IMO.

          • 4 weeks ago
            Anonymous

            >CRTP
            Jesus. Sepples will never cease to amaze me with "this one weird trick to work around language limitations".

  7. 4 weeks ago
    Anonymous
  8. 4 weeks ago
    Anonymous
  9. 4 weeks ago
    Anonymous
  10. 4 weeks ago
    Anonymous

    His videos are infantilizing, like all of "Agile (noun)"

  11. 4 weeks ago
    Anonymous

    lets start this up again

    CLEAN COPE SISTERS, I DONT FEEL SO GOOD

  12. 4 weeks ago
    Anonymous

    foo in the loo

  13. 4 weeks ago
    Anonymous

    in java

    • 4 weeks ago
      Anonymous

      unironically
      https://web.archive.org/web/20110615131732/http://java.sun.com/developer/technicalArticles/Interviews/devinsight_1/

  14. 4 weeks ago
    Anonymous

    Casey says no.
    I listen to industry people not some boomer that's got an academic "reputation" and "income" to protect. These are the last people on god's green earth that you should be taking advice from.

    • 4 weeks ago
      Anonymous

      fwiw you should understand the arguments over taking advice based on credibility/reputation.

    • 4 weeks ago
      Anonymous

      >casey
      >industry
      he's a professional youtuber who's never had any real accomplishments besides minor contributions to old games.

      • 4 weeks ago
        Anonymous

        even if that was true that is still more than the boomer

    • 4 weeks ago
      Anonymous

      fwiw you should understand the arguments over taking advice based on credibility/reputation.

      And now you see why it's best to focus on the problem not the people. You quickly attract idiots like

      >casey
      >industry
      he's a professional youtuber who's never had any real accomplishments besides minor contributions to old games.

      who can't wait to gossip like like a hairdresser about someone's reputation.

      • 4 weeks ago
        Anonymous

        The fact that he hasn't worked professionally in 10+ years is relevant to the fact that he doesn't understand concepts intended for software development done in teams...

    • 4 weeks ago
      Anonymous

      >casey
      >industry
      whomst? I see he has credits on some 20 year old games like AOE3, but nothing innovative

    • 4 weeks ago
      Anonymous

      >industry people
      >popsci-equivalent youtuber "game dev"

    • 4 weeks ago
      Anonymous

      Which industry? They have varying requirements even project to project: some lean towards bob, others towards casey, and others find a balance.

  15. 4 weeks ago
    Anonymous

    why would I. AI does that for me now

    • 4 weeks ago
      Anonymous

      show us something that AI wrote for you anon

  16. 4 weeks ago
    Anonymous

    clean code

  17. 4 weeks ago
    Anonymous

    >write clean code
    Newsflash pal. I'm a larping neet using vim on loonix because I type so fast an IDE can't keep up with all the amazing code I'm writing. I don't have time to think about what I'm writing. Gotta go fast.

  18. 4 weeks ago
    Anonymous

    The only reason I don't still write self-modifying code is because it fucks with these newfangled instruction cache things.
    TL;DR: FOAD.

  19. 4 weeks ago
    Anonymous

    //hey this is anon here's my code 🙂
    public static volatile final double thisMethodGetsAnAverage(final int first, final int second, final int third, int size) { //arguments 🙂
    int addition = first + second;
    int addition2 = addition + third;
    Double average = addition2 / size;
    return average;
    }

    public static volatile final double thisMethodGetsAnAverage(final int first, final int second, int size) { //overload!!!:)
    return thisMethodGetsAnAverage(first, second, 0, 2);
    }

    public static volatile final double thisMethodGetsAnAverage(final int first, int size) { //extra credit overload!!! >;*~~
    return thisMethodGetsAnAverage(first, 0, 0, 1);
    }

    //XD that's my code! Hope you enjoyed

  20. 4 weeks ago
    Anonymous

    Uncle Bob is the definition of peak midwit.

  21. 4 weeks ago
    Anonymous

    is this how old programmers look? overweight and poor?

Your email address will not be published. Required fields are marked *