• 0 Posts
  • 110 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle








  • orangeboats@lemmy.worldtoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    36
    ·
    edit-2
    18 days ago

    Servo was an experimental ground for Mozilla in some ways (like testing out a new CSS engine and porting it back to Gecko if it works). So it’s quite normal for people to be unaware of it, it was not meant for the public.

    But later on it was abandoned by Mozilla and stuck in a limbo, until it got picked up by the Linux Foundation. Now it’s a standalone project and I wish them well. We really need a new FOSS web engine.






  • The modern electronic devices are far more railroaded than it was back in the day tho.

    Want to download an application? There’s the App Store. No need to download random .exes from sketchy websites (and learn what a “computer virus” is the hard way)

    Downloaded a picture? It’s instantly inside your gallery. Back then we needed to find a folder called “Download” or “My Documents” using something called the Explorer!

    iPhone and Android made a lot of things dumber and easier to take in, but I feel like it had a detrimental effect on digital literacy.


  • orangeboats@lemmy.worldtoLinux Gaming@lemmy.worldJust Switch Over
    link
    fedilink
    English
    arrow-up
    50
    arrow-down
    3
    ·
    edit-2
    1 month ago

    The “quit having fun” meme is ironically becoming as cringey as the thing it is originally complaining about.

    You will help the community more by telling non-Linux people why Linux gaming is better, and this meme is doing the exact opposite of it – “oh Linux can’t play some games, yada yada. But we are still better! Switch over!” – like what’s the logic of it?

    What’s the purpose of this meme other than circlejerking?

    Disclamer: I am a Linux user myself, started with Debian and is now using Arch Linux.

    I will share some advantages I experienced in Linux gaming:

    1. Alt-tabbing old fullscreened games won’t mess with my monitor.

    2. The compatibility of Wine when it comes to some older games is wild. SimCity 4 actually crashed less when I played it on Linux.

    3. Better performance across the board. Granted it’s just a mere 5% difference but I will take it, why not.




  • I use IPv6 exclusively for my homelab. The pros:

    • No more holepunching kludge with solutions like ZeroTier or Tailscale, just open a port and you are pretty much good to go.

    • The CGNAT gateway of my ISP tends to be overloaded during the holiday seasons, so using IPv6 eliminates an unstability factor for my lab.

    • You have a metric sh*t ton of addressing space. I have assigned my SSH server its own IPv6 address, my web server another, my Plex server yet another, … You get the idea. The nice thing here is that even if someone knows about the address to my SSH server, they can’t discover my other servers through port scanning, as was typical in IPv4 days.

    • Also, because of the sheer size of the addressing space, people simply can’t scan your network.


  • orangeboats@lemmy.worldtoProgrammer Humor@programming.devJavaScript
    link
    fedilink
    arrow-up
    27
    arrow-down
    2
    ·
    3 months ago

    This is why I try my damnedest not to write in weakly typed languages.

    string + object makes no logical sense, but the language will be like “'no biggie, you probably meant string + string so let’s convert the object to string”! And so all hell breaks loose when the language’s assumption is wrong.