Comment by mexicocitinluez

Comment by mexicocitinluez a day ago

1 reply

> people with code-generators they've made could do this just as fast as the AI except their generators could have engineering considerations built-in to them as well so it'd be even better

Code generators? Can you be more specific?

DaiPlusPlus 19 hours ago

I think they're referring to the project scaffolding features that's built-in to framework tooling thesedays (e.g. `ng generate ng <schema>` or `dotnet scaffold`).

There's also the practice of using good ol' fashioned code-generation tools like T4 or Moustache/Liquid templates to generate program entity classes and data-access methods from a DB schema, for example. Furthermore, now there's pretty nifty compile-time code-generation in C# - while languages like F# support built-time type-generation.

...and these are all good tools IMO; but really aren't comparable to an LLM, imo.