Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)ST
Posts
0
Comments
147
Joined
2 yr. ago

  • Yes. Yes indeed. People doing not voting out of disdain for Hillary is what got Trump elected in the first place. You cannot sit back and assume that one candidate or another is strong enough to win without your vote.

    Besides, you should be voting in your local elections anyways.

  • The problem is that the amendment doesn’t say “But Congress may by a vote of two-thirds of each House, enact such disability.”, it says “…remove such disability”. It doesn’t make plain English sense that congress should have to take a positive action to make this happen and also remove it.

  • There was a place near me in college that would make the special black lentil dal only on Thursdays for lunch, but it was always so good. I don’t know if it’s the same thing, but those lentils certainly made me realize I could be vegetarian.

  • Do you have location tracking turned on? I feel like a few times when people looked into this, it came down to the Taxi app having location sharing on (so the app can show you fairs, of course) and that the fact that you wrote something about needing a taxi is irrelevant because the app knows you are someplace where you might need a taxi.

    And maybe someone nearby you who also had the same Taxi app had just booked a trip. They can correlate your location and people around you.

  • Which crypto network are you talking about that can be operated for free? PoW is expensive and wasteful, and PoS is pretty much back to a regular database again.

    At the end of the day here, this is a simple transaction ledger that doesn’t need to be turned into crypto, it just needs a party interested in moving the money around in these micropayments with minimal fees.

  • brutal

    Jump
  • In case you aren’t joking, brutalist is an architectural style, commonly seen in Washington DC and associated with government buildings. It’s not masochistic, despite brutal being in the name of

  • I’m going to stand up for the American education system, which is weird. But there is no way to expect someone to learn everything they need to know about all the normal topics and fringe legal systems by the time you’re 18. We already tacked a bunch of math on because Harvard decided everyone needed to know geometry and things spiraled out of control from there with math.

    The fact that the court system can assign your company a monitor while you are being accused of fraud isn’t that crazy, but it’s also pretty specific. Most people don’t know about because they aren’t lawyers and that’s frankly okay.

  • Realistically, yes. But it’s a phrase and it’s important that they start doing that first. Maybe it’s their intention to do it publicly.

    Also, sure, but a Wireguard installation is going to be much more secure than a Nextcloud that you aren’t sure if it’s configured correctly. And Tailscale doubly so.

  • Please set up Tailscale or a Wireguard VPN before you start forwarding ports on your router.

    Your configuration as you have described it so far is setting yourself up for a world of hurt, in that you are going to be a target for hackers from literally the entire world.

  • There is a lot of complexity and overhead involved in either system. But, the benefits of containerizing and using Kubernetes allow you to standardize a lot of other things with your applications. With Kubernetes, you can standardize your central logging, network monitoring, and much more. And from the developers perspective, they usually don’t even want to deal with VMs. You can run something Docker Desktop or Rancher Desktop on the developer system and that allows them to dev against a real, compliant k8s distro. Kubernetes is also explicitly declarative, something that OpenStack was having trouble being.

    So there are two swim lanes, as I see it: places that need to use VMs because they are using commercial software, which may or may not explicitly support OpenStack, and companies trying to support developers in which case the developers probably want a system that affords a faster path to production while meeting compliance requirements. OpenStack offered a path towards that later case, but Kubernetes came in and created an even better path.

    PS: I didn’t really answer your question”capable” question though. Technically, you can run a kubernetes cluster on top of OpenStack, so by definition Kubernetes offers a subset of the capabilities of OpenStack. But, it encapsulates the best subset for deploying and managing modern applications. Go look at some demos of ArgoCD, for example. Go look at Cilium and Tetragon for network and workload monitoring. Look at what Grafana and Loki are doing for logging/monitoring/instrumentation.

    Because OpenStack lets you deploy nearly anything (and believe me, I was slinging OVAs for anything back in the day) you will never get to that level of standardization of workloads that allows you to do those kind of things. By limiting what the platform can do, you can build really robust tooling around the things you need to do.