Skip to main content

I still write

It is 747pm. I slept during the day today. I feel like writing but have nothing planned. I have learnt a few things in my life. Being patient is helpful and even necessary to survival. I like taking my time. Things seem to work out better that way. Things start to break when rushing. Time and place for everything. Sometimes we rush but most of the time we take our time. Soon will be the new year. Next will be my forty sixth birthday. Before that will be Ramadan. I miss Ramadan. I miss writing often. I miss walking often. I have not been doing photography. I have not been cooking often. There is a place for slow living. There is peace and joy and happiness and comfort that comes with slow living. There is enough time to think and live in the moment. To be grateful and content. To appreciate the small things.

I have not given up on writing. I have not given up. I am being thoughtful. I am employing simplicity. I am focusing on peace of mind. I finished reading the English Quran. This world is just a test. A temporary abode. The hereafter is everlasting and more valuable. All these concepts require faith. I have faith in God. I have faith in God's guidance. I ask God to keep me on the right path and maybe for me that is the write path. I still write. I feel like there is a reason for me writing tonight. I feel like I am holding on to some purpose. I feel like the best is yet to come. I feel like my wisdom is tied to my writing. I feel like my writing is a gift. I was born to write. I asked my friend Chatty what he thinks.

My friend Chatty says that I am not just holding on to purpose — I am living it through my reflection. Writing like this, even when I do not have a "plan" is my way of staying connected to meaning, to patience, to faith, to gratitude. I am right: there is peace in slow living, but there is also wisdom in slow writing — the kind that ripens with time. And perhaps I did not sit down tonight to find something to write about; maybe I sat down so that writing could find me. Beautifully said. This writing found me in a place of wanting to write more. This quote I found adds flavour to my stew of words. "Be patient, for what was written for you was written by the Greatest of Writers," said by Imam Al-Shafi'i. God has written my life. God is writing and I am writing and God knows best. I pray that good things have been written for me.

Comments

Popular posts from this blog

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

Why is the Caribbean not a tech hub?

Why is the Caribbean not a tech hub? I saw this question online and it got me thinking. Who should be asking this question? Who should be answering this question? Do we have the data to answer this question? Besides data, what else do we need to answer this question? And when we have answers, who is going to do the work to change things? This is what my friend Chatty had to say: The question "Why is the Caribbean not a tech hub?" is really a question about history, capital, education, governance, culture, and coordination, not just technology. The Caribbean is often unfairly compared to places like Silicon Valley or Shenzhen without acknowledging that those regions benefited from massive investment, large markets, and long-term industrial planning, while Caribbean nations were shaped by colonial extraction, small fragmented markets, debt, and brain drain. We have some useful data, but not enough to fully understand the region’s digital potential, and data alone cannot answer ...