• 0 Posts
  • 39 Comments
Joined 8 months ago
cake
Cake day: August 10th, 2025

help-circle



  • When I built my NAS I intentionally bought the latest gen cpu, but kept it in to the 65W series with a GPU chip onboard. It’s an AMD Ryzen 5 7600 6-Core @ 3800 MHz. My coral usb does frigate and the integrated graphics chip does jellyfin just fine. I started with ssds, but half of them burned out pretty quick, so I replaced them with spinning rust. But, as-is it can run for an hour on my desktop grade UPS before it shuts down. My proxmox cluster is old laptops that mount an NFS drive from my NAS. So, yes, I took power efficiency into account.








  • I’m not saying you should trust every VPN provider. Some have shown to be nore trustworthy than others. Police have raided their datacenrers and not gotten anything (no logs). And they have gone to courts and said they don’t keep that info. However if you don’t trust your ISP, and purely use a VPN, the only info your ISP will get is that you use a VPN. Your encrypted bank packet that they saw before is now an encrypted vpn packet. The vpn will see the encrypted bank packet, but youmre right, you have to trust that they have more to gain by not looking and selling than they gain by selling your info and losing customers.




  • While your ISP can’t see everything, they can see metadata. They can see which websites you go to, which social media you use the most, where you bank, where you shop, etc. How much do you think it would take for your ISP to sell that data? If you happen to live somewhere there are laws againat that, you are slightly less at risk. Fines are only a deterrant if they’re more than what’s being offered for your data.

    That being said, this only protects you against your ISP or other purely ipaddress based info gatherers. Apps/social media/websites don’t purely use ipaddresses to track you.





  • If you don’t shy away from python, I just use the requests library most of the time:

    homeserver_url = “XXX”

    access_token = “XXX”

    room_id = “!XXX”

    url = f{homeserver_url}/_matrix/client/r0/rooms/{room_id}/send/m.room.message"

    headers = {“Authorization”: f"Bearer {access_token}",“Content-Type”: “application/json”,}

    data = “msgtype”: “m.text”,“body”: “Question of the day!”,}

    response = requests.post(url, headers=headers, data=json.dumps(data))

    Alternatively I also have a bot I use in NodeRed connected to Home Assistant.

    Double Alternatively, I’ve used AppRise successfully within various tools like ChangeDetection to notify me via matrix.