|
|
|
|
|
by Karunamon
814 days ago
|
|
I grow skeptical of these angry anti-AI posts when they lack such easily-provided evidence. There is a share button on every chat on ChatGPT. You could just share the conversation here and spare us all a lot of pointless back-and-forth. https://chat.openai.com/share/371863ec-edbd-4454-8b19-382035... Here is an example of the kind of scripting I do regularly with ChatGPT. I cannot speak to its capabilities with Go, but it is quite proficient at Python. |
|
If you start getting into more esoteric edges of Python, like SharedMemory, ChatGPT quickly falls apart. Or, more relevant to your example, using carriage return to overwrite text for a progress indicator – works great, very simple. Until you try to use it through subprocess. To ChatGPT’s credit, it eventually came up with using pty, which with some massaging, I got to work.
I’m not saying it isn’t useful – far from it. It’s just that on anything modestly complicated, you sometimes have to spend more time fiddling with the prompt than if you just sat down and wrote the code. Another example that comes to mind was implementing a B+tree in pure Python. I know how they work, and wanted to see if ChatGPT could figure it out. You’d think so, right? But no, it kept getting stuck on node splits.