• 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle



  • Still has a lot of the same underlying issues discord has. It’s not indexable being the biggest. The reality is that services like stack overflow or an issue tracker like bugzilla, or your local git services issues section or discussion section, hell even something like discourse or even mailing lists, just work better. If someone made an im service that could be indexed by search engines and the like, now we’d be talking. Opensorce design and discussion doesn’t really benefit that much from closed ecosystems and end to end encryption in most cases.

    I guess though at least with matrix someone could make a service that acts as a client and indexes content from a list of channels or something…

    Discord, matrix, slack and telegram are where documentation goes to die in the current state of things though.



  • Yeah, a lot of the in the Americas it’s not the fact that we’d rather be in a car it’s that our public transit options are just so non-competitive with driving by design that it makes no sense to ever use them from a time perspective if you can afford not to.

    If you live somewhere like the Bay area where you’ve got the BART or Chicago with the L, you can 100% use public transit as your daily driver because it’s actually faster then driving in most cases and you can read or do work while doing so… sadly this is not the case in most places. Takes me 15 minutes to drive into downtown, if I took the bus it would take me 2 and a half hours.




  • Kubernetes uses cri-o nowadays. If you’re using kubernetes with the intent of exposing your docker sockets to your workloads, that’s just asking for all sorts of fun, hard to debug trouble. It’s best to not tie yourself to your k8s clusters underlying implementation, you just get a lot more portability since most cloud providers won’t even let you do that if you’re managed.

    If you want something more akin to how kubernetes does it, there’s always nerdctl on top of the containerd interface. However nerdctl isn’t really intended to be used as anything other than a debug tool for the containerd maintainers.

    Not to mention podman can just launch kubernetes workloads locally a.la. docker compose now.