Formerly /u/Zagorath on the alien site.

  • 58 Posts
  • 339 Comments
Joined 3 years ago
cake
Cake day: June 15th, 2023

help-circle


  • Honestly, that is how I would prefer it be done. But it isn’t what OP asked for.

    It would have to be set at an operating system level, with the OS providing an API for the browser to use, while the os itself restricts installation of unapproved apps (and to work, installation of apps would have to use an allow-list or a similar age-tagging system, where any app that includes general web access has to be 18+ unless it also implements age-gating correctly).

    But yes, this would be the best system. Parental controls have never been very successful in the past, but I think part of the reason for this is that they’ve never been properly supported up and down the stack. The government should mandate that it is supported the whole way, so that parents really have the tools they need to enforce parental controls.

    Edit: I thought this was a comment in another thread. My reply here only makes sense in that context.



  • Yeah this is V5, first published in 2018 when the term “alt-right” was current. Before they just became the mainstream right.

    I don’t know if this quote is from the original release or a later revision, though. Shortly after V5’s release, White Wolf was shut down because of systemic issues. Multiple rather extreme right-wing references made their way into the original book, including Russian anti-gay purges in Chechnya and options to play as neonazis. I think there might have been allegations more directly against senior White Wolf staff.

    So Paradox, the owners of White Wolf, disbanded the company of White Wolf and brought production of all World of Darkness in-house (plus contracted out to third-parties, like Renegade). Changing options to make tjen more inclusive and remove harmful ones was done during this time.

    Just last year, Paradox reconstituted White Wolf under a team that had been working under Paradox’s World of Darkness team.


  • Your 142.x.x.x will be your public IP address. All devices on your network share that public IP. They all have a unique private IP address too, accessible only on your network. It probably starts with 192.168.x.x, but it could be 10.x.x.x or even less likely 172.16–31.x.x.

    If you want to operate a web server that users can go to by typing https://youdomain.com/, you’ll need to forward from ports 80 and 443 through to the internal IP address of your server, using the “port forwarding” settings on your router. What port on the internal IP you route to depends on how your server is configured. But a basic default configuration is fairly likely to be 80 and 443, too.

    Since you have a reverse proxy, all traffic from your router should go to that. Then you use that to send the appropriate traffic to the appropriate server based on whatever rules you want to apply. (e.g. siteone.mydomain.com goes to server 1, sitetwo.mydomain.com goes to server 2, or mydomain.com/siteone goes to server 1, etc.).




  • or a recipe for an insecure mess that could become difficult to maintain

    The concept, or the specific setup the author of that article has? If you mean the latter, I’m not going to argue. But the concept? It shouldn’t have any effect either way on security, but the whole advantage of it is that it’s less of a mess. The same way that running a whole bunch of services on bare metal can quickly become a mess compared to VMs or Docker/LX containers, declared state helps give a single source of truth for what all the services you might be running are. It lets you make changes in repeatable and clearly documented ways, so you can never be left wondering “how did I do that before?” if you need to do it again.

    If everything you run is a Docker container, there’s a good chance Terraform is overkill; a Kubernetes config will probably do the job. But depending on your setup there are a whole bunch of different tools that might be useful.





  • Sorry for the late reply. I’m just disorganised and have way too many unread notifications.

    LXC containers sound really interesting, especially on a machine that’s hosting a lot of services. But how available are they? One advantage of Docker is its ubiquity, with a lot of useful tools already built as Docker images. Does LXC have a similarly broad supply of images? Or else is it easy to create one yourself?

    Re VM vs LXC, have I got this right? You generally use VMs only for things that are intermittently spun up, rather than services you keep running all the time, with a couple of exceptions like HomeAssistant? What’s the reason they’re an exception?

    Possibly related: your examples are all that VMs get access to the discrete GPU, containers use the integrated GPU. Is there a particular reason for that distribution?

    I’m really curious about the cluster thing too. How simple is that? Is it something where you could start out just using an old spare laptop, then later add a dedicated server and have it transparently expand the power of your server? Or is the advantage just around HA? Or something else?


  • Sorry for the late reply. I’m just disorganised and have way too many unread notifications.

    LXC containers sound really interesting, especially on a machine that’s hosting a lot of services. But how available are they? One advantage of Docker is its ubiquity, with a lot of useful tools already built as Docker images. Does LXC have a similarly broad supply of images? Or another easy way to run things?




  • I’ve no comments on RISC-V, but I agree that a move towards ARM in the Windows & Linux worlds would seem sensible. I would guess it hasn’t happened for the same reason IPv6 hasn’t taken over. Too much momentum. Too many developers still working in an x86 world, too many legacy apps that won’t easily run on ARM, too many hardware manufacturers each making the individual choice to keep making the current-popular option. Apple could transition because they’re the single gatekeeper. They make the decision, and everybody else who wants to use a Mac has to follow along. I’m going to guess that the control they have over the hardware and the software also means Rosetta 2 works a hell of a lot better than Microsoft’s Prism. (I can’t say for sure, having never used an ARM-based Windows machine or an ARM-based Mac.)

    In terms of heat, what kind of room do you have it in? Somewhere with good natural airflow, or away in a closet somewhere?



  • Interesting. I’ve never really played around with that style of VM-based server architecture before. I’ve always either used Docker (& Kubernetes) or ran things on bare metal.

    If you’re willing to talk a bit more about how it works, advantages of it, etc., I’d love to hear. But I sincerely don’t want to put any pressure and won’t be at all offended if you don’t have the time or effort.


  • I’m not sure I agree with your definition of walled garden. I’d say it’s a place that’s designed to be nice and easy to use within the bounds designed for you (the garden), but which protects the user from doing something that might harm them, even if that “protection” comes at the cost of being able to do other things they want to do, in a kind of paternalistic way (the wall). The classic example would be iOS, where the only apps you can install are the ones Apple has approved for you. Getting apps from the open web the way you would on Windows, macOS, or Linux could be dangerous!

    Your description of:

    you may run into roadblocks doing things that way, yes. You are pretty much limited to what’s on their (vast) catalog

    Makes it sound very much a walled garden to me. Not as high-walled as iOS of course, but it’s a spectrum.

    But anyway, it’s basically semantics. Not that important what you call it.


  • Not at all. It’s completely open source

    Being open source doesn’t necessarily preclude being a walled garden. If (and I fully admit I could be completely wrong about this) it makes it easy to do certain things through a friendly UI, but it becomes much harder or more awkward (or impossible) to do things that aren’t explicitly supported, as part of a deliberate design decision/tradeoff for that usability.

    Anyway, thanks a heap for answering all my questions. Has been very helpful.