TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Post-LLM's, do you create web applications much more quickly?

11 点作者 trevett超过 1 年前
How much shorter is development time, on average?

11 条评论

Jack000超过 1 年前
I was writing an SVG editor web app but didn&#x27;t know anything about the fabricjs api. Here&#x27;s a portion of my prompts with chatgpt (april 2023 version, the date at the top is the share date). The initial code came from a different chatgpt thread.<p><a href="https:&#x2F;&#x2F;chat.openai.com&#x2F;share&#x2F;e630c5d4-d492-43cb-b7e5-214ff83c7fb3" rel="nofollow noreferrer">https:&#x2F;&#x2F;chat.openai.com&#x2F;share&#x2F;e630c5d4-d492-43cb-b7e5-214ff8...</a><p>I finished the app in 2 days, with a third day for css&#x2F;visual styling. I previously might have hired someone to do this or tried to figure it out myself, which would have taken about a month.<p>At the end of this thread chatgpt kind of goes off the rails a bit and fails to center the uploaded image. I think this is because it can&#x27;t execute the code and see its results, and can only take blind guesses at what the problem might be.<p>I still had to write about 10% of the code myself, but it&#x27;s about 10x faster for me to use chatgpt. I think I&#x27;d use chatgpt even if it were slower, because I prefer &quot;thinking in natural language&quot; vs &quot;thinking in code&quot;<p>here is the final app in production: <a href="https:&#x2F;&#x2F;tinyurl.com&#x2F;368w3a9y" rel="nofollow noreferrer">https:&#x2F;&#x2F;tinyurl.com&#x2F;368w3a9y</a>
meiraleal超过 1 年前
Development time in the end didn&#x27;t change much - I code all the time, most software I develop isn&#x27;t or will get done. But the quality and the codebase size I&#x27;ve being able to create and manage is much bigger now than six months ago. I&#x27;ve being coding using chatgpt almost every day since then, many hours a day.<p>In fact, chatgpt might have made the development time bigger as I&#x27;m refactoring it more often and even recreating things from scratch with a much better quality after validating some PoC&#x27;s. I&#x27;m really enjoying this workflow for a side-project.
broast超过 1 年前
This may be a bold claim and it&#x27;s hard to quantify, but based on weekly output I think it has sped up my development by 50%-80%, between researching technologies with chatgpt4, coming up with designs and code, copilot filling in the blanks, and gpt4 helping with troubleshooting. These are things that used to take me hours of scouring the web and docs, time spent on proofs of concepts, and additional trial and error- which has largely disappeared.<p>With the amount of time and effort saved I generally feel more confident about being able to create scripts or programs to solve problems or create art as a second nature, rather than having to treat each idea as a large project.<p>Similarly I have seen my brother go from someone who has never programmed to doing beautiful data analysis in python thanks to gpt4, for his own side projects. The speed in which he&#x27;s learned has really impressed me. Makes me think that this technology will introduce many new programmers quickly.
wruza超过 1 年前
I only used it once to create a toy browser extension, but I believe it extrapolates.<p>The key thing it allowed me to do was to skip the initial “how to, even” learning curve. It wrote a manifest and html+js, from which I got that there are permissions. Then I asked again about an extension with a specific permission.<p>This skipped an hour of learning what a manifest is, how to use it and so on. I’d learn it faster, but with modern google search you have to skim through and close a few bunches of “tutorials”, before you find one that is less full of bs than usual. I couldn’t search directly for a manifest format because I didn’t know it’s a thing.<p>This is a great value for adjacent areas I’m not specializing in.
solardev超过 1 年前
I found that Copilot sped up the trivial things (boilerplate, simple APIs, popular algorithms) and routinely messed up the harder tasks (user flows, composing several functions meant to work together, etc.). It was a net negative for me and I stopped using it after a month or two of experimentation.<p>I did use ChatGpt to replace stackoverflow a few times, and for that it was super helpful. Stack is so full of junior modding closing useful questions left and right with no clear links to the answers. ChatGpt just steals all that content then summarizes the answer, lol.<p>Overall no faster or slower. But definitely higher quality than humans being argumentative pedants.
codingdave超过 1 年前
Day-to-day coding on a platform that I already know, there not much of a difference. It might save me a few minutes here or there.<p>Where it does help is when I am learning something completely new. I can ask how to do something, get an example that may or may not work, but that often exposes me to a new way of doing things and gives me hints of what else to study to learn this new thing. That learning curve is significantly sped up.
jryb超过 1 年前
Yes, though I haven&#x27;t done any web development in a decade, so it&#x27;s more of an enabling technology since I couldn&#x27;t be bothered to relearn everything. I wrote most of an Anki replacement in a weekend recently and i don&#x27;t want to even think about how long it would&#x27;ve taken me without chatgpt. Realistically I would&#x27;ve given up.
quickthrower2超过 1 年前
Nope. LLMs are marginally helpful. Often to be LLM worthy a problem has to be pretty desperate because of the high chance of getting a wrong answer. That said as a search engine Phind has been useful. I find it more useful than a LLM alone. But we are talking a 1% saving in time as most problems are better served reading the docs.
vanilla-latte超过 1 年前
I find it immensely helpful for boilerplate code and ‘autofilling’ trivial things.<p>It’s like a next generation intellisense.<p>On average, instead of spending about 5 mins copying and modifying code, I can spend about 2-3 mins typing out a comment and letting the LLM generate the code.<p>It gets the code 100% correct about 90% of time. Sometimes it’s about 90% correct about 10%.
gardenhedge超过 1 年前
It has made the easy parts easier and faster but most of the time is spent on the harder parts. I think my stuff is more polished now thanks to LLMs since I don&#x27;t have to write css myself anymore.
ActorNightly超过 1 年前
Yes. LLMs are basically just a more efficient Google to me a this point. Searches for what I need on the average are way quicker.