Skip Navigation

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/)SM
Posts
1
Comments
34
Joined
2 yr. ago

  • I've been using FolderSync. It let's you sync to/from a remote server through a bunch of different protocols like SMB, SFTP, and WebDAV. You can schedule it to run automatically.

    I haven't tried it myself, but I think there is a way you can get Tasker to run scripts in Termux. You could set up your own rsync scripts that way.

  • If you’re worried enough to encrypt the drive, you shouldn’t be auto mounting it.

    This really depends on your threat model. If you are only concerned about the drive getting stolen, or wanting to keep the data on it private if you need to RMA the drive, mounting it automatically on boot with a key stored on the rootfs can be perfectly fine. If you are a journalist in a hostile country and protecting your sources from state level actors is a matter of life and death, then yeah, this would be woefully insufficient.

  • It might be due to https://github.com/systemd/systemd/issues/33083.

    Try disabling user session freezing when sleeping:

    sudo systemctl edit systemd-suspend.service

    Add the following to the file:

     
        
    [Service]
    Environment="SYSTEMD_SLEEP_FREEZE_USER_SESSIONS=false"
    
      

    Reload systemd:

    sudo systemctl daemon-reload

    After that, try sleeping and waking again.

  • It can be. Some of those keys might just taking advantage of regional pricing to buy keys in cheaper markets and resell them elsewhere, but some of them are purchased using stolen credit cards. Those actually cost the devs money from chargeback fees once the actually owner of the credit cards finds the fraudulent transactions. It's hard to say how many of them are from stolen credit cards, and key-resellers try to stop it, but it still happens. This was back in 2019, but the Factorio devs had a couple blog posts talking about G2A:

    Blog post saying G2A is worse than piracy

    Follow up blog post where G2A reimburses them (at very bottom)

  • What filesystem are you using on the external drive? If it is NTFS or FAT, they won't store permissions on the filesystem, which would explain why the owner/group changes are not persistent. To fix that, you can set the uid/gid on mount in your fstab.

     
        
    /dev/mapper/YOUR_DRIVE /path/to/mnt <fstype> rw,uid=<jellyfin_uid>,gid=<jellyfin_gid>,dmask=0002,fmask=0113
    
      
  • Are you using the default bridge? I have a similar setup (with Traefik instead of NPM), and for each compose file am using separate networks for the internet, proxy, and backend services.

     
        
    services:
      some_service:
        ...
        networks:
          - frontend_network
          - proxy_network
          - backend_network
      backend_service:
        ...
        networks:
          - backend_network
    networks:
      frontend_network:
        driver: "bridge"
      proxy_network:
        driver: "bridge"
        internal: true
      backend_network:
        driver: "bridge"
        internal: true
    
      
  • All video codecs are lossy, meaning you will lose some quality. AV1 and H.265 are modern video codecs with the best quality to bitrate ratios, meaning you can get better quality for the same bitrate, or the same quality with a lower bitrate. The downside the these codecs is that they are very complex and computational expensive to do in software. You'll want to make sure your GPU supports hardware encoding for the codecs you intend to record with. The reason most people will recommend AV1 over H.265 is that AV1 is royalty free. With H.265, companies have to pay a royalty to use H.265. Because of this, most companies (Netflix, YouTube, Facebook, Twitch, etc.) want to use AV1 going forward, meaning in the near future, it will probably be the dominant codec.

  • Then which Apple phone are you talking about? The iPhone 15 is pretty much the same size as the Pixel 8. The iPhone SE is the only small phone Apple seems to make, and from what I can tell from a quick search, they aren't selling a lot of them.

  • Then Linus responded pretty poorly (and ended up stepping down as CEO and is now a chief creative something or other iirc)

    Linus didn't step down in response to this. I don't remember the exact timelines, but he either stepped down before this, or was in already in the process of transitioning to the new CEO when this happened.

  • No. Modern SSDs are quite sophisticated in how they handle wear leveling and are, for the most part, black boxes.

    SSDs maintain a mapping of logical blocks (what your OS sees) to physical blocks (where the data is physically stored on the flash chips). For instance, when your computer writes to the logical block address 100, the SSD might map that to a physical block address of 200 (this is a very simplified). If you overwrite logical block address 100 again, the SSD might write to physical block address 300 and remap it, while not touching the data at physical block address 200. This let's you avoid wearing out a particular part of the flash memory and instead spread the load out. It also means that someone could potentially rip the flash chips off the SSD, read them directly, and see data you thought was overwritten.

    You can't just overwrite the entire SSD either because most SSDs overprovision, e.g. physically have more storage than they report. This is for wear leveling and increased life span of the SSD. If you overwrite the entire SSD, there may be physical flash that was not being overwritten. You can try overwriting the drive multiple times, but because SSDs are black boxes, you can't be 100% sure how it handles wear leveling and that all the data was actually overwritten.

  • pics @lemmy.world

    Penguins on Parade

  • Micay stepped down as lead developer and foundation director. I'm not sure what role he has with the project currently, but it seems like he plans on leaving the project entirely, long term. I haven't heard of any controversy since then. They've been hard at work and actually added support for Android Auto last month.

  • It's been a while since I took statistics, but yes, I guess that is a binomial distribution. It does not influence the results in the way you are implying it does, though. The calculator does actually account for it (the Population Proportion input), and the sample size actually decreases the lower/higher your proportion is. My point was that a question like, "Do you watch anime weekly," is not like a question like, "How many hours of anime do you watch in a week," where you certainly couldn't assume a normal distribution for the number of hours watched.