• 0 Posts
  • 11 Comments
Joined 2 years ago
cake
Cake day: May 31st, 2023

help-circle
  • Await is usually there either because the performance doesn’t matter and the legibility is much higher with it, and/or because there are a series of asynchronous actions that depend on each other and await lets you write them as if they are sync because related to each other they are.




  • It’s more language dependent than ide. Go for instance makes unused variables a compiler error (I believe) which means ides mark it as red immediately.

    Ts/js can have eslint rules against unused variables but they will still usually compile or just run directly anyway.

    Java doesnt error but can be set to warn you on them.

    Abap doesn’t care and won’t tell you.

    Your mileage will vary.







  • React is miles ahead of a bunch of much older frameworks businesses still use. I have projects being built new right now that use ui5 from sap. We have projects with spring boot with the templates in jsp.

    I would much prefer a react project to ui5 or jsp. And businesses with long running projects tend not to like using frameworks that don’t have at least ten years of usage and thus some proven surviveability unfortunately.


  • Luvon@beehaw.orgtoProgrammer Humor@lemmy.mldo as i say...
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 year ago

    Character limits and a stupid badly used Hungarian notation to waste limited characters to tell use what the ide already knows.

    If you have a table, (that’s an array for sane programmers) name the variable as a plural and we will know it’s a table.

    Don’t name two variables the same stupid abbreviation with different Hungarian notation characters stuck to the front