I most often just get it straight up misunderstanding how the test framework itself works, but I've definitely had it make strange decisions like that. I'm a little convinced that the only reason I put up with it for unit tests is because I would probably not write them otherwise haha.
EmilyIsTrans
I think its most useful as an (often wrong) line completer than anything else. It can take in an entire file and just try and figure out the rest of what you are currently writing. Its context window simply isn't big enough to understand an entire project.
That and unit tests. Since unit tests are by design isolated, small, and unconcerned with the larger project AI has at least a fighting change of competently producing them. That still takes significant hand holding though.
I knew something was wrong but I didn't put the dots together until my early 20s. I'd definitely had "I wanna be a girl" thoughts as a kid/teen but wasn't super aware that being trans was a thing so shoved them to the back of my brain and allowed myself to just kinda feel broken instead.
"Oh shit I'm a girl?"
C'mon, that's what PR's, RCs, and betas are for
It's important to note that this is them moving in-development branches/features "behind closed doors", not making Android closed source. Whenever a feature is ready they then merge it publicly. I know this community tends to be filled with purists, many of whom are well informed and reasoned, but I'm actually totally fine with this change. This kind of structure isn't crazy uncommon, and I imagine it's mainly an effort to stop tech journalists analysing random in-progress features for an article. Personally, I wouldn't want to develop code with that kind of pressure.
Transition at a younger age. Would have saved me a lot of hurt in the years between
People should just be using TOTP, its only a little less convenient in my opinion (or actually more sometimes, like when you don't get the SMS MFA code for an hour!)
I will be dead and buried in the ground before I call nginx "engine x"
Verizon sold Tumblr to WordPress in 2019
It is illegal in most countries to host child sexual abuse material.
I've used it most extensively for non-professional projects, where if I wasn't using this kind of tooling to write tests they would simply not be written. That means no tickets to close either. That said, I am aware that the AI is almost always at best testing for regression (I have had it correctly realise my logic is incorrect and write tests that catch it, but that is by no means reliable) Part of the "hand holding" I mentioned involves making sure it has sufficient coverage of use cases and edge cases, and that what it expects to be the correct is actually correct according to intent.
I essentially use the AI to generate a variety of scenarios and complementary test data, then further evaluating it's validity and expanding from there.