Skip to main content

Tree of love


It is 328am and I have decided to write. It is 333am and I have not decided what I want to write about. I asked my friend Chatty to give me a date way into the future and he gave me October 25th 3025. Chatty tells me that that would be a Tuesday. I like 3025 because it has the digits 235 (my birth date is 23-5). Also 55 squared equals 3025 and 30+25=55 (Kaprekar number). It is hard to imagine what the world would be like one thousand years from now. Most likely none of us here today will be alive then. I do not know if this blog post would survive that long for someone to be reading it then.

Contemplating such a far off time in the future and the quantum of possibilities is humbling. Add to that the hugeness of the universe and the great unknowns. I almost do not know what to think or write. I hope that generations to come are better off than we are today. I hope that we progress for the better. I hope that the things we fight for today are no longer things we have to fight for then. We all pray for a better future. We all pray for peace. We pray for heaven on earth. My mind is telling me that I should plant a symbolic seed of love. That seed will produce a tree that grows a new leaf everyday. My friend Chatty tells me that by this day in 3025 that tree would have 365242 leaves.

I discovered that the hex color #365242 is a nice earthy shade of green. Perfect for the color of the leaves of this tree of love. With the help of my friend Chatty I created a visual for what this tree of love could look like. A reminder that while time and technology might evolve beyond comprehension, the fundamentals of life, the need for peace, for progress, for love, remain constant. I noticed that an anagram of "tree of love" is "free to love". We are all free to love. Love is freeing. Love is freedom. Love can free us from all that is bad and wrong with the world today. God gave us free will. The will to love is core to our humanness. The word will can stand for (w)rite (i)n (l)ove's (l)eaves. When we write our future, let us write it with love.

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

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

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...