frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What are you working on? (June 2026)

222•david927•16h ago•793 comments

I indexed 669 GB of my GoPro videos using my M1 Max computer and local ML models

366•iliashad•17h ago•90 comments

What I have done with Claude Code in the last 60 days being a non tech person

3•sahiltll•1h ago•2 comments

Ask HN: What does your local LLM setup looks like?

3•the-mitr•4h ago•3 comments

Ask HN: How are thinking efforts implemented?

97•simianwords•1w ago•30 comments

I'm Eric Ries, author of "The Lean Startup" and new book "Incorruptible" – AMA

797•eries•4d ago•576 comments

Ask HN: Favorite text heavy blogs that are a joy to read?

113•joshmarinacci•5d ago•29 comments

Ask HN: Why hasn't there been a real competitor to Ticketmaster yet?

262•mdni007•6d ago•239 comments

Ask HN: Year of Linux Desktop is fun with LLMs

3•mirekrusin•10h ago•2 comments

AWS Bedrock to require sharing data with Anthropic for Mythos and future models

423•TomAnthony•5d ago•254 comments

Ask HN: Want to build something open source on nights and weekends together?

39•vira28•4d ago•16 comments

Notes on DeepSeek

208•vinhnx•4d ago•140 comments

Is there a name for the type of comments agents add where they leak the prompt?

17•xdennis•1d ago•8 comments

Ask HN: Would it be useful to have a slop button in addition to flag?

36•BugsJustFindMe•4d ago•23 comments

Ask HN: Are most corporate SWE jobs performative?

247•hnthrow10282910•4d ago•282 comments

Ask HN: What are tools you have made for yourself since the advent of AI?

441•aryamaan•6d ago•775 comments

Ask HN: How do you get into a flow state when using AI to code?

93•kilroy123•3d ago•120 comments

I procrastinate by building tools to stop me from procrastinating: A sad story

20•thisislorenzov•3d ago•10 comments

FTX's former Anthropic stake would be worth about $75B at today's valuation

41•adam_rida•15h ago•22 comments

Ask HN: Are you still using a Vision Pro?

171•y1n0•5d ago•214 comments

Story of How Im Running an Unlimited $6/Month AI Provider on 4x RTX 3090s

7•yolo-auto•1d ago•3 comments

Ask HN: Is anyone shorting the overspend in AI yet?

17•ggm•4d ago•15 comments

Ask HN: Is there a metric for AI code quality?

6•fractalf•3d ago•6 comments

What if we legally required politicians to work regular jobs 2 months a year?

11•ekoeko•1d ago•14 comments

Ask HN: What internal tool did you build that became a product?

7•nehpets•4d ago•6 comments

Ask HN: Did we witness the "Trinity moment" for AI?

18•vld_chk•1d ago•28 comments

Tell HN: iOS devs, get back lots of disk space: xcrun simctl delete unavailable

5•amichail•1d ago•0 comments

Ask HN: Agents get dumber before release of new model version?

9•sporkland•3d ago•7 comments

Ask HN: I Need Help for a Product

9•memoryleakgame•2d ago•5 comments

Ask HN: What is the AI adoption approach at your org?

6•iExploder•1d ago•8 comments
Open in hackernews

Ask HN: Are you using AI coding assistance?

9•cloudking•1y ago
Why or why not?

Comments

tocs3•1y 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.
cloudking•1y ago
Have you tried any of the agentic coding editors like Cursor, Windsurf etc?
sherdil2022•1y 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).

Granted, it is frustrating at times since I end up spending lot of time verifying and iterating.

But overall it is definitely efficient to use LLMs for developing software.

cloudking•1y ago
Do you think you are more productive overall?
sherdil2022•1y ago
Hard to say but using LLMs properly would make developing things faster In general - yes.

In my case, my baseline mood and motivation fluctuates - so I only. see a small increase in productivity overall - if at all.

I have also noticed excitement to build something new and exciting wore off a bit - because it is ‘just an LLM prompt or two away’.

owebmaster•1y 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.
cloudking•1y ago
Nice, what tools are you using?
owebmaster•1y ago
mostly the chat UI of the main LLMs and integrating it directly in my code myself, through a browser extension which connects to the LLMs chat UI (and gives me an API for free :))
diatone•1y ago
Yes definitely, it tends to autocomplete patterns that extend beyond basic intellisense.

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.

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.

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.

skwee357•1y ago
I tried, but I don’t find them useful.

I tried supermaven, and llama.cpp, as autocomplete in steroids, but they got annoying pretty fast.

I now use ChatGPT and Claude to ask questions about thing I don’t know how to do, or ask them to rewrite/optimize a specific piece of code.

scrapheap•1y ago
I'm actively not using AI coding assistance as I think it would weaken my ability in the long run.
mrdependable•1y 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've tried a few different flavors of AI coding such as Cursor, but I didn't see the benefit if I couldn't really trust what it was doing.

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't thought of. The only problem is that it tends to veer into unnecessary territory if I'm not careful what enters into the context.

I also still just use Google because I find advice written by humans to be much more valuable.

idontwantthis•1y ago
I use it every day but not to write a ton of code. I ask it questions and sometimes have it reformat/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.
CM30•1y ago
Ocasionally. It's always for boilerplate code that I can't be bothered to look up/rewrite, and I always have the ability to verify what the tool spits out, so I don't see it as too risky there.

I'd never vibe code a whole project, especially not in a language I don't know too well.

paulcole•1y ago
Yes, 100% of the time.

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.

The fast turnaround means there is almost no “cost” to experimenting with some new script/automation.

It’s really amazing.