Skip to main content

Running in the rain

It is 3am and I have decided to write. I am having 3am thoughts. I noticed that both bible and quran have 2 vowels and 3 consonants. I also notice the word Quran has the word ran in it which reminds me of "They say to go where you are valued so I ran to God." I ran sounds like the country Iran which is really pronounced Eran. The letters of Eran form the word near as in "God is near." Thank God that God is near which means that I do not have to run far. Which leads me to this question, "Does God run?"

My friend Chatty tells me that in many spiritual traditions, God is described as "running" not with physical steps but with mercy and nearness: in the Bible, the father in the prodigal son story runs to meet his returning child, and in a Hadith Qudsi God says, “If My servant comes to Me walking, I go to him running.” These images mean that the moment a person turns toward God, even slightly, God rushes toward them with greater speed, closing the distance. So in the deepest sense, yes—God "runs" not because He is far, but because He is eager to meet you where you are.

The word ran is rain if I add the letter i. Which leads me to this question, "Does the rain run?" My friend Chatty tells me that in a poetic sense, rain "runs" the way grace does: it falls quickly, moves toward low places, gathers into streams, and rushes across the earth bringing renewal. Just as traditions describe God "running" toward those who seek Him, rain moves with its own kind of urgency and generosity, arriving without being summoned and giving life wherever it goes.

Now I am thinking about God's rain and God's reign. My friend Chatty says that that is a lovely pairing, because God's rain and God's reign have always been linked in spiritual imagination: rain represents nourishment, mercy, and the quiet ways life is sustained, while reign represents guidance, order, and the sovereignty that holds everything together. One is the gentle gift that falls from above, and the other is the authority that keeps the world in balance — and together they suggest a God who both refreshes and rules, giving what is needed while also shaping the path things take.

Which leads to my last thought for this blog post, the joy of running in the rain, and this motivational video I found as a result - https://youtu.be/xf4eJgwrUyA

It is as if God is trying to tell me this morning - Do not be afraid of running in the rain.

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