Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)EG
Posts
0
Comments
384
Joined
2 yr. ago

  • I mean, that's a fair argument... but she went off to join bloody isis. You don't have to be too old to know what the hell isis is do and have done. I agree one mistake at 15 having such huge consequences is pretty bad... but it's not like she stole her parents car and went on a joyride, she joined bloody terrorists. That's gonna stick no matter how old you get because it's insane. I do agree rendering her stateless is our fault and she should probably stay a citizen for that reason alone but she doesn't deserve to move beyond the stigma of what she did even if she was very young when she did.

  • Their not very good bargaining points as Israel has established it couldn't care any less about them. Hell the attacks have killed at least a couple of em. At this point releasing them is the only end I can see here, Israel primary motivation/excuse for the attack is to free/kill the hostages and deter further incursions by hamas to take hostages. If they don't have any hostages the argument for an attack is weaker, not that that'll deter the folks in charge.

  • 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.

  • I recently played momodora 4. Fantastic game. But you need to finish about 50% of the game before unlocking fast travel and it... is... a... pain. Doesn't help since its a metroidvania it can lock you off from certain areas and you just kinda need to explore until you find a path through. I ended up going back and forth the entire map 4 times before I just used a walk-through to get where I needed to. Fast travel should be available much sooner for this one. In the other games it varies but really it depends on how much value there is in backtracking.

  • Curious, how is this workflow working for you. I basically did the same thing, at this point the only real blockers are the screensizens is too small and I don't like carrying separate keyboard and mice from my case.

  • Tbf the motivation makes sense but don't publicly announce products just to abruptly drop them. I've literally never heard of an apple product that was discontinued. When you make it customer facing you'd best be prepared to put your weight behind it.

  • Microsoft doesn't have loyalty? They have practical market dominance. I say this as a Linux user but ain't no way Microsoft can do anything to drive away their user base. If their users buy a laptop and find half their software doesn't run on it or runs sh*ttily due to emulation, I'm pretty sure they'll blame the laptop manufacturers before Microsoft or demand the laptops have a x86 variant and even that's a long way before moving to another os.

  • I mean, that's a pretty idea but really it's just accepting monopolies outside of your personal means to affect. What the US is doing here is clearly profit and security focused, but Taiwan supremacy from what I can tell isn't the byproduct of its location or assets, but instead decades of investment and support in producing chips which inexorably lead to it being the best. Really if anyone else is willing to invest that to become comparable it's a good thing. It prevents a single entity dictating terms for everyone. In an ideal world we would just collectively share resources and things would cost a fair price for what it takes to produce them, sadly in a capital focused society its really whatever you make of it.

  • I use docker so don't really have to worry about reproducibility of the Services or configurations. Docker will fetch the right services and versions. I've documented the core configurations so I can set them back up relatively easily. Anything custom I haven't documented I'll just have to remember or find I need to reset up.

  • 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.

  • Eh, they really don't. Maybe in shell scripts or when using a shell interactively but basically any modern language (read post perl) supports spaces fine and without any issue. only shell scripts with bad quoting show problems.

  • I had thought it was partially because spaces make urls completely unreadable since their replaced with %20. Dots have the advantage of being compact, self representing and not conflicting with any filesystem standard (that I'm aware of).

  • 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.