Live data from Hacker News

Ask HN: What are your thoughts on ChatGPT as a professional?

news.ycombinator.com

11–20 of 65 posts

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#11
post #6

It’s a tech demo, data acquisition and research/prototyping operation for OpenAI that’s highly subsidized and aimed at building a qualify dataset for GPT 5+ - effectively using their initial models trained in an unsustainable fashion and only offering temporary moats into investor narrative and a combination of new data and users, both potentially new moats and closing the gap to google. It’s not a serious product.

What makes google's tech demo different?

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#12
I find it's great for very generic work, like boilerplate or where you have forgotten how to implement a specific single, well defined algorithm. However, relying on its output is very risky if you aren't verifying everything it puts out. A good test to show this is to ask it to write a short essay on something you know very well, then behold all the incorrect information it enthusiastically tries to feed you.

Also:

* It has a horrible habit of inventing properties on objects or methods in libraries.

* It will very happily straight up lie to you about things it does

* Often when you ask it to make a specific change, it will give you back exactly the same as last time.

* For the love of God, don't put any company-owned code into it.

* Maybe I'm just bad at prompting...

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#13
No stigma, just don't get too reliant on it, some of the stuff it spits out is terrible or entirely made up gibberish that doesn't even work.

Use it to save time. Stuff like writing boilerplate, documentation drafts, summarizing things, looking up stuff you'd normally use stack overflow for, things like that.

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#14
post #9

Earlier quoted context omitted.

Can you explain how you use it? Every time I try to use it for programming, the output is somewhat nonsensical. I also tried copilot but that was even worse (for terraform and python)

Are you using 3.5 or 4?

4

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#16
I find it useful to handle things like creating diagrams and describing architecture, since I have some trouble converting what’s in my head to diagrams on paper. I can verify if the output matches my description of the requirements and make any surgical changes to the UML by hand.

I don’t use it for programming though, and I do worry about otherwise talented engineers using it as a crutch. There has been more than one occasion in code review where an answer to one of my comments was “well, this is what copilot said…,” which I take a pretty dim view of. In that sense it’s like the early 2000s when people started thoughtlessly deferring their intelligence to sat nav.

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#17
I find it excellent to talk to it to learn the basics about something I don't have much experience in. Its broad knowledge helps a lot with that. When it comes to finding super accurate, or updated, or state of the art things, it's not great, but it definitely can lead you in the right direction. And this removes so much friction from trying new things.

Note: I'm a technical freelancer, mostly doing code but also some 3D modeling, game development etc

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#18
I find it excels as a "rubber ducking" partner, as a replacement for "tldr" on esoteric utilities whose documentation is either lacking or overly verbose, and most especially as a non-technical tool for generating concepts you may not have thought of (e.g. "what aspects should I be considering when designing X").

Most of these use cases work around the "problem" of hallucination (except perhaps the 2nd one); it's ideating for you and you judge what's useful or not. As such, it's one more productivity tool I feel people should learn to use, with the relevant understanding and care.

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#19
post #9

> is there any stigma with using ChatGPT in the workplace? I work in a big tech company. ChatGPT (and equivalent systems) is becoming pervasive in developers tooling. There's no stigma, it's used is actually encouraged. I don't think it's a life changer or that it'll save engineers the time to learn their craft.

Can you explain how you use it? Every time I try to use it for programming, the output is somewhat nonsensical. I also tried copilot but that was even worse (for terraform and python)

I use for well defined tasks which I know I'd find the answers by looking at documentation (and which I know how I'd approach but can't remember the details), so instead of rummaging through libraries' docs (or API docs), looking into a language's syntax I don't use everyday (looking at you, SQL JOINs), etc. I will craft a prompt to ChatGPT to get me through the 80% of looking into docs.

It will eventually hallucinate some property that doesn't exist, but since I kinda know what I'm looking for and just need the information condensed to move further I'll then verify the API/library docs with the given output and find my way through much faster than I would by starting on my own.

To me it does not become a code generator aside from boilerplates and starting points in languages I'm not an expert, it even helps me a lot to learn a new language (like Rust) where I can get a simple skeleton out of it for a task I want to do and code on my own later, just returning to ChatGPT to ask things like "how could I open a file with write access in ".

It's never helped me with any business logic properly (and I don't feed it my company's code, I will write a more generalised case as a prompt, or swap to an analogy to what I'm trying to do), it probably needs a lot more context that I'm not happy nor comfortable to feed into OpenAI's training dataset.

I'm been playing with Mistral's models locally through ollama and it's quite promising what one can do with a local model that you can feed a lot of context without caring about where private data is being stored, I see a big future if those models keep evolving as code assistants.

Re: Ask HN: What are your thoughts on ChatGPT as a professional?

#20

> is there any stigma with using ChatGPT in the workplace? I work in a big tech company. ChatGPT (and equivalent systems) is becoming pervasive in developers tooling. There's no stigma, it's used is actually encouraged. I don't think it's a life changer or that it'll save engineers the time to learn their craft.

>There's no stigma, it's use is actually encouraged.

At companies I've worked at, it's actively encouraged _if you follow the rules_. Specifically, you shouldn't be using SaaS LLMs like ChatGPT, Copilot, etc with your personal account for business purposes. That's likely a violation of your NDA.

However, it's absolutely encouraged to use the tools that the business blessed. That's what they're there for. Local LLMs seem to depend on licensing for the weights, etc but are also kind of a "don't ask don't tell" situation.

Of course, if the business hasn't gotten an approved tool by now... well, in that case there are going to be lots of employees using whatever they want, and you should probably be looking for a new job because that business is behind.

Also I wouldn't agree there's "no stigma". I know some people that use it to just make up word vomit for peer evaluations or extremely WET/cargo-culted code they don't understand for which I definitely judge them.

Post reply on HN