
Apparently Nintendo switch 2 is using the standard already, so it might go over better than Sony.
My friend, let me tell you a story during my studies when I had to help someone find a bug in their 1383-line long main() in C… on the other hand I think Ill spare you from the gruesome details, but it took me 30 hours.
The Test part of TDD isn’t meant to encompass your whole need before developing the application. It’s function-by function based. It also forces you to not have giant functions. Let’s say you’re making a compiler. First you need to parse text. Idk what language structure we are doing yet but first we need to tokenize our steam. You write a test that inputs hello world into your tokenizer then expects two tokens back. You start implementing your tokenizer. Repeat for parser. Then you realize you need to tokenize numbers too. So you go back and make a token test for numbers.
So you don’t need to make all the tests ahead of time. You just expand at the smallest test possible.

What was that about him doing twitter’s technology policing and leaving running the company to the new CEO?

I haven’t worked directly on gov cloud but I’m familiar with its design. The two systems are completely isolated from each other with internet in between. I know you can port forward in AWS so a solution would be to spin up a VPN server in AWS and connect to it from gov cloud.

An MMO where is truly feels like player versus environment and not another pawn versus environment. Stop having 300 people deliver the one lost ring to the same npc for days at a time. I think one way to do it is to provide a general prompt to GPT models and have them generate a few hundred similar but different quests that get assigned per player. But also keep track of these generated differences to weave a story. Make there be more npcs than players.
8 years ago I posted on facebook that whoever is interested in keeping in touch should text me and I deleted my account a week later. 4 people texted - all 4 were my high school friend. I’m very good friends with them still. We have a tiny discord server for communication. Since then I had maybe 4 more people who I thought “huh, I wonder what are they up to now” over the years, but my curiosity wasn’t big enough to start facebook again. For the rest I didn’t really care.

JavaScript is much much higher level than C, but there are vulnerability announcements in npm all the time. C does, however, let you implement more kinds of vulnerabilities associated with memory handling.

I donate to what I use - Gentoo, Wikipedia, lemmy, beehaw
I think a lot of American privacy/security folks start with realizing the US government isn’t about privacy, so they want smaller government, but the only party pushing for smaller government pushes bigoted views to so the privacy folks get sucked into that mental space… not condoning them at all but I think this situation is the result of two-party government. I’m in security sector, but I do research and so there are a lot more left-leaning people around me. Sorry I don’t know any podcasts to recommend though.
Interesting. I could never get it working on windows 7 nor 10.
How do you play fallout 2? I always have weird double-screen with wrong colors everywhere. Tried different video cards too.

I define success of a social network proportional to the level of fun in having there. So far Mastodon and Lemmy are the most successful for me.
Creeper World. It’s technically a tower defense, but the enemy is fluid, constantly pouring out of spawn area. And the game has a pretty good story line.

I can’t quite find the blog post but I saw someone do a blog post using AWS’ map reduce on multiple servers to process a dataset… and then they redid their pipeline using bash, awk, and maybe grep and a single 8-core machine did it 100 times or so faster.
Edit: found it https://adamdrake.com/command-line-tools-can-be-235x-faster-than-your-hadoop-cluster.html

What the article fails to address and what I’ve been struggling with personally is… We all need food. Yeah it’s great working on GPL code and ensuring it’s all open. But when companies consider your gpl library vs someone else’s mit library they will naturally go with mit. And then they’ll say “well we’re using this free library already might as well donate/fund it”. So suddenly this MIT dev is able to put way more time into the mit library than your gpl library because it becomes their job. Something that feeds them. Their library gets better faster… And more and more companies use it and fund it. GPL is great if absolutely everyone is on board and everyone is fed. But that’s not the world we live in.

Ah my bad, I did a quick search before commenting and couldn’t find anything concrete.

Isn’t there a speculation that Intel CPUS are actually RISC chips with microcode emulating x86?
Its an interesting perspective, except… that’s not how AI works (even if it’s advertised that way). Even the latest approach for ChatGPT is not perfect memory. It’s a glorified search functionality. When you type a prompt the system can choose to search your older chats for related information and pull it into context… what makes that information related is the big question here - it uses an embedding model to index and compare your chats. You can imagine it as a fuzzy paragraph search - not exact paragraphs, but paragraphs that roughly talk about the same topic…
it’s not a guarantee that if you mention not liking sushi in one chat - talking about restaurant of choice will pull in the sushi chat. And even if it does pull that in, the model may choose to ignore that. And even if it doesn’t ignore that - You can choose to ignore that. Of course the article talks about healing so I imagine instead of sushi we’re talking about some trauma…. Ok so you can choose not to reveal details of your trauma to AI(that’s an overall good idea right now anyway). Or you can choose to delete the chat - it won’t index deleted chats.
At the same time - there are just about as many benefits of the model remembering something you didn’t. You can imagine a scenario where you mentioned your friend being mean to you and later they are manipulating you again. Maybe having the model remind you of the last bad encounter is good here? Just remember - AI is a machine and you control both its inputs and what you’re to do with its outputs.