• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: July 31st, 2023

help-circle
  • Konlanx@feddit.detoProgrammer Humor@lemmy.mlWith PieMixin
    link
    fedilink
    arrow-up
    25
    ·
    edit-2
    10 months ago

    This is likely referring to TypeScript.

    TypeScript has all of these patterns, they are used very frequently and they are necessary because TypeScript tends to be interesting from time to time since its types only exist at compile time, because it compiles to JavaScript, which is a language without types.

    TypeScript also allows any as a keyword, which says “I don’t know which type this is and I don’t care”, which still produces valid JavaScript. To get back to typed variables it is necessary to use typeof (or similar constructs like a type guard).

    https://www.typescriptlang.org/docs/handbook/2/typeof-types.html





  • Not the original commenter, but the guy juggling 5 drinks deserves no tip. He deserves a fair pay and the stuff the customer buys should be priced in such a way it enables fair pay.

    I am not from the US and delivery drivers here don’t even expect a tip. I order my stuff, pay exactly what the menu said (and maybe a deliver fee, which is fine to me, you then usually have the option to come and pick it up without that fee) and get my food 30 minutes later.

    Tipping is an extremely bad practice that makes the pay of people unpredictable and depending on their situation can make a day with bad tipping a problem for them.

    Stop tipping.










  • JS !== Java

    Try Javascript some day!

    • We have truthy and falsy! Empty string or null? Yeah, that’s false!
    • Of course we can parse a string to number, but if it’s not a number it’s NaN!
    • null >= 0 is true!
    • Assign a variable with =, test type equality with == and test actual equality with ===. You will NEVER use the wrong amount of = anywhere, trust me!
    • Our default sort converts everything to string, then sorts by UTF-16 code. So yes, [1, 10, 3] is sorted and you are going to live with it.
    • True + true = 2. You know I’m right.

    Try Javascript today!


  • Konlanx@feddit.detoSelfhosted@lemmy.worldMy own mail server
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    1 year ago

    I have my own mailserver just for me and it wasn’t that complicated to be honest. I set it up with Mailcow in Docker in under a day. So far it has been stable with regular backups and updates through Lighthouse.

    Maintenance comes down to 5 minutes every three months because somehow Let’s Encrypt and Mailcow don’t like each other and I have to renew the certificate manually.