

143·
10 months agoNandGame is a browser puzzle game, where you start of by building basic logic gates from relays and progress from there all the way trough processor design to compiling high-level languages. It does not hold your hand too much, but the invidual puzzles progress so incrementally, it feels almost magical how easily you learn to build computers and compilers.
Isn’t writing tests with AI like a really bad idea? I mean, the whole point of writing separate tests is hoping that you won’t make the same mistakes twice, and therefore catch any behavior in the code that does not match your intent. But If you use an LLM to write a test using said code as context (instead of the original intent you would use yourself), there’s a risk that it’ll just write a test case that makes sure the code contains the wrong behavior.
Okay, it might still be okay for regression testing, but you’re still missing most of the benefit you’d get by writing the tests manually. Unless you only care about closing tickets, that is.