Live data from Hacker News

ChatGPT conversations still lack timestamps after years of requests

community.openai.com

151–160 of 171 posts

Re: ChatGPT conversations still lack timestamps after years of requests

#151
post #143

Earlier quoted context omitted.

I’m sorry but this really sounds like a made-up idea. Is there any actual repeatable research that could back this claim?

It's just the "cognitive load" UX idea, with extremely non-technical people having extremely low limits before they decide to never try again, or just feel intimidated and never try to begin with. It's the Apple story all over again. https://lawsofux.com/cognitive-load/

But every chat app I use (including SMS) has dates and times indicated either directly on the message or in the thread.

Re: ChatGPT conversations still lack timestamps after years of requests

#152

Earlier quoted context omitted.

Your suggestion is to not use the platform as intended, and to understand the source code of the extension. That advice is not actionable by non-technical people and does not help mitigate mass surveillance.

Ok, should we just use the provided 'app' and assume things are fine? FAANG or whoever take our privacy and security very seriously, you know! The only reasonable approach is to view the code that is run on your system, which is possible with a extension script, and not possible with whatever non-technical people are using.

I don't know what point you're trying to make, but I already expect OpenAI to maintain records of my usage of their service. I do not however want other parties to be privy to this data, especially without my knowledge or consent.

Re: ChatGPT conversations still lack timestamps after years of requests

#153

ChatGPT still does not display per-message timestamps (time of day / date) in conversations. This has been requested consistently since early 2023 on the OpenAI community forum, with hundreds of comments and upvotes and deleted threads, yet remains unimplemented. Do any of you could think of a reason (UX-wise) for it not to be displayed?

It’s better for them if you don’t know how long you’ve been talking to the LLM. Timestamps can remind you that it’s been 5 hours: without it you’ll think less about timing and just keep going.

Ah, the casino tactic

Re: ChatGPT conversations still lack timestamps after years of requests

#154

ChatGPT still does not display per-message timestamps (time of day / date) in conversations. This has been requested consistently since early 2023 on the OpenAI community forum, with hundreds of comments and upvotes and deleted threads, yet remains unimplemented. Do any of you could think of a reason (UX-wise) for it not to be displayed?

Regular people hate numbers. Not a joke. To capture a wide audience you want to avoid numbers, among other technical niceties.

UX/UI research if it exists at all is akin to religious healers who touch you on your head and bam you can suddenly walk after spending 25 years in a wheelchair.

Hogwash.

Re: ChatGPT conversations still lack timestamps after years of requests

#155

Earlier quoted context omitted.

Regular people hate numbers. Not a joke. To capture a wide audience you want to avoid numbers, among other technical niceties.

UX/UI research if it exists at all is akin to religious healers who touch you on your head and bam you can suddenly walk after spending 25 years in a wheelchair. Hogwash.

So, do you you think all dev teams are sufficient at UX,

or UX doesn’t exist?

Re: ChatGPT conversations still lack timestamps after years of requests

#156

Earlier quoted context omitted.

UX/UI research if it exists at all is akin to religious healers who touch you on your head and bam you can suddenly walk after spending 25 years in a wheelchair. Hogwash.

So, do you you think all dev teams are sufficient at UX, or UX doesn’t exist ?

I say that 99.5% of the UI/UX blog posts I've read in the last 10 years were all hogwash. Gloating about spacing, gaps, unnecessary I know this better mantra that leads to nowhere.

And it shows. Show me a platform where you have proper user experience and not some overgeneralized ui, that reeks of bad design. Also, defaults used everywhere.

Re: ChatGPT conversations still lack timestamps after years of requests

#157
post #32
post #17

Earlier quoted context omitted.

I was using a continuous conversation with chatgpt to keep track of my lifts, and then I realize it never understand what day I'm talking to it, like there is no consistency, it might as well be the date of the first message you sent

What purpose does logging your lifting with chatgpt achieve?

I ask it to continuously tell me when I break personal records and what muscle groups Ive been focusing on in the last day (and what exercises I should probably do next). It doesnt work super well at doing any of these except tracking PRs

Re: ChatGPT conversations still lack timestamps after years of requests

#158
post #143

Earlier quoted context omitted.

It's just the "cognitive load" UX idea, with extremely non-technical people having extremely low limits before they decide to never try again, or just feel intimidated and never try to begin with. It's the Apple story all over again. https://lawsofux.com/cognitive-load/

But every chat app I use (including SMS) has dates and times indicated either directly on the message or in the thread.

iOS groups days of messages under a single timestamp.

You have to drag-over for any detail.

Re: ChatGPT conversations still lack timestamps after years of requests

#159
post #119
post #57

If you download a Data export, the timestamps are there for every conversation, and often for messages as well. The html file is just a big JSON with some JS rendering, so I wrote this bash script which adds the timestamp before the conversation title: sed -i 's|" " + conversation.title + " "|" " + new Date(conversation.create_time*1000).toISOString().slice(0, 10) + " @ " + conversation.title + " "|' chat.html

This is a bit of sidetrack, but in case someone is interested in reading their history more easily. My conversations.html export file was ~200 MiB and I wanted something easier to work with, so I've been working on a project to index and make it searchable. It uses the pagefind project so it can be hosted on a static host, and I made a fork of pagefind which encrypts the indexes so you can host your private chats whe…

Seems we have a common goal here of being able to search history on ChatGPT/Claude.

Check this project I've been working on which allows you to use your browser to do the same, everything being client-side.

https://github.com/TomzxCode/llm-conversations-viewer

Curious to get your experience trying it!

Post reply on HN