‘time’ and‘travel’ may not be defining characteristics.
for definition - Mental Time Travel - Neither Time nor Travel may be defining characteristics of Mental Time Travel - Mental rendering of experience may be the defining characteristic
‘time’ and‘travel’ may not be defining characteristics.
for definition - Mental Time Travel - Neither Time nor Travel may be defining characteristics of Mental Time Travel - Mental rendering of experience may be the defining characteristic
MTT into the past and future are instantiations of one ‘simulation system
for - claim - Mental Time Travel into the past and future are instantiations of one simulation system
I suggest that underpinning MTT as well as these other ‘non-MTT’forms of cognition is simulation – a mental rendering of experience.
for adjacency - simulation - Mental Time Travel
This ability isknown in contemporary psychology and philosophy as mental time travel
for - definition - Mental Time Travel - ability to look at the past and the future
Donna Rose Addis
for - researcher - neuroscience - memory - perception - imagination - to - Mental Time Travel? - Donna Rose Addis - https://hyp.is/wqV4gKdkEfCRZGPrIOjeOA/utoronto.scholaris.ca/server/api/core/bitstreams/3232f1fb-ed19-4614-9dd5-648c4d443629/content
only the simulation is consciously experienced
for - like - Donald Hoffman's Interface Theory of Perception - ITP - to - Mental Time Travel (MTT) - https://hyp.is/wqV4gKdkEfCRZGPrIOjeOA/utoronto.scholaris.ca/server/api/core/bitstreams/3232f1fb-ed19-4614-9dd5-648c4d443629/content
for - paper - title - Mental Time Travel? A Neurocognitive Model of Event Simulation - author - Donna Rose Addis - adjacency - memory - imagination - the same - from - paper - https://hyp.is/0Fb6NqdjEfCyTTddI20_aQ/www.dovepress.com/memory-sleep-dreams-and-consciousness-a-perspective-based-on-the-memor-peer-reviewed-fulltext-article-NSS
summary - memory and imagination are proposed as fundamentally the same process. - It is the ‘mental’ rendering of experience that is the most fundamental function of this simulation system enabling humans to - re-experience the past, - pre-experience the future, and - comprehend the complexities of the present.
it is the ‘mental’ rendering of experience is the most fundamental function of thissimulation system enabling humans to re-experience the past, pre-experience the future, and alsocomprehend the complexities of the present.
for - key insight - Mental Time Travel (MTT)
Mental time travel (MTT
for - definition - Mental Time Travel (MTT) - projecting the self into the past and the future
Zhang Qian's journey provided the Chinese with valuable information about the lands and peoples of Central Asia, and his report to Emperor Wudi helped to establish trade networks between China and Central Asia.
diplomatic mission to the Yuezhi nomads in modern-day Uzbekistan, led by an official named Zhang Qian. Zhang Qian's journey was a significant one, as it marked the beginning of Chinese travel to Central Asia.
Chinese princesses were sent to marry the Xiongnu leaders as part of the treaty agreement.
Peace and Friendship" accords, established a framework for relations between the Chinese and the Xiongnu that lasted for about 150 years.
he first emperor of the Han dynasty, Liu Bang, was a former official who had once been in charge of policing a section of the imperial highway system.
ACTUAL HAN
imperial courier network
imperial tribute system motivated travel for other purposes as the infrastructure was there
The construction of a network of five great tree-lined 'fast roads' that converged on his capital at Xianyang linked the city to the eastern, southern, and northern regions of the empire.
The Chinese took an important lead in promoting travel, with formal state policy involved in promoting travel
Tijdreizen met ObsidianMAMartijn AslanderAdminTeam / Ambassadeur5 months agoco-founder Digitale Fitheid
Adam Kucharski. (2022, January 18). Below analysis was two years ago (https://bbc.co.uk/news/health-51148303). As well as providing an early warning about the COVID threat, it’s a good illustration of what is often an under-appreciated point: If we want to make sense of epidemic data and dynamics in real-time, we need models… 1/ https://t.co/ZdpzOq3Bzp [Tweet]. @AdamJKucharski. https://twitter.com/AdamJKucharski/status/1483368504392880128
you must explore the counter-intuitive possibilities time travel permits. You will learn to choreograph your actions across multiple timelines, and to construct seemingly impossible solutions, such as paradoxical time loops, where the future depends on the past and the past depends on the future.
"It's intriguing that you've got general relativity predicting these paradoxes, but then you consider them in quantum mechanical terms and the paradoxes go away," says University of Queensland physicist Tim Ralph. "It makes you wonder whether this is important in terms of formulating a theory that unifies general relativity with quantum mechanics."
Time Travelling Without Worries But here's the best part - knowing the true nature of history, we can combo it with another cool feature of Vim - persistent undo - to be able to travel in time there and back without fear of losing anything! In other words, if you do: mkdir -p ~/.vim/undodir and then add: set undofile set undodir=~/.vim/undodir to your ~/.vimrc, you get a file-backed infinite undo. And even if you undo like a madman and then edit something, you will not lose your way back to where you’ve been. Which is pretty much a developer’s (or anyone’s, really) text-editing nirvana. Enhance you calm and enjoy a bit saner coding.
Save Work On Focus Lost This feature works best in combo with infinite undo. The idea here is that everytime you leave your Vim window, all your open files are automatically saved. I find this to be extremely helpful, for example when I’m working on a laptop and continuously run unit tests in terminal. My laptop is 13'' so I prefer to run Vim full screen and with this feature, I don’t have to explicitly save my source code file; I just cmd+tab to the terminal, Vim saves the file for me and my unit tests watcher re-runs the suite. If you save unwanted changes by accident you can easily remedy that with undo. To turn autosaving on, add: :au FocusLost * silent! wa to your .vimrc. The silent! flag prevents Vim from complaining when you have open unititled buffers (see this article for details).