• 0 Posts
  • 91 Comments
Joined 1 year ago
cake
Cake day: December 12th, 2023

help-circle

  • What happens if the NAS dies though? What does recovery look like?

    Is it possible to recover the data from the drives without Synology’s OS? If so what is that process and how difficult is it to do correctly?

    I know that with ZFS, recovery is independent of vendor OS and/or hardware, so if the hardware dies you can just throw the drives into any COTS system with enough ports, but I’m genuinely unsure if that is the case for Synology or not.


  • ZFS, btrfs, and other software RAID solutions can use mixed drives w/o much issue as long as you make sure that the capacities match or that you set the array up with the smallest disk size in mind.

    Do not use hardware raid controllers. They provide no meaningful performance benefit over software raid and make data recovery much more difficultm(if not impossible) in the event of hardware failure.





  • I’ve done something extremely similar with a custom NixOS iso for my docker VMs to make versioning and backups easier (golden image live disk with SSH+Docker+Dockge shared between all VMs + local persistent storage specific to each VM).

    You can configure frigate via OCI container with custom config, as well as NFS mounts, SSH server, etc and then have a read-only live disk that boots up, mounts NFS share, and then starts up frigate.


  • I use a pair of small (2"x2" maybe) cheap adjustable adhesive parabolic mirrors, one at the outer bottom corner of each side view mirror and angled down towards the rear wheels for this purpose.

    That way they are there for backing in or lining up the back of the vehicle pulling in, but the main mirrors can be aimed better for general use.


  • mlaga97toTransfem@lemmy.blahaj.zoneGirl tips?
    link
    fedilink
    arrow-up
    7
    ·
    20 days ago

    you might have another 9+ months before you can’t boy-mode anymore

    This is pretty much exactly what I did, started HRT, let it cook for about 8 months, and them was able to transition socially in a much more ‘flip the switch kind of way’.

    Most of my dysphoria was hormonal though, I did not like the way T made me feel at all. The social aspect was less immediately urgent for me personally, but that may not be true for everyone.

    Bonus info: Calvin Klein sells a no-show sports bra that does a very good job of hiding breast development for a while under even a fitted T-shirt. It has enough padding to hide pokies and protect from bumping against stuff early on, saving a lot of pain and trouble.



  • Yeah, I used Chrome up until extremely recently because genuinely no browser Just Works to the extent Chrome does.

    Fast, good media codec support, Web API support for hardware access for PWAs, doesn’t lock up w/ a lot of tabs (post-quantum FF is better about this, but not quite there), excellent DevTools, and just generally snappier and more polished than even chromium.

    I switched to firefox recently exclusively for better home-manager support, and other than the ability to use home-manager more easily, it’s just a slightly slower and jankier experience at all times whether it’s requiring transcode for Jellyfin, laggy WebGL performance, janky DevTools, or missing WebAPIs.


  • Why are you being so condescending about this?

    FPGAs are a great tool, but they’re not magic.

    They are a great way to prototype ASICs or for performing relatively simple low latency/high-throughput tasks below the economies of scale where actually taping out an ASIC would make sense but there is pretty much no case where an FPGA with a bunch of the same logic path is going to outperform a dedicated ASIC of the same logic.

    NPUs are already the defacto ASIC accelerator for ML. Trying to replicate that functionality on an FPGA fabric of an older process node with longer path lengths constraining timing is going to be worse than a physically smaller dedicated ASIC.

    It was the same deal with crypto-mining, the path for optimizing parallel compute is often doing it badly on a GPU first, moving to FPGA if memory isn’t a major constraint, then tape out ASICs once the bugs in the gateware are ironed out (and economies of scale allow)

    And that doesn’t even begin to cover the pain of FPGA tooling in general and particularly vendor HLS stacks.





  • I use a Philips Norelco 2000-series electric foil shaver for face, chest, forearms, calves, and tummy, which combined is like 80% of my shaving activities. It works really well for me in those broad and relatively taut-skin areas, but very poorly on insides of joints like armpit where it tends to pinch. Blades last forever and it is quickly more cost effective over disposable or cartridge razors and is also quick easy, and causes a lot less razor burn for face shaving for me than anything else.

    For the rest I use a mix of cheap disposable 2-blade razors on areas where I really want a new clean blade every time for hygiene purposes and a multiblade cartridge/“cartridge razor”. I was using the gillette proglide 5-blade cartridges which work well but cost a lot, but eventually got a 3-blade leaf razor (safety razor in the form factor of a cartridge razor) which I have liked tremendously for thighs, armpits, and other areas the foikd shaver doesn’t work well for.



  • Plain old docker compose since it seems to come with by far the fewest surprises and is most widely supported.

    Nearly every project of interest has a compose.yml available, which is hardly true for systemd services, nix services, or for podman/kubernetes.

    I was using podman-compose briefly, but it is just different enough to break in unclear ways and I kept having to fight with it so I went back to docker docker to eliminate the headache.