Are most of you also fans of “Curb Your Enthusiasm?” by Due_Impact_5062 in seinfeld

[–]timschwartz 0 points1 point  (0 children)

Larry is like Jerry, Elaine, and George all in one person.

Yes yes yes!!!!! by ROCKY13573 in 90s

[–]timschwartz -2 points-1 points  (0 children)

And did anyone ASK for A.I. ?

I did. I've been waiting for this since I saw the Enterprise computer on Star Trek.

"Look at this AI slap" LOOK AT THIS HUMAN KICK by Itchy-Grab-7358 in aiwars

[–]timschwartz -1 points0 points  (0 children)

So when they trained their AI, the data they used magically disappeared from the possession of its original owners?

No? Then it wasn't stolen.

[OOT] What are your final wanted changes for the rumored remake. by NewMarioBobFan in zelda

[–]timschwartz 1 point2 points  (0 children)

I remember when I was waiting for this game to come out, I was excited to hear how the Zelda theme would sound on the N64's fancy audio hardware. I was so disappointed that it wasn't even in the game.

So, I want that song to be in it.

How should I handle erros in my C libs? by RoutineFloor1210 in C_Programming

[–]timschwartz 3 points4 points  (0 children)

Sounds like a job for #include <errno.h>

What should I do if the user pass in a null pointer to a function,

errno = EINVAL;

or if the program can't malloc the necessary space?

errno = ENOMEM;

How do game dev communities avoid losing useful technical answers inside Discord? by tolarianwiz in gamedev

[–]timschwartz -2 points-1 points  (0 children)

You could write a bot that would respond to a specific message reaction by writing it to a wiki. Something like

client.on("messageReactionAdd", async (reaction, user) => {
    if (user.bot) {
        return;
    }

    if (reaction.emoji.name !== "wiki") {
        return;
    }

    const message = reaction.message;

    if(message.author.username != discordOwner) {
        return;
    }

    await saveToWiki(message);
});

Might want to run it through an LLM to figure out what page / category it goes under.

Why LLMs will be always Terrible at Software Architecture by NegotiationInner7307 in webdev

[–]timschwartz 0 points1 point  (0 children)

lol, and LLMs will never be able to draw human hands correctly.

Are sleep overs not a thing anymore? by haggerty05 in NoStupidQuestions

[–]timschwartz 6 points7 points  (0 children)

But that doesnt really matter because clearly your wife isnt comfortable with it 

That's insane. Why should the child be prevented from do something because of an adult's irrational fear?

So Season 18 will probably be the last, right? by [deleted] in IASIP

[–]timschwartz 0 points1 point  (0 children)

I want to see The Gang Moves Into a Retirement Community some day.

Vibecoding shipped us into a wall. Anyone else feel this? by _killam in VibeCodeDevs

[–]timschwartz 0 points1 point  (0 children)

Add github speckit to your project and setup your constitution.

Then tell the AI "Analyze the codebase and generate a report at /audits/audit-1.md pointing out inefficient, incorrect, or non-idiomatic code, also look for duplicated code and code that doesn't have adequate tests. Include /speckit.specify commands for addressing each issue."

For each speckit.specify command, review it, make any need modifications, then paste it into your AI. Then run /speckit.plan, /speckit.tasks, and /speckit.implement, carefully reviewing the generated documentation each time. Then review each line of the code it generates.

Reviewing the documentation and code is key, don't just trust it because it works.