I'd be curious to hear about the workflows people have come up with using ChatGPT. I'm still in the realm of "I don't know how to do this" or "I forgot the exact incantation to that" or "is the an X that does Y in framework Z?"
GPT-4 is quite capable of writing function-length sections of code based only on descriptions. Either in a context where you're not sure what the a good approach is (for myself, when writing Javascript for example), or when you know what needs to be done but it's just somewhat tedious. Here's a session from me working on a side project yesterday: https://chat.openai.com/share/a6928c16-1c18-4c08-ae02-82538d... The mos…
Major outages across ChatGPT and API
421–430 of 617 posts
Re: Major outages across ChatGPT and API
#422I'd be curious to hear about the workflows people have come up with using ChatGPT. I'm still in the realm of "I don't know how to do this" or "I forgot the exact incantation to that" or "is the an X that does Y in framework Z?"
Ask it to document the conditions according to the code and taking into consideration the following x, y, z.
Output a raw markdown table with the columns a, b, c.
Translate column a in English between ()
---
Speeds up the "document what you're doing" for management purpose, while I'm actually coding and testing out scenarios.
Tbh. I'm probably one of the few that did the coding while "doing the analysis".
Ps. It's also great for writing unit tests according to arrange, act, assert.
Re: Major outages across ChatGPT and API
#423Earlier quoted context omitted.
I used it for the first time today too, for the same reason. It was slower and much worse at coding. I was just asking it for SQL aggregation queries and it just ignored some of my requirements for the query.
In my case, I was just asking it for a cheeky name for a talk I want to give in a few months. The suggestions it gave were of comparable quality to what I think ChatGPT would have given me.
Re: Major outages across ChatGPT and API
#424Earlier quoted context omitted.
It can... fortunately I’m a principle @ my firm... the engineers I would have needed to hire might have been preemptively replaced. My use case is a bunch of adhoc data analysis.
If junior engineers are replaced by AI, who will be the Principles @ your firm in 20 years?
Re: Major outages across ChatGPT and API
#425Not a great day for the SRE/Ops folks. Please remember there are not always teams, sometimes it's just one person, who have to deal with this.
Re: Major outages across ChatGPT and API
#426Earlier quoted context omitted.
It can... fortunately I’m a principle @ my firm... the engineers I would have needed to hire might have been preemptively replaced. My use case is a bunch of adhoc data analysis.
If junior engineers are replaced by AI, who will be the Principles @ your firm in 20 years?
Re: Major outages across ChatGPT and API
#427I'd be curious to hear about the workflows people have come up with using ChatGPT. I'm still in the realm of "I don't know how to do this" or "I forgot the exact incantation to that" or "is the an X that does Y in framework Z?"
What I'm about to say is in the context of programming. I have the tendency to get caught up in some trivial functionality, thus losing focus on the overall larger and greater objective.
If I need to create some trivial functionality, I start with unit tests and a stubbed out function (defining the shape of the input). I enumerate sufficient input/output test cases to provide context for what I want the function to do.
Then I ask copilot/ChatGPT to define the function's implementation. It sometimes takes time to tune the dialog or add some edge cases to the the test cases, but more often than not copilot comes through.
Then I'm back to focusing on the original objective. This has been a game changer for me.
(Of course you should be careful about what code is generated and what it's ultimately doing.)
Re: Major outages across ChatGPT and API
#428I used Google Bard for the first time today specifically because ChatGPT was down. It was honestly perfectly fine, but it has a slightly different tone than ChatGPT that's kind of hard to explain.
I used it for the first time today too, for the same reason. It was slower and much worse at coding. I was just asking it for SQL aggregation queries and it just ignored some of my requirements for the query.
For a fair comparison, you probably need to try while ChatGPT is working.
Re: Major outages across ChatGPT and API
#429I'd be curious to hear about the workflows people have come up with using ChatGPT. I'm still in the realm of "I don't know how to do this" or "I forgot the exact incantation to that" or "is the an X that does Y in framework Z?"
GPT-4 is quite capable of writing function-length sections of code based only on descriptions. Either in a context where you're not sure what the a good approach is (for myself, when writing Javascript for example), or when you know what needs to be done but it's just somewhat tedious. Here's a session from me working on a side project yesterday: https://chat.openai.com/share/a6928c16-1c18-4c08-ae02-82538d... The mos…
Re: Major outages across ChatGPT and API
#430I'd be curious to hear about the workflows people have come up with using ChatGPT. I'm still in the realm of "I don't know how to do this" or "I forgot the exact incantation to that" or "is the an X that does Y in framework Z?"