• 5 Posts
  • 212 Comments
Joined 1 year ago
cake
Cake day: June 2nd, 2023

help-circle
  • Oh I didn’t thing about access points. With something like ZigBee, the switches add to the network range. But for WiFi, each switch will need to be in range of an access point. We have pretty decent coverage but the benefit of using ZigBee is other devices can take advantage of the extended network.

    Others have talked about Zwave, I’m not sure which camp they sit in.







  • I never knew about it until now and I’ve used GIMP often enough, but if I was going to assign a keyboard shortcut, that makes sense. Ctrl +A select all. Ctrl + Shift + A select none.

    Shift is the oppositer (reverser?). Tab goes to next field, Shift + Tab goes in reverse order. Ctrl + T open new tab in browser, Ctrl + Shift + T reopen last closed tab - OK that’s not exactly opposite but close enough.













  • I have minor beef with Immich and basically any larger project and the way they go about their Docker Compose. Basically I feel they make the assumption that they’re the only thing running.

    ^Disclaimer: I fully accept this is all just me being too stupid and not the Immich development team.

    This might be my turn to be too stupid but isn’t the point of docker that they all run in containers so it doesn’t matter? They can all use the same database port, because the database is in a container and so doesn’t prevent another database container using the same port. The port doesn’t need to be exposed to the host.

    The only issue that comes up when running lots of services is accessing them all over http, and that’s what a reverse proxy is for. I run a dozen services on the same machine, mostly using the default docker compose files, and never have to mess with things like you have here.