• 1 Post
  • 125 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle




  • So… yes and no. Yes, most corporations aren’t mitigating their impact as much as they could, even if trying to maximize profit.

    But something like consuming red meat… if people aren’t buying it, they’re gonna downsize operations. But that requires a huge change in the diet of a lot of people. So like… yes, but no? If enough people change, yes, but reality suggests that won’t happen, so no. I try to avoid beef, but I’m just one dude.

    Here’s what I don’t get: methane is energy rich, and cattle produce a lot. Why the hell don’t they capture the methane and sell it? Yes, combusting it produces CO2, but CO2 has a lesser impact than methane, as I understand. So it’s a (minor) help for the environment and theoretically profitable. Why hasn’t this been done yet???



  • This is the winner for me.

    I’m a manager, and I do my best to make things fulfilling, productive, physically and psychologically safe, and minimally stressful. I’m not the capitalist, so I don’t have full control. But if those of us closer to the ground try to make the way we work more bearable, it can have an impact on the immediate surroundings.

    But yeah, we do need to fix the overarching system, since we don’t have full control in this one.


  • This.

    Lived in Korea for awhile, and they generally seem to not have this kind of vindictiveness or self-righteousness. They’re usually like, “I dunno. Either they got a reason, or it’s not worth the effort for me to do something about it.”

    That said, social pressure is much more effective here, so the vast majority of people fall in line. See COVID






  • Why take this personally…? There are so many ways to perceive this:

    • Maybe the reader is bi
    • Maybe the reader would get a boost knowing someone would be into them, even if they’re not into that kind of person
    • Maybe the reader just finds the image or concept hilarious

    Like… why did you think this was targeting you?



  • I’ve worked with Swarm in a startup setting. It was an absolute nightmare. We eventually gave up and moved to Kubernetes.

    That said, your use case does sound simpler. As I recall, we had to set up service discovery (with Hashicorp Consul) and secret management (with Hashicorp Vault) ourselves. I believe we also used Traefik for load balancing. There were other components as well, but I don’t remember it all. This was over 5 years ago, though.

    The difficulty wasn’t configuring each piece but getting them to work together. There was also the time burned learning all the different tools. Kubernetes is great because everything is meant to work together.

    But if it’s just two machines with separate configuration, do you even need orchestration? Is there a lot of overhead to just manage them individually?

    Unfortunately, it was too long ago to remember the details of differences between compose and swarm. I do remember it was a very trivial conversion.


  • MechWarrior 2: 31st Century Combat

    It had an archive in the game. It detailed the social structure, military structure, customs, and history of the Clans, which you play as a member of, from an outside perspective. I was only 8, but I read through the whole thing, end-to-end. I put an album of it on Facebook for posterity when I was in high school.

    I decided I wanted to be like them when I read it. I have a much better understanding of them now, and I do not agree with everything. The concepts behind some core tenants still stand for me. Individuals are valued within the context of the Clan. One’s value is based on their contribution to society, but society must value them in order to expect their contribution. If a leader acts in their own interest and not that of the Clan, their subordinates are obligated to challenge them. If the conflict stands, they face in a Circle of Equals. Generally, personal disputes are delayed and adjudicated, but there is a Trial of Grievance if the parties can conduct if they cannot delay. In the real world, I translate these to a value in community, a mandate to not tolerate poor leadership, and good practice in letting cooldown time followed by direct dispute resolve conflict.

    Of course, there are questionable things. A caste system, though some Clans allow more mobility than others. Eugenics based on combat prowess for the warrior caste. Promotion by combat for the warrior caste. Poor military strategy based on the concept of honor.

    I still consider myself a Clanner, to some degree. Sometimes I try to see if others took it as much to heart as I did, but I am afraid of rejection. I do not know if I could pass various Trials. I know I am too old, now, or at the very least, approaching that. Maybe someday, I will find other children of Kerensky.


  • I may not be well informed, so feel free to cite sources that prove me wrong, but I’m not 100% convinced about the co-ops being equally competitive or that they’ll be just as profit-seeking.

    Yes, individuals outside of sociopathic executives are also driven by profit, but they’re also more influenced by other factors. For example, most non-executives might opt for a more ethical solution over a more profitable solution. This may also carry over to efficiency: maybe a co-op could opt for a more efficient, if less profitable, solution in order to keep prices low. There are several incentives for this: long-term growth, social good of making things more affordable, personal pride in being the lowest price, general lack of desire to optimize for a single metric (profit). Now, these are all guesses. I don’t know of any good studies about co-op behaviors in aggregate versus traditional corporations, but this sounds feasible to me.

    All that said, it sounds like you’re better read on this than I am, so I’d love to learn if you can throw some sources at me




  • I’ll give a more detailed answer.

    Docker doesn’t help you in the development of the website. Docker helps you with the deployment of the website.

    The purpose of Docker is to give you a consistent environment. When you create a Docker “image,” that image includes all of the files and software required to run the website. Then on some computer accessible by the public internet, you can just download that “image” and run your website using a “container” created from the image.

    You can think of the image as the blueprint of all the bits and pieces needed to run your website. The container is basically all those pieces put into action to actually run the website.

    Now, depending on your website, you may not even need Docker. If it’s frontend-only, you could use some service like Vercel, where you don’t even need Docker.

    Can you share more info about your current level of knowledge and the website you want to make?