(no title)
vdupras | 14 days ago
> Being able to code doesn't make you better than the "plebs" who are creating massive value with a vibe coded tool.
> [...] I noticed AI could really code better than me [...]
AI code output is generally considered mediocre (in the sense of "on the median"). If it codes better than you, it might be that your code output is generally below average.Might it be the case that you don't grasp how good one can get with computers and thus not realize that one could be much better than you are at programming them? Did you consider for a moment the possibility that you were missing something?
borzi|14 days ago
vdupras|13 days ago
If that is so, then your whole comment is inconsistent and akin to "I do all my poetry with LLMs now and I don't see what people have against it: it's often better than me at punctuation!"
a_better_world|12 days ago
Point is, this isn't trivial, it is the kind of thing that ends up saving work over the long haul.
Or include this in my agent 'rules' files.
GOOD EXAMPLE
query=f""" SELECT foo FROM {sometable} WHERE {condition} """ answer=spark.sql(query).toPandas()
BAD EXAMPLE
answer=spark.sql(f""" SELECT foo FROM {sometable} WHERE {condition} """).toPandas()
philipwhiuk|12 days ago
If you think software quality isn't tied to readable (clean) code...