by trevett on 11/6/23, 1:27 AM with 11 comments
by Jack000 on 11/6/23, 4:11 AM
https://chat.openai.com/share/e630c5d4-d492-43cb-b7e5-214ff8...
I finished the app in 2 days, with a third day for css/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.
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't execute the code and see its results, and can only take blind guesses at what the problem might be.
I still had to write about 10% of the code myself, but it's about 10x faster for me to use chatgpt. I think I'd use chatgpt even if it were slower, because I prefer "thinking in natural language" vs "thinking in code"
here is the final app in production: https://tinyurl.com/368w3a9y
by meiraleal on 11/12/23, 12:41 AM
In fact, chatgpt might have made the development time bigger as I'm refactoring it more often and even recreating things from scratch with a much better quality after validating some PoC's. I'm really enjoying this workflow for a side-project.
by broast on 11/6/23, 1:37 PM
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.
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's learned has really impressed me. Makes me think that this technology will introduce many new programmers quickly.
by wruza on 11/6/23, 6:19 PM
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.
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.
This is a great value for adjacent areas I’m not specializing in.
by solardev on 11/6/23, 1:40 PM
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.
Overall no faster or slower. But definitely higher quality than humans being argumentative pedants.
by codingdave on 11/7/23, 11:10 AM
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.
by jryb on 11/7/23, 3:47 AM
by quickthrower2 on 11/6/23, 3:16 AM
by vanilla-latte on 11/6/23, 4:21 AM
It’s like a next generation intellisense.
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.
It gets the code 100% correct about 90% of time. Sometimes it’s about 90% correct about 10%.
by gardenhedge on 11/7/23, 3:30 PM
by ActorNightly on 11/7/23, 8:35 PM