Hacker News new | ask | show | jobs
by gombosg 1180 days ago
I agree. Usually you're already working within some framework or DSL where you can describe what you want to do. Ideally, you already have an idiomatic codebase enabling you to succinctly transform specifications into code.

Let's take parent poster's issues:

> Writing HTTP endpoints, parsing json. Mapping data types.

The generative model (for now) won't figure out for you: authentication, authorization, input form schema, JSON schema, required & optional fields, field constraints, entity modeling, indexing, query optimization, just to name a few basic issues we are looking at when "just developing CRUD apps".

If any of those go bad, it would result in 400s, 500s, performance or security issues.