• 0 Posts
  • 72 Comments
Joined 1 year ago
cake
Cake day: July 7th, 2023

help-circle



  • Is the issue their censoring content globally or just at all. Twitter for example is known to cave to local governmental pressure but I suppose its limited to a particular region and people outside of there are still allowed access. Really I’m more disturbed anyone is careless enough to rely on social media for news. It’s no secret their all just regurgitating what they or the platform owners want. Most youtubers actively avoid controversial content just to avoid demonitisation; if youre on a platform like truth social id be surprised if you ever get an impartial voice. I literally only scroll tiktok for cute and funny vids.








  • She.

    And how are they keeping anything together. Market share isn’t substantially better than before and rather than focusing on the product mozilla was created for they keep pivoting to weird BS like this AI grab. I actually think market shares gone up recently… cause google pushed through manifestv3. That would’ve happened even if mozilla did nothing. I think mozillq is still the better browser but that sure as hell doesn’t seem to be because of whose in charge.



  • As a programmer, I disagree. This isn’t the users fault, it’s the shells and filesystems for being too permissiv. Honestly the shell is a bad choice for pin point acting on files anyways. I say this as a heavy user but selecting files is the most annoying part of using the shell and the solution isn’t warping your filenames to make them easier to type without shell weirdness, it’s using tools built to prevent these issues. That can either be tab complete (with zsh it auto escapes shell characters) or a terminal file manager like lf.




  • In general yes. You can think of each container in a docker network as a host and docker makes these hosts discoverable to each other. Docker also supports some other network types that may not follow this concept if you configure them as such (for example if you force all containers to use the same networking stack as one container (I do this with gluetun so I can run everything in a vpn) all services will be reachable only from the gluetun host instead of individual service hosts).

    Furthermore services in a container are not exposed outside of it by default. You must explicitly state when a port in a container is reachable by your host (the ports: option).

    But getting back to the question at hand, what you’re looking for is a reverse proxy. It’s a program that accepts requests from multiple requested and forwards them somewhere else. So you connect to the proxy and it can tell based on how you connect (the url) whether to send the request to sonarr or radarr. http://sonarr.localhost and http://radarr.localhost will both route to your proxy and the proxy will pass them to the respective services based on how you configure it. For this you can use nginx, but I’d recommend caddy as it’s what I’m using and it makes setting up things like this such a breeze.