Skip to main content

The river of time

This is a chapter from my eleventh book called Quotation Marks Sparks.

__________

"No man ever steps in the same river twice, for it's not the same river and he's not the same man." - Heraclitus
__________

I went looking for a quote. I decided to look for "obscure quotes" as I was getting tired of the often repeated and well known quotes. I ended up on a thread on reddit and one user added this quote. Even though it is not obscure it was just the type of quote I was wanting to find. It reminds me that the only constant in life is change. Also, enjoy the moments because we never get them again. Also, experience changes us for better or for worse. Hopefully for the better. We have not found a way to time travel yet. Life has no undo button. There is both melancholy and empowerment in these realisations. We cannot go back, but we can grow, learn, and be more intentional as we move forward. If only river was spelt rever then we would be able to reverse through time. That would be clever if proven to be possible after all.

I like how river and timer are alike in rhyme and number of letters and the letters they share. A river is a symbol of time. This quote is proving to be timeless wisdom. Oh, the irony: the river as time, delivering timeless truth. The timer of the river that makes us wiser. This reminds me of a poem I wrote in 2022 called "A river of clocks" which I now want to retitle as "The river of time". It goes like this : Drop by drop, time goes by. How many seconds can we buy? Where does this river go? We just go with the flow. Time has made my boat holey. This is what I have solely. In that poem you are meant to also see holy and souly. The soul is immaterial just like time. I am the embodiment of my soul and the river is an embodiment of time. And so we drift, soul within body, body within time—carried by a river we cannot reverse, only ride.

It is 448am now. The rain is pouring. This reminds me of two lines I wrote in a song to God : Words flow like a river. Meaning that clouds deliver. This has me thinking. The source of the river is the rain and the source of the rain is the river. It is a cycle. What is the source of time? Is time a cycle? Is it possible that our entire existence can or will be repeated exactly? My friend Gemini tells me that some ancient philosophies and certain interpretations of cosmology propose that time is cyclical. In this view, the universe goes through repeated cycles of creation, destruction, and rebirth. If this were true, our existence might indeed be repeated, though perhaps with variations.

Which begs the question of possibility, are we flowing forward, or simply returning home again? In this scenario, our past becomes our future and our future becomes our past. Add this to the possibility of time travel to the future through time dilation and we have time travel also to the past. What a way to un(ravel) this quote with time t(ravel). I learnt that ravel is a contronym, a word that has two meanings that are the opposite of each other. Confusingly, ravel can mean both "tangle" and "untangle". It is 558am now and I have gone off course and the river of time has left me without a proper conclusion. Maybe that is it. We do not know where the river of time will take us and the river of time is endless.

Comments

Popular posts from this blog

Hobby project - Store and view exchange rates

The next step in my project was to test out being able store and display the rates in a database. I decided to use nodejs and supabase for this. Everything worked beautifully. Only hickup was the following error due to my package.json not being correct. SyntaxError: Cannot use import statement outside a module Added this to package.json   "type": "module" This works beautifully. Right now I am just testing fragments of what could be part of a bigger system to see what is possible and what works and how easy to code on a mobile. There is no fully functioning integrated end to end system just yet. This is also what I tested. A serverless append-only database using GitHub + Actions + Pages. That’s basically a lightweight backend system. This was the ChatGPT prompt I used. Guide me through each step. This is what I want. A manually run github actions that adds to docs/data.json with the current date and time. docs/index.html displays all the entries in data.json. Make s...

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: S...

Running php and apache on termux

This was my experience getting php and apache to run on termux apt update && apt upgrade -y apt install php-apache I was following an old blog post that used php 7 and got these errors Can't locate API module structure `php7_module' in file /data/data/com.termux/files/usr/libexec/apache2/libphp.so: undefined symbol: php7_module Cannot load /data/data/com.termux/files/usr/libexec/apache2/libphp7.so Corrected in apache config file vim $PREFIX/etc/apache2/httpd.conf LoadModule php_module /data/data/com.termux/files/usr/libexec/apache2/libphp.so Apache is running a threaded MPM, but your PHP Module is not compiled to be threadsafe.  You need to recompile PHP. Comment out mpm_worker and use mpm_prefork #LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so This still does not work as apache (httpd) was failing silently. According to Chatty LoadModule php_module ...libphp.so often fails in Termux becau...