Skip to main content

Good old days

This is another page from my ninth book called "Dear God". I was inspired to write this book after writing "I am voting for God" on my blog. It continues in that format. Short letters (or prayers) to God. It gives me an opportunity to write more and write to God at different moments in my life.
___________________

Dear God,

It is 154am. I just noticed that God spells good old days. We often hear about people reminiscing about the good old days. The funny thing is that years to come in the future now will become the good old days. What we have today will become the good old days. A reminder to appreciate the now and live in the now. There will come a time in the future when the page in this book will be a distant memory. This is page 86 of this book. Can you imagine someone reading this in 2086. Can you imagine this piece of writing surviving until 2086. That is 61 years into the future. I checked and it will be the 19th of Ramadan or there abouts on this day in 2086. May 3rd 2086 will be a Friday. May 3rd is the 123rd day of the year (non leap year).

So what could I put in a literary time capsule for someone reading this in 2086. One way to do this would be through a twitter search for God. Here are 10 tweets including the word God from May 3rd 2025 for anyone reading this in 2086. A snapshot of people talking to God today. Words spoken to God from 10 random persons on the internet on this day in 2025.

Woke up again today God is good (249am)

God bless our mothers 🙏 (302am)

God embedded and wired me not to give up (313am)

Indeed God has the final say (318am)

I only want what God wants for me... (330am)

Not good timing, God timing. (334am)

God is the realest G (340am)

God is in control (348am)

The God who created your heart can most definitely heal it. (356am)

Thank God for gift of life (404am)

I noticed that in all the timestamps, all digits from 0 to 9 were used except 7. I am going to wait until 437am to get a tweet from that time to make this complete. Is that some sort of OCD or should I say OGD (Obsessive God Disorder)? Which by chance has the letters of God.

May God open doors for us (437am)

Look at that. We started with one acronym for GOD (Good old days) and ended with another acronym for GOD (God opens doors). Would be cool if these were called Godonyms but that already has a different meaning. I want to end by saying that our now becomes the good old days and these are the doors to the future.

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...