BakedCatboy

joined 2 years ago
[–] BakedCatboy@lemmy.ml 4 points 2 weeks ago

Hopefully forgefed (based on activity pub) helps with this - in theory you could use your codeberg account to open issues on repos hosted on other instances. I believe forgejo is working on implementing it.

[–] BakedCatboy@lemmy.ml 1 points 1 month ago* (last edited 1 month ago)

It looks like it's about helping to audo deploy docker-compose.yml updates. So you can just push updated docker-compose.yml to a repo and have all your machines update instead of needing to go into each machine or set up something custom to do the same thing.

I already have container updates handled, but something like this would be great so that the single source of truth for my docker-compose.yml can be in a single repo.

[–] BakedCatboy@lemmy.ml 11 points 1 month ago* (last edited 1 month ago)

I use gluetun to connect specific docker containers to a VPN without interfering with other networking, since it's all self contained. It also has lots of providers built in which is convenient so you can just set the provider, your password, and your preferred region instead of needing to manually enter connection details manage lists of servers (it automatically updates it's own cached server list from your provider, through the VPN connection itself)

Another nice feature is that it supports scripts for port forwarding, which works out of the box for some providers. So it can automatically get the forwarded port and then execute a custom script to set that port in your torrent client, soulseek, or whatever.

I could just use a wireguard or openvpn container, but this also makes it easy to hop between vpn providers just by swapping the connection details regardless of whether the providers only support wg or openvpn. Just makes it a little more universal.

[–] BakedCatboy@lemmy.ml 10 points 1 month ago (1 children)

Supposedly comaps has carplay support as of like 2 months ago, according to a page on their website

[–] BakedCatboy@lemmy.ml 5 points 1 month ago (1 children)

Sounds like a job for a pair of second hand nanobeams or something similar.

I second the other commenter who suggested using WISP gear. If you have clear fresnel zones it should work a treat.

[–] BakedCatboy@lemmy.ml 7 points 1 month ago

I second this. Gluetun makes it so easy, working with docker's internal networking is such a pain.

[–] BakedCatboy@lemmy.ml 2 points 2 months ago

I love to see this. It is kinda weird to have to use rolls, but I guess the mechanical complexity of separating sheets and feeding them reliably is not fit for an MVP. I wonder how accurately the cut sheets would stack with individual sheets of another brand.

[–] BakedCatboy@lemmy.ml 3 points 2 months ago

Luckily they are on 2.0.1 now so there has been 2 stable version by now

[–] BakedCatboy@lemmy.ml 19 points 2 months ago (1 children)

Is external libraries maybe what you're looking for?

[–] BakedCatboy@lemmy.ml 3 points 2 months ago* (last edited 2 months ago)

There's already an issue open for it: https://github.com/immich-app/immich/issues/1713

Be sure to thumbs it up!

[–] BakedCatboy@lemmy.ml 10 points 2 months ago

A while ago I got tired of tracks going missing from my playlists because of stuff being removed from Spotify so I started buying everything on Bandcamp and then playing it from my jellyfin using finamp.

[–] BakedCatboy@lemmy.ml 2 points 2 months ago

If you search for pfsense alias script, you'll find some examples on updating aliases from a script, so you'll only need to write the part that gets the hostnames. Since it sounds like the hostnames are unpredictable, it might be hard as the only way to get them on the fly is to listen for what hostnames are being resolved by clients on the LAN, probably by hooking into unbound or whatever. If you can share what the service is it would make it easier to determine if there's a shortcut, like the example I gave where all the subdomains are always in the same CIDR and if one of the hostnames is predictable (or if the subdomains are always in the same CIDR as the main domain for example, then you can have the script just look up the main domain's cidr). Another possibly easier alternative would be to find an API that lets you search the certificate transparency logs for the main domain which would reveal all subdomains that have SSL certificates. You could then just load all those subdomains into the alias and let pfsense look up the IPs.

I would investigate whether the IPs of each subdomain follow a pattern of a particular CIDR or unique ASN because reacting to DNS lookups in realtime will probably mean some lag between first request and the routing being updated, compared to a solution that's able to proactively route all relevant CIDRs or all CIDRs assigned to an ASN.

view more: next ›