

The Republicans are absolutely committed to the lie that the shutdown is because the Democrats are demanding the government pay for illegal aliens’ health care. It doesn’t matter how many times they get corrected; they’ll just keep repeating it.
It’s an interesting experiment in just how brazen a lie they’ll be able to get away with. I’m hoping this is the one that finally breaks them, and they lose credibility for good, but the right-wing media bubble is sewn up pretty tight, and so far it seems they’ll believe pretty much anything they’re fed.


I recently asked ChatGPT to generate some boilerplate code in C to use libsndfile to write out a WAV file with samples from a function I would fill in. The code it generated casted the
doublesamples from the placeholder function it wrote tofloats to usesf_writef_floatto write to the file. Having coded with libsndfile over a decade ago, I knew thatsf_writef_doubleexisted and would write my calculated sample values with no loss of precision. It probably wouldn’t have made any audible difference to my finished result but it was still obviously stupidly inferior code for no reason.This is the kind of stupid shit LLMs do all the time. I know I’ve also realized months later that some LLM-generated code I used was doing something in a stupid way, but I can’t remember the details now.
LLMs can get you started and generate boilerplate, but if you’re asking it to write code in a domain you’re not familiar with, you have to understand that — if the code even works — it’s highly likely that it’s doing something in a boneheaded way.