Skip Navigation

User banner
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)U
Posts
7
Comments
1235
Joined
2 yr. ago

"then" is used to depict time, sequence or a causal relationship. "than" is used with comparative adjectives, to depict comparison.

  • Might as well get one of the printers used by the national mint, to print your constellation.

  • In that case, make sure the judge gets to watch 4x 10 minute ads for every 30 minutes of watching anything in 720p after having paid in full for the highest tier 4K subscription plan.

  • Technically that's true.You just need to lay the 100Tb/s capable cable in the first place.

  • And blockchain DNS?

  • Vibe coding tools are very useful when you want to make a tech movie but the hollywood command just does not cut it.

  • Guess my mail@IPv6 won't be accepted because I was too poor to pay for a domain name after having paid for a static IPv6.

  • I have a feeling, the ones codapine is stating, didn't even care to half-read the spec and just went with what they knew from experience.Maybe they didn't even know there was a spec.Maybe they asked ChatGPT for the regex.

  • I got 11.The spaces and quotes caught me.

  • Permissive licenses are more popular with new projects.

    Hmm, interesting trend. I didn't know about this.

  • In reality, if you bathe too much you just stand to lose too much sebum, making it easier for dirt to stick to your skin (and harder to remove) until the layer forms again.

  • hehe yeah

    Your full file extension ends up being: MM.DD-textbut hopefully noone needs to parse it that way.

    I tend to use YYYY-MM-DD_hh:mm:ss.zzz or YYYY-MM-DD_hh-mm-ss.zzz depending upon the requirement and just recently realised the problem with the . before the zzz.Luckily I don't need to add the zzz quite often.

  • Oh, it was just filenames, not everything-everywhere?Then I guess it's fine.

    What's this date btw?10/8/10

  • No.

    The internet in my country has high ping all over the place.So I never had a good enough experience with Online Multiplayer games for them to keep me on Windows.


    I wasn't playing online games most of the time anyway, before switching to Linux.

    I do play Elite: Dangerous, but that works pretty fine even with bad pings and it works very well on Linux.

  • Work computers had Gnome on Ubuntu, RHEL etc.

    I installed my Debian with KDE.

  • I just had to change my expectations a bit (which might be a lot for some), but the end result is pretty good.Always having bad Ping times in multiplayer games, helped out a lot with it.

  • So, was the time of murder 20th of October 2021 - 1:25 PM or 21st of October 2020 - 1:25 AM?

    Depending upon that, you may/may-not have an alibi.

  • our digital identification system

    which one?

  • I see, so logically it is fine.Just not in the context.

  • Same as ?

     C++
        
    std::optional<bool> role;
    
    if (role.value())
    { std::cerr ("User is admin");}
    else if (!role.value())
    { std::cerr ("User is not admin");}
    else if (!role.has_value())
    { std::cerr ("User is not logged in");}
    
      

    Here has_value() should have been checked first, but the JS seems kinda fine.Which is it?