• 1 Post
  • 37 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle
  • Derin@lemmy.beru.cotoFediverse@lemmy.worldMatrix 2.0 Is Here!
    link
    fedilink
    English
    arrow-up
    32
    ·
    edit-2
    6 days ago

    It’s the issues with XMPP’s spec: you don’t just use XMPP, you use XMPP + your favorite optional spec implementations.

    If your friends aren’t on the same server/client combo then you won’t be able to communicate with them (effectively).

    I loved XMPP, still do, but haven’t used it in years. If it were to get a single, matrix-style “spec release” (think an aggregation of existing features into one collection) that contains/requires a bunch of modern chat features I’ve come to expect from programs, then I could see it potentially having a resurgence.


  • I’m very excited for this! Granted, I do wish they’d stop “announcing” Matrix 2.0, but I think the release of SSS alone is reason enough for celebration.

    I have sync issues with even Slack or WhatsApp when I use an old device that hasn’t updated in a while - Matrix’s new sync scheme is genuinely fantastic and fixes all the issues my aging synapse server was having (4+ year server means those initial syncs on log-in could tak upwards of 10 minutes).

    Now I just want Element Call to work with my pre-existing accounts and then I’ll be ready for the next Matrix 2.0 announcement 😂




  • Derin@lemmy.beru.cotoFoodPorn@lemmy.worldKatz's Deli pastrami
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    1 month ago

    This place is known for both their price and portion size. I generally get two meals out of a single $30 sandwich.

    Regardless of how popular the place is with tourists, it is still a classic.

    And, bonus: if the line is too long you can just go to Russ and Daughters a block away and grab a pastrami lox bagel (see attached).













  • Nope, was added to dot Net after the fact. Normally you declare each type by hand, e.g.

    ArrayList<int> myCoolList = new ArrayList<int>();

    vs

    var myCoolList = new ArrayList<int>();

    The second example is why the keyword was added, but now imagine you have a function call returning an unknown type, and then things will start to get super funky.

    E.g.

    var myCoolBook = BuildBookData(input);

    …one step forward and then the same step back 😂 (disclaimer: I do actually like C#, though)