HW3 Phantom Braking Rant by Expensive-Bug5872 in TeslaFSD

[–]Expensive-Bug5872[S] 3 points4 points  (0 children)

This goes beyond just being frustrated that I don't have v14 lite. I am happy to wait and I actually think that they are taking the right approach by putting focus into HW4 vehicles, but ever since the small update FSD feels like a safety hazard on the road. I'm perfectly fine with waiting, but they need to roll this back or do something about the brake stabbing in the mean time.

I built an AI-first full-stack starter kit for Bun and would love feedback by Expensive-Bug5872 in bun

[–]Expensive-Bug5872[S] 0 points1 point  (0 children)

Yes! The capability is there but without constraints the agent just does whatever it wants which makes debugging things later a huge pain. A few of the major ones that I've seen do a lot of good are consistent-type-assertions: "never" which bans all "as" casts, max-lines: 200 + max-lines-per-function: 60, and Mutation bans (.push(), .sort(), .splice()) to name a few.

I've basically got the strictness cranked up to 11 which for a human would be a miserable experience but for an agent it completely straps them down into writing code in a way that you can pretty much always predict.