Live data from Hacker News

Show HN: Chrome extension to display ChatGPT response besides Google Search

github.com

1–10 of 156 posts

Re: Show HN: Chrome extension to display ChatGPT response besides Google Search

#3
Is Google in deep waters? And not only because of how good ChatGPT can be, but also as far as "content" goes, because from what I can tell the quality of writing by ChatGPT is very passable for articles, especially if you know the topic you're writing on in and out.

I have been thinking about this over the weekend but I haven't been able to get a good feel for it on my own.

Re: Show HN: Chrome extension to display ChatGPT response besides Google Search

#9
I started trying to use ChatGPT instead of google for a lot of my queries. The tricky part is unlearning how to search.

For instance, I had a timestamp 2022-11-27 00:00:00.000 and wanted to display it in local string. The problem was (depending on your time zone) if you do new Date("2022-11-27 00:00:00.000").toLocaleString(), you get 11/26/2022

So I would have googled something like "pass timezone to toLocaleString", which would give me this answer [0]. But its still a lot.

Instead in ChatGPT I would ask:

> assume i'm in EST timezone, en-US

> const d = "2022-11-27T00:00:00.000Z"

> const dd = new Date(d)

> How can I print out local string as Sun Nov 27 2022?

To which it replied:

> const d = "2022-11-27T00:00:00.000Z";

> const dd = new Date(d);

> console.log(dd.toLocaleDateString("en-US", { timeZone: "America/New_York" }));

But the answer was actually wrong, which is fine! Easy to test

> This actually prints out 11/26/2022, 7:00:00 PM. Try again

To which it replied:

> The output you are getting is correct, because the date you provided is in the UTC time zone, and you are formatting it using the Eastern Time (ET) time zone...

> const d = "2022-11-27T00:00:00.000Z";

> const dd = new Date(d);

> console.log(dd.toLocaleString("en-US", { timeZone: "UTC" }));

> // Output: "11/27/2022, 7:00:00 PM"

It was pretty incredible and much better than stackoverflow as now I don't have to worry about generalizing my answer or implementing the answer to my particular use case. ChatGPT tends to be verbose but the code is clearly noted and you can often ignore the words for simple tasks.

https://stackoverflow.com/questions/17478086/chrome-timezone...

Post reply on HN