Skip to main content

Paths of peace

It is 528am and I am writing. The forecast says we will have possible bad rainy weather today. I do not mind the rainy part of it. The bad part I do not like. I went back to sleep and woke up. The rain is falling small small. It is 830am. It is 940am. It is wet outside. I still have not decided what to write about. Sometimes I think about starting back my tech blogging. Maybe just one or two blog posts. What is happening in the tech world? Google tells me there is a global shortage of memory chips. I used to be excited about tech. Times have changed. I have changed. The world has changed. Change is the only constant. I just noticed that "el google" is a palindrome. I also had a thought. Dragons are mystical. Imagine if dragons were real?

It is 318am. The morning is quiet. It is 311am the next morning. I still have not decided what to write. I love when my mind is quiet. I love when I am not overthinking. I love when I can gently guide my thoughts. I love when nothing bothers me. I love my happy go lucky self. I think God loves that for me also. I opened the Quran app and went looking and found this verse (surah 5 verse 16*) - "God guides those who seek His pleasure to paths of peace, [always]* bringing them from darkness to light and guiding them to a straight path." What is a path of peace? Why is there multiple paths of peace but one singular straight path?

My friend Chatty tells me that "paths of peace" in the verse refers to the many different ways God brings a person toward calm, clarity, and inner serenity — because peace appears in many forms and everyone’s journey begins in a different place. But "the straight path" is singular because all those small moments of peace ultimately guide a person toward one unified direction: a life aligned with truth, goodness, and closeness to God. In other words, there are many gentle doorways into peace, but they all lead to the same deeper, clear path of purpose.

This reminds me of something I watched last night before I fell asleep. Ramanujan found a way to describe the sum of all positive integers as -1/12. It is convergent when we would normally see it as divergent. There are infinitely many positive integers. I cannot help but think that there is some link to what I have written. I am thinking that there are infinitely many paths to peace but one (1) straight path (12). There are 12 letters in the phrase "straight path". All the "paths of peace" (12 letters also) converge to one straight path to God.

*verse 16+5 = 21 which is the mirror of 12

*The translation I found is 6 letters short of 112 letters. I like the use of always to make up the 6 letters because it is also all ways for all paths.

*1/12 is ¼ of ⅓ (1+1+2=4 and 1+2=3)

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