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/
ChatGPT conversations still lack timestamps after years of requests
151–160 of 171 posts
Re: ChatGPT conversations still lack timestamps after years of requests
#152Earlier 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.
Re: ChatGPT conversations still lack timestamps after years of requests
#153ChatGPT 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.
Re: ChatGPT conversations still lack timestamps after years of requests
#154ChatGPT 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.
Hogwash.
Re: ChatGPT conversations still lack timestamps after years of requests
#155Earlier 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.
or UX doesn’t exist?
Re: ChatGPT conversations still lack timestamps after years of requests
#156Earlier 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 ?
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
#157Earlier 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?
Re: ChatGPT conversations still lack timestamps after years of requests
#158Earlier 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.
You have to drag-over for any detail.
Re: ChatGPT conversations still lack timestamps after years of requests
#159If 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…
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!