Live data from Hacker News

Ask HN: I don't use AI. What exactly am I missing out on?

news.ycombinator.com

31–40 of 62 posts

Re: Ask HN: I don't use AI. What exactly am I missing out on?

#31
post #25

I am a bit of a greybeard around new tools, and even today my usage of ChatGPT is limited, so I will give my 2c. You're right, in most cases, Google + Github search is faster to achieve a certain task vs typing out your problem and waiting for ChatGPT to generate results (personal opinion). Nonetheless, here are a few things where ChatGPT saves a lot of time: 1. Generating config files: Eg, Webpack, Docker-compose. D…

idk I feel like [3] aside, doing all of those things doesn't take me very much time? Also, I think that turning to ChatGPT to compose a shell pipeline is a smell

Doing [4] yourself doesn't take a lot of time, but the time savings adds up.

That said, I wouldn't recommend using the standard ChatGPT interface for generating code -- just use a solution that integrates with your IDE/editor, and use it as some kind of coding autocomplete. (You can sometimes even trick the AI to converse with you in the comments, eg. /* Question: what is the gcc option to enable all warnings? Answer: ... ), so it can be super convenient when you just have a random question while typing code in your IDE or editor.

100% would recommend everyone to try it out.

Re: Ask HN: I don't use AI. What exactly am I missing out on?

#32
I still use ~Google~ Kagi for some searches (people, addresses, items to buy), but ChatGPT is a very different tool for me, and is a regular part of my life now. Some examples.

- My kid's sports schedule is in a table on the school's site. Paste it into chatgpt, give it a few handling rules, and ask for the contents of an .ics file back. Now I have everything in my calendar.

- A job posting looked interesting but I couldn't figure out what the company actually did. Pasted their website copy into chatgpt, asked for an ELI5, and had a five minute conversation, after which I could convincingly answer the "why us?" interview question.

- I haven't done math problems in a long time, so when my kid needs help with something that's totally unfamiliar to me, I can paste a photo of his worksheet into chatgpt and ask for an explanation, and after a few minutes I know enough to help him.

Re: Ask HN: I don't use AI. What exactly am I missing out on?

#34
A couple things I've used LLMs for:

1. Learning new things - with interactive feedback. While there's a risk of hallucination, genereally for basic concepts on the undergraduate level, the proprietary models (eg. ChatGPT/GPT4) are generally pretty solid. For example, last year, I spent quite a bit of time asking ChatGPT about how the Federal Reserve works, and how it relates to interest rates. The benefit over plain old Google search is that I could ask much more precise questions than what Google searches would give me. You could check your understanding by confirming with the model whether a statement you make is correct. The feedback is invaluable.

2. Miscellaneous language tasks. Language models, unsurprisingly, excel at languages. It can do translation, rephrasing sentences or paragraphs (eg. make it more polite, casual, etc.), and generally converting sloppy writing into impeccable, grammatically correct, fluent prose. (And yes the larger models can even make anything rhyme if you ask them to.) More often though, when I need to express an idea but just couldn't think of the precise word, I can just ask ChatGPT for 10 words that have a similar meaning, and usually I'll get the word that I want.

3. As a coding assistant -- don't use ChatGPT for that, use a solution that integrates with your IDE/editor, and use it as coding autocomplete. It can help you write the (simple) functions you don't bother to write, and even though it usually fails at writing complicated things, sometimes the scaffolding reduces the amount of typing needed. And even if you don't trust the code it generates, you can use it to automatically generate comments and test cases.

I do agree it's probably not great if you think of it as a pocket search engine. LLMs have been called "a blurry JPEG of the web", you probably want to actually check info on the web rather than an inferior substitute.

Re: Ask HN: I don't use AI. What exactly am I missing out on?

#35
One of my main uses of ChatGPT or CoPilot is as a less-opinionated StackOverflow. Either way, I still have to verify the solution, but the LLM gives me a more direct answer.

I also use it to generate (hopefully) fictitious names when I need a name. "Elara Nightshade" is more interesting than "Test1 Test" or "Jane Doe3".

Re: Ask HN: I don't use AI. What exactly am I missing out on?

#38
post #18

Lots of great insights here. Personally, I use ChatGPT as a "sparring partner": I present an idea and talk with it to elaborate it further. Wether it's about programming, science, writing prompts or game design, among other examples. Another great use case is to use ChatGPT to speed up chores, like hard to remember syntax or functions that are easy but boring to think and write, like parsers. Or even thinking about h…

It's a rubber duck that never gets tired and is available all of the time.

https://en.wikipedia.org/wiki/Rubber_duck_debugging

Re: Ask HN: I don't use AI. What exactly am I missing out on?

#39
post #32

I still use ~Google~ Kagi for some searches (people, addresses, items to buy), but ChatGPT is a very different tool for me, and is a regular part of my life now. Some examples. - My kid's sports schedule is in a table on the school's site. Paste it into chatgpt, give it a few handling rules, and ask for the contents of an .ics file back. Now I have everything in my calendar. - A job posting looked interesting but I c…

Tried the ics trick ChatGPT tells me it cannot read or write files
Post reply on HN