Also stuff like leetcode goes away hopefully soon as as long as you understand a data structure and it's benefits you don't have to learn to implement it in every language?
Ask HN: Did modern AI's coding abilities make you lose interest in programming?
11–20 of 47 posts
Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#12Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#13What I've observed the benefits to be: AI chat apps are great at internet searches that can filter out all the nonsense. They are good at transferring algorithms between languages. They're great at knowing common patterns.
I still write all my own code 100%, AI has simply replaced my Google research (ironically using Gemini).
Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#14The fun / creative part for me is not googling “how to slurp the contents of a file into a string” or “the exact syntax for marking some functions as unit tests” or “the correct order of symbols to specify generic type param”
It’s not “the correct html / css syntax for this basic gui I want to make”
It’s not “how to achieve the thing I’ve done 10 thousand times in other languages/frameworks, but for this language/framework”
It’s figuring the core logic out, building the thing while skipping the boring stuff, playing with abstractions that scratch my itch.
From this pov, AI is the best thing that has happened to my weekend coding. I code recreationally way more than before. Before AI, I would try a new language or framework, and I’d give up halfway because re-figuring out basic stuff for the umpteenth time is boring, it’s not fun at all. Now AI lets me skip those boring parts.
Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#15AI has increased my interest in programming, because it's made me far more productive and it's quicker to learn new things. I am more creative than ever because I have new avenues.
Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#16It’s made me lose a lot of interest in reading / watching videos about programming. I enjoy AI for what it enables me to do, but it has changed the landscape of “content” to the point where I spent a lot less time taking in what’s out there since so much is AI related. Have chosen to stop following some channels on youtube / browse HN less.
Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#17Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#18Re: Ask HN: Did modern AI's coding abilities make you lose interest in programming?
#19It’s quite the opposite for me. The fun / creative part for me is not googling “how to slurp the contents of a file into a string” or “the exact syntax for marking some functions as unit tests” or “the correct order of symbols to specify generic type param” It’s not “the correct html / css syntax for this basic gui I want to make” It’s not “how to achieve the thing I’ve done 10 thousand times in other languages/frame…