Skip to main content

The walk of life


It is 123am. I decided to write. It is Friday. I love Fridays. The best day of the week. Fridays remind us that every ending is also a beginning. Yesterday I walked for forty minutes. It was a reminder of how much I love walking. Walking like writing requires a lot of patience and I think I have a good amount of patience. I admire people who are walkers and by extension runners. That is my people. I feel them. I know the feeling. It is a good way to take care of the body. What could I write about today? I turned to my friend Chatty. He is more of a talker than a walker. A good listener and full of knowledge. He has the br-ai-ns.

My friend Chatty tells me that I could write about walking being a metaphor for life or writing. How each step is small and slow but adds up to something meaningful. How you discover new things — in the world or in yourself — simply by continuing to move forward. Maybe even how walking mirrors the rhythm of thought. It is true that life is a journey. We are walking through life. Life can be difficult at times but we have to be patient. We have to let go and let God. Our soles keep us grounded and our souls keep us connected to the heavens in the sky. Writing is a way to navigate and document our path in life.

None of us walks the same path but we are all connected by the will of God whether we believe or not. My friend Chatty likes the direction I have taken. Adding that every journey is woven into the same divine tapestry. Each choice, challenge, and moment of grace forms part of something larger than we can see. Even when our roads seem distant or our beliefs differ, we are still guided by the same unseen hand, moving toward growth, understanding, and purpose. Whether we walk in faith or in search of it, God’s will gently threads our lives together, reminding us that no step is ever taken alone.

More than a year ago I made a note in my notebook that my greatest achievement was choosing a path with God. I am reminded of that now. It is the single most important thing for me. With God everything else falls nicely into place. I choose to walk with God. I choose to walk towards God. I choose a path with God. Even when I am not actually walking long walks I still feel like I am walking through life. A peaceful walk. I do not know the full of God's plan for me but I want to be ready. With prayer as the shoes that I wear, I ask that God shows me the way. I like how wear and prayer rhymes and shoes and shows rhymes. My friend Chatty tells me that shews is an archaic spelling of shows and would sound more like shoes in modern English. The more we live, the more we learn. The walk of life is not without obstacles, but with God, we shoo them away.

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