Most likely a request now goes to the "new infrastructure", where only new messages are replicated. Old data is still stored on the old infrastructure, which some old frontends are still using. After the migration is over, the old chat might no longer be accessible.
So there's hope for remedy to their tech incompetence, which is also their tech incompetence…
It appears some users may be able to download all their messages, including ones prior to 2023, by making a data request at https://www.reddit.com/settings/data-request(opens in a new tab) while logged into their Reddit account. [...]
In addition, using the old version of Reddit which is still accessible at https://old.reddit.com(opens in a new tab), users may still be able to access inbox messages prior to 2023.
However, some Redditors have reported that even the data request option did not retrieve their old chats or some messages were missing.
Salary and working hours have little to do with productivity though. It's all about the workers' negotiation power. We have many technology breakthroughs in computers that have nothing to do with AI and see where we are now.
It's a "terminal multiplexer", i.e. you can start multiple terminals in a single terminal.
You might ask, why not open a new terminal window or tab? Well, you can only do that in a desktop environment and that's not always available. Even if you can, you might want the terminals to be side by side in a single screen, which might not be easy to do with window tiling.
The real power of tmux, though, is that it manages the session you created. To quote from the manual:
tmux may be detached from a screen and continue running in the background, then later reattached.
So, one use case would be saving your current terminal setup. Instead of exiting the terminal and navigating to the project and setting up the environment again next time, you can simply detach and re-attach.
When connecting to a remote server, this is especially useful:
Each session is persistent and will survive accidental disconnection (such as ssh(1) connection timeout) or intentional detaching
Suppose you want to execute a long running command on a remote server. If you just put it to foreground, when you exit the ssh session, the job is also killed. If you put it to the background, its output can't be easily observed.
With tmux, you can simply run it in the foreground like normal and detach. When you reattach later, the job is running and you get all the output easily, as if you have been in that session all along.
As they say in Germany, Duckon.