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/)K
Posts
0
Comments
20
Joined
6 mo. ago

  • That's not how space works though. It's a vacuum. It doesn't work the same way as on earth. What temperature do you think the side pointing to sun is? And what temperature do you think the side that is away from the sun is? Heat is just not going to magically transfer into space.

  • Are you suggesting that it's easy to do this?

  • Ok? How does Elon, the man with the biggest brain cells, expect to cool these space data centers?

  • Just use wire guard. This is what tunnels is and this is what tail scale uses

  • I'm not sure that is what they are advocating for. They have VAC which doesn't require kernel level access. If anything they will probably advocate this and that anti cheat can work without root level access.

  • That's a really good point too. I honestly think he just wants to say he's the first trillionaire if that ever happens. Just all ego of a sociopath

  • I mean sure. But he can use it as collateral. That's the thing. He can go to the bank and be like, let me borrow some money. So, while he still has to meet certain obligations to get these shares, it's just like why? He has enough already? Why does he need majority anyway? Why not just put in the work anyway?

  • Most people don't understand that Walmart is a huge contributor of this and that most places, especially fast food places, will only allow their employees to work so many hours so they don't have to give benefits.

    I have a friend who is all about Trump. I will continue to try and convince him that there are better people out there. Another friend posted a Tshirt he was going to get him for Christmas. It was a DT shirt, basically making fun of him. My maga friend replied with a commie mamdami shirt. I'm just like is that supposed to be an insult? Do you not want affordable housing and living wage? Do you want to keep working 2 jobs?

    I think there are a lot of people out there like him that play into the media. They blame the poor and immigrants instead of the rich. They see far left or a person with any other view as their own as far left and a liberal fascist commie. They are pissed at the previous democratic administration (which I don't blame them), but if you ask me Biden is just a Republican anyway. Go back 30 or 50 years and he would be a Republican. They want the same things, but see the left "far" left as commies and the previous administrations did nothing to help their situation.

    I say all this to say, that yes, people are poorly educated and are shooting themselves in the foot because of what the media has told them to believe. This includes the propaganda found on Facebook, tik too, need sites, and other social media outlets. It's a frustrating time right now

  • How much money does one person need before enough is enough?

  • Release the Epstein files

  • I had posted a question on there over 8 years ago. I got a notification the other day that someone answered it. Then an hour later someone closed it saying the question was off topic lol. It really wasn't btw, but this is what makes stack overflow such a shit site and why it's been on the decline for years. Even before LLMs.

  • No it's not. It's very expensive to run and there are a lot of edge cases. It's much easier to have regional redundancy for a fraction of the cost.

  • I am pretty sure I have ADHD, but never been diagnosed. I had to learn certain things throughout school growing up and I almost failed out of my freshman year in high school. I was able to turn that around and figure out how to study and focus when needed. I basically used music and TV to help.

    My kid has ADHD and I did get him diagnosed. I do not want to medicate him either. I would much rather help him learn how to control himself when possible instead of medicating him. It takes a lot of work. Especially in today's age with avenues like YouTube where my kid will get absorbed into that for hours. Just like yours, he will forget to eat.

    It takes a lot of work from my side to keep him focused. I have to sit down with him to do his homework. He goes to a school where it's a bit more academically challenging as well, so what should only take 30 mins, might take 1-2 hours. He's well ahead of his peers in certain areas like reading where he's about 4 grade levels ahead. So, it's not that he struggles with school or the material, it's just focus. I have to make sure he does everything he needs to when getting dressed or ready. I have him in many activities to get him away from tv, YouTube, and other digital devices. It's a lot of work on my end, but I do feel like it's helping. In kindergarten we would probably spend 5 hours almost every night on homework. Now it's 1-2 hours sort of spread out. He understands what is expected of him and he has better habits when it comes to studying.

    The main reason I got him diagnosed was because of his school. This way they understand and can make any accommodations due to his behavior at times.

    At the end of the day, for us, it's all about routine. Even for myself. When I go on vacation and get out of a routine, I start going all over the place. Same for him. So, having a routine helps significantly. We do x homework first, then Y homework. We get our clothes on first, then brush our teeth for example. We go to x activity on this day at this time. This means I have had to become more organized myself, which is difficult for me.

  • Just get a burner. That's what I used to do when I travelled anywhere

  • Yeah, it's actually really really stupid. If they say this is true, then you can say a website is changing the code of the actual browser as well

  • Cash me outside

  • Deleted

    Permanently Deleted

    Jump
  • You never heard of be quiet!? They are actually pretty big. Even with that said, they do have some issues and there are better PSUs out there. I always use https://cultists.network/140/psu-tier-list/ to see what's going on at the current time.

  • You have a lot of responses here, but I'll tell what k8s actually is, since a lot of people seem to get this wrong.

    Just like k8s, docker has many tools. Although docker is packaged in a way, that it looks like it's just 1 tool. This is docker desktop. Under the hood there is docker engine that is really a runtime and image management service and API. You can look at this more if you wanted. There is containerd, runc, cri-o. These were all created so that different implementations can all talk to this API in a standard way and work.

    Moving on to k8s. K8s is a way to scale these containers to run in different ways and scale horizontally. There are ways to even scale nodes vertically and horizontally to allow for more or less resources to place these containers on. This means k8s is very event driven and utilizes a lot of APIs to communicate and take action.

    You said that you are doing kubectl apply constantly and you say feels wrong. In reality, this is correct. Under the hood you are talking with the k8s control plane and it's taking that manifest and storing it. Other services are communicating with the control plane to understand what they have to do. In fact you can apply a directory of manifests, so you don't have to specify each file individually.

    Again there are many tools you can use to manage k8s. It is an orchestration system to manage pods and run them. You get to pick what tool you want to use. If you want something you can do from a git repo, you can use something like argocd or flux. This is considered to be gitops and more declarative. If you need a templating implementation, there are many, like helm, json net, and kustomize (although not a full templating language). These can help you define your manifests in a more repeatable and meaningful way, but you can always apply these using the same tools (kubectl, argocd, flux, etc...)

    There are many services that can run in k8s that will solve one problem or another and these tools scale themselves, since they mostly all use the same designs that keep scalability in mind. I kept things very simple, but try out vanilla k8s first to understand what is going on. It's great that you are questioning these things as it shows you understand there is probably something better that you can do. Now you just need to find the tools that are right for you. Ask what you hate or dislike about what you are doing and find a way to solve that and if there are any tools that can help. https://landscape.cncf.io/ is a good place to start to see what tools exist.

    Anyway, good luck on your adventure. K8s is an enterprise tool after all and it's not really meant for something like a home lab. It's an orchestration system and NOT a platform that you can just start running stuff on without some effort. Getting it up and running is day 1 operations. Managing it and keeping it running is day 2 operations.

  • I don't think that's what they meant. I think they are just saying that people are still buying EVs, but they are just going to Chinese and other manufacturers instead of buying a Tesla. The article specifically calls out the stupid shit Elon has been doing.