VOOZH about

URL: https://thenewstack.io/openai-chatgtp-and-the-next-age-of-build/

⇱ OpenAI, ChatGPT and the Next Age of 'Build'  - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2023-02-01 07:55:45
OpenAI, ChatGPT and the Next Age of 'Build' 
sponsor-launchdarkly,sponsored-post-contributed,
Software Development

OpenAI, ChatGPT and the Next Age of ‘Build’ 

Whether we’re excited or worried about ChatGPT, there’s a way to approach AI technology that can truly shift the way developers build and ship code.
Feb 1st, 2023 7:55am by Cody De Arkland
👁 Featued image for: OpenAI, ChatGPT and the Next Age of ‘Build’ 
LaunchDarkly sponsored this post. Insight Partners is an investor in LaunchDarkly and TNS.

The work from OpenAI, specifically, ChatGPT has dominated tech circles as of late. The most recent update to the 3.5 release has brought the concept of “generative AI” into the mainstream by presenting an interface that allows users to interact with the artificial intelligence conversationally.

Unlike other new technologies, this system’s approachability has quickly taken it beyond just software development circles. For some, this is generating entire reports or analysis on a topic; for others, it might be creating songs or other art. If you want to have a real laugh, ask it to write you a “snarky letter quitting your job.”

In the software development space, ChatGPT is ushering in the next age of building software. A quick scroll through any of the major social media platforms will show polarizing opinions.

Some approach the introduction of this conversational generative AI as revolutionary and exciting, completely changing their daily workflow. For others, it presents uncertainty and risk — risk of flawed and unchecked code making its way into production or even fear of job elimination.

Unleash developer productivity for the software-powered world by fundamentally changing how you deliver software to your customers. With LaunchDarkly’s feature management platform, empowered developers can empower the business to release new features faster and more efficiently than ever. LaunchDarkly and TNS are under common control.
Learn More
The latest from LaunchDarkly

The debate about whether to be excited or worried probably ends somewhere in the middle, and while both sides have strong claims to make,  there’s a way we can approach ChatGPT that can truly shift the way developers build and ship code.

On one hand, ChatGPT drastically lowers the complexity bar to writing software in a way that we have never seen previously. I can’t help but think of the most common paths people take when learning new software languages and how that has been transformed.

The old way of spending hours hammering away at a search engine looking for example code or browsing forums searching for answers might have gone the way of Blockbuster or landlines. The old way sometimes gave you answers and hopefully an explanation, but you could also end your search more confused than when you began.

In these early stages of the “build with ChatGPT” era, we ask the AI for a component, and it returns the example code. I was curious to see how this could net out and tested this idea by asking ChatGPT, “Show me how to write a feature flag in React with LaunchDarkly.” True to the hype, it surprisingly and quickly returned an example of switching between two software components with a feature flag.

When I fed it a second prompt asking it, “Can you show me an example in Python?” it quickly pivoted to the new example. Both of these instances also included step-by-step examples showing what the code meant and implementation considerations specific to LaunchDarkly. It even included links to the documentation.

But was it “copy and pastable”? Not quite.

Even when it comes to AI, learning the right questions to ask is an art form of its own.

While this code was valid, there were critical parts of the code missing. LaunchDarkly requires the language SDKs to be initialized within the application code, and since the prompt didn’t ask for that, this part was omitted. When I augmented my query, it returned new code including the initialization components as well.

It’s a great example that even when it comes to AI, learning the right questions to ask is an art form of its own. Even with the right question finally asked, there’s still business logic that needs to be taken into account. ChatGPT will likely never understand specific different aspects of other implementations because the models it learns from might or might not include examples that match your own needs.

So in this simple example, we asked ChatGPT for some code and were given the results we asked for, alongside explanations and links to documentation, but it wasn’t quite enough because it was missing requirements that we didn’t consider asking it for. We slightly modified our questions, and in return received the additional details we needed. However, ChatGPT lacked enough definition to drop in and run, and it required us to have a certain level of knowledge of the tooling to know the right question to ask.When thinking about ChatGPT and the developer experience, it’s hard to imagine a world where ChatGPT entirely replaces developers who are building software.

What does this mean for the usefulness of the ChatGPT in the real world?

After tinkering around with ChatGPT, I believe that the answer lies in improvements to the developer workflow. When thinking about ChatGPT and the developer experience, it’s hard to imagine a world where ChatGPT entirely replaces developers who are building software. The system is certainly adept at answering questions and giving information, but it’s always going to struggle to understand the complexities of specific software implementations within a given environment.

There are possibilities in this new build era where a developer blindly copies code generated by ChatGPT into their environment and spends several hours debugging when/if something goes wrong. While this is certainly feasible, the consequences of a speedy code tool are likely outweighed by the possibility of something like a site crash.

The more likely outcome of using ChatGPT is that a developer approaches it as a tool they can use to augment their existing development workflow to accelerate the earlier stages of their development process.

Tasks like quickly bootstrapping the start of a project or filling in the gaps of knowledge (both from areas like language knowledge, and even into the realm of process knowledge) let developers accelerate the way they learn and build.

If the software world were made of cookie-cutter code, then there is a chance that ChatGPT might be able to replace development teams. However, that is not our reality. The reality is that every business approaches its problem space in different ways.

Layers of process, business logic, technical debt, design decisions and architecture create a context that ChatGPT can’t answer universally. It’s a tool that we can use to build software faster, expand our own learning and grow from using. Those that ignore it will end up behind the curve, but those that solely rely on it will end up on more outage retrospective calls and filling out root cause analysis docs.

Unleash developer productivity for the software-powered world by fundamentally changing how you deliver software to your customers. With LaunchDarkly’s feature management platform, empowered developers can empower the business to release new features faster and more efficiently than ever. LaunchDarkly and TNS are under common control.
Learn More
The latest from LaunchDarkly
TRENDING STORIES
Cody De Arkland is the head of developer experience at Sentry, where his team focuses on helping developers build and ship software more safely. He's an engineer, product leader and marketer but mostly loves helping teams figure out how they...
Read more from Cody De Arkland
LaunchDarkly sponsored this post. Insight Partners is an investor in LaunchDarkly and TNS.
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: LaunchDarkly, Pragma, OpenAI.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.