[go: up one dir, main page]

𞋴𝛂𝛋𝛆

  • 545 Posts
  • 5.58K Comments
Joined 3 years ago
cake
Cake day: June 9th, 2023

help-circle



  • Pretty much like California then. In Georgia, I could walk in a shop and buy anything. Here in CA, I think the wait period is lover a week, and shops are all but non existent. In GA, there is legitimate hunting and need. CA is more for the paranoid, at least here in SoCal. Y’all also have a lot more police training, if memory serves. That makes a big difference in the numbers and risk/assessment.

    Most real liberals I have ever met look more like conservative stereotypes, own guns, are reasonable, and do not get tangled with idealism. That is not to say, indifferent to egalitarian cause, but realize the greatest evils in the world are ignorance and indifference.

















  • The stuff outside is likely exported from the container, but is likely just a link to what is inside, made to look transparent from the host but is not real.

    Containers create an overlay layer on top of the host. Some stuff on the host may still be linked directly.

    The abstract concept to understand here is that the thing you want to put in a container is likely to need outdated or different library (code) dependencies than the host machine. If you installed this software on the host, the conflicting dependencies are a nightmare and are likely to break stuff over time. So the container is the solution. It is as likely to be as small of an overlay image as possible and contains the dependencies that would otherwise conflict, and keeps them separate from the host.

    If you want to work with these, you must log into the container, and use the tools within. This will likely involve both the container and a Python venv layer, conda, or uv.

    It is also likely that docker is just an alias for podman on a Linux machine.