• 1 Post
  • 22 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle


  • Notesnook locked my session every other week requiring me to authenticate again. But it doesn’t even do this like every other app out there, it first asks for the TOTP code and then for the password. So reverse from how password managers work, requiring a lot of manual back and forth.

    So quickly writing a thought down sends me into a chain of context switches and completely disrupts me.

    I gave up after a while. Happened on all my devices too, so it wasn’t a weird setup either.


  • aksdb@feddit.detoProgrammer Humor@lemmy.mlPHP is dead?
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    1 year ago

    If you run it in old-school CGI mode, no, because each request would spawn a new process. But that’s nowhere near state-of-the-art. So typically you would still have a long-running process somewhere that could manage a connection pool. No idea if it does, though. Can’t imagine that it wouldn’t, however, since PHP would be slaughtered in benchmarks if there was no way to keep connections (or pools) open across requests.







  • Damn, I never saw it that way. In that regard the EU regulation could actually harm the browser market, because it lowers the incentive for service providers to support anything but Chrome. At the moment that would exclude all iPhone users (which hurts business, because that’s a lot of users with large pockets). But then they could simply shrug and tell their users to install Chrome. 😐️





  • aksdb@feddit.deOPtoSelfhosted@lemmy.worldDigital Wardrobe?
    link
    fedilink
    English
    arrow-up
    8
    ·
    1 year ago

    I have probably around 40 T-Shirts (most with some funny or technical prints), obviously several business shirts in different colors, different trousers, etc.

    I have difficulty keeping an overview and keep reusing only a very small subset. I also don’t want to pull them all out of the wardrobe each time to sift through them to figure out what would fit my mood today.

    For cloths (bed cloths especially) the problem is mostly that their instructions are unreadable after a while and I then have no clue what I can wash at 95°C, what only at 60 an what may only survive 40.







  • Same experience here. S3 is essentially a key/value store to simply put and retrieve large values/blobs. Everything resembling filesystem features is just convention over how keys are named. Comminication uses HTTP, so there is a lot of overhead when working with it as an FS.

    In the web you can use these properties to your advantage: you can talk to S3 with simple HTTP clients, you can use reverse proxies, you can put a CDN in front and have a static file server.

    But FS utils are almost always optimized for instant block based access and fast metadata responses. Something simple like a find will fuck you over with S3.


  • aksdb@feddit.detoSelfhosted@lemmy.worldWhat file system do you use and why?
    link
    fedilink
    English
    arrow-up
    30
    arrow-down
    1
    ·
    1 year ago

    ZFS. I want snapshots, volumes, encryption etc. btrfs fucked me over too often. Also I prefer the semantics of the zfs and zpool utils and the way mount points are handled. Thanks to ZFSBootMenu I can even have /boot as a zfs volume and have it therefore incluced in my snapshots. And did I mention that all of that is encrypted? Anyway. Love it.