(Justin)

Tech nerd from Sweden

  • 4 Posts
  • 689 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle
  • Coops are still about the money. They’re about saving money by sharing resources with fellow workers/consumers, and maintaining democratic control over the company. You’re not going to get rich from a coop (without embezzlement), but you and your coowners will be cutting out the middle man. Obviously, it only makes sense for industries that you’re heavily invested in.





  • humidity shouldnt be a problem with modern ventilation and such large cooling surfaces.

    I’m honestly shocked how much of a fuss the participants are making over 22-26° rooms. My apartment is almost never below 25°, even in the winter. Are they somehow going to perform better if it’s 20° and they freeze? Not to mention fucking loud portable air conditioners are. There’s a heatwave going through Sweden right now, and my apartment was up to 30° this afternoon.

    Also really defeats the point about not using air-conditioning when all the participants just bring in super-inefficient portable units and then immediately throw them in the trash. I guess it’s good for energy efficiency in the long run though for when these buildings become normal apartments.


  • I’m using IPv6 on Kubernetes and it’s amazing. Every Pod has its own global IP address. There is no NAT and no giant ARP routing table slowing down the other computers on my network. Each of my nodes announces a /112 for itself to my router, allowing it to give addresses to over 65k pods. There is no feasible limit to the amount of IP addresses I could assign to my containers and load balancers, and no routing overhead. I have no need for port forwarding on my router or worrying about dynamic IPs, since I just have a /80 block with no firewall that I assign to my public facing load balancers.

    Of course, I only have around 300 pods on my cluster, and realistically, it’s not really possible for there to be over 1 million containers in current kubernetes clusters, due to other limitations. But it is still a huge upgrade in reducing overhead and complexity, and increasing scale.