TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Are you using AI coding assistance?

9 pointsby cloudking4 days ago
Why or why not?

10 comments

CM30about 23 hours ago
Ocasionally. It&#x27;s always for boilerplate code that I can&#x27;t be bothered to look up&#x2F;rewrite, and I always have the ability to verify what the tool spits out, so I don&#x27;t see it as too risky there.<p>I&#x27;d never vibe code a whole project, especially not in a language I don&#x27;t know too well.
paulcoleabout 3 hours ago
Yes, 100% of the time.<p>My job is in operations at a marketing agency. Scripts that I used to code in an hour take seconds now. Scripts that used to take hours take minutes.<p>The fast turnaround means there is almost no “cost” to experimenting with some new script&#x2F;automation.<p>It’s really amazing.
sherdil20224 days ago
I use - but cautiouslyc, that is I don’t do ‘vide coding’ (I hate the term). Why? I started building a project in Rust - which I was very new. Using LLMs helped me speed up the process of development and testing, and I verify what was spit out by the LLM (unlike vibe coding).<p>Granted, it is frustrating at times since I end up spending lot of time verifying and iterating.<p>But overall it is definitely efficient to use LLMs for developing software.
评论 #43932853 未加载
mrdependable3 days ago
I do use it, but pretty much just the chat interface. Even that I am a bit wary of because too many times it will suggest doing things that are insanely complex for no reason. I&#x27;ve tried a few different flavors of AI coding such as Cursor, but I didn&#x27;t see the benefit if I couldn&#x27;t really trust what it was doing.<p>Mainly I use it like a coworker to bounce ideas off of, and that seems to work pretty well. Sometimes it will reveal some information, or do something in a way I hadn&#x27;t thought of. The only problem is that it tends to veer into unnecessary territory if I&#x27;m not careful what enters into the context.<p>I also still just use Google because I find advice written by humans to be much more valuable.
tocs34 days ago
I have tried using chatGPT a few times. Early on I had no luck but lately it has been a better experience. Maybe it has gotten better or maybe I have started asking better questions. I used it the other day to help me with some regex strings and I even enjoyed the experience.
评论 #43932468 未加载
scrapheap3 days ago
I&#x27;m actively not using AI coding assistance as I think it would weaken my ability in the long run.
skwee3573 days ago
I tried, but I don’t find them useful.<p>I tried supermaven, and llama.cpp, as autocomplete in steroids, but they got annoying pretty fast.<p>I now use ChatGPT and Claude to ask questions about thing I don’t know how to do, or ask them to rewrite&#x2F;optimize a specific piece of code.
owebmaster4 days ago
Yes. I can make it generate code that is on par with my own - not sure if this is good or bad, but it help me do my work faster and with better quality.
评论 #43932849 未加载
diatone3 days ago
Yes definitely, it tends to autocomplete patterns that extend beyond basic intellisense.<p>Also there are scenarios where wiring up exhaustive cases would be tedious or require clever use of a vim macro, that a call to AI tends to do in slightly less time but much less mental overhead - allowing me to move on with less fatigue. Overall I cover more ground this way.<p>It tends to excel when I’ve structured code in a way that’s easily copyable or extensible, such that I can ask the AI to replicate pattern A but for API B. Again this saves me dropping into a low level understanding of an API integration unless I absolutely need to. I tend to check if I need to based on test cases, observability, and performance monitoring —- all the same shit I’d usually use to determine whether or not I should edit the code manually anyway.<p>Overall, obvious net benefit when used prudently. I’ve seen juniors use AI to write messy code that’s challenging to debug, understand, and maintain. It really is just another tool. You can use it to make your life easier or you can use it to make your life harder.
idontwantthis2 days ago
I use it every day but not to write a ton of code. I ask it questions and sometimes have it reformat&#x2F;refactor things. The problem is that when I work, I spend 90% of my time figuring out what to do and 10% coding. When I do finally code that’s usually the relaxing part of the job. Also I’ve been doing a lot of elastic search and it is completely hopeless at that. Just makes up all kinds of things for every question I ask.