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

help-circle
  • Konlanx@feddit.detoProgrammer Humor@lemmy.mlWith PieMixin
    link
    fedilink
    arrow-up
    16
    ·
    edit-2
    1 year 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








  • Ich habe mich früher auch oft aufgeregt und versucht, mich zu verteidigen, schließlich war ich ja eigentlich immer im Recht, wenn die Autofahrer sich mal wieder daneben benommen hatten. Allerdings musste ich feststellen, dass all meine Mühen und Energie zu keiner Verbesserung der Allgemeinsituation geführt haben und damit sinnlos verschwendet waren.

    Dementsprechend ignoriere ich das nun. Lass sie schreien, lass sie hupen, das ist nur ein Geräusch, das irgendwo produziert wird. Sollten sie handgreiflich werden, täusche rechts an, schlage links zu, rufe anschließend die Polizei.









  • 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
    2 years 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.