Skip to main content

Where my feet take me

This is a chapter from my latest book called Breezes of Tobago.

I got up early. I brush my teeth. I had a good bowel movement and I emptied my bladder. There are no bathroom stops along the way and the plan is to walk from Crown Point to Scarborough. I put on my favourite shorts and jersey, comfortable socks and my shoes that have already covered some distance. My smartphone is fully charged and I plan to take photos along the way. Walking is a great form of exercise and great for mental health and well being. Walking has been a good friend to me over the years. I do not run because my body is not strong enough for running. Walking is a great way to explore a country. The smells, sights and sounds. If I am lucky I will pass by a mango stall or other fruit. Maybe even a fruit tree or two that is available to the public. Sometimes I even break off pieces of plants to carry home for my mom to plant.

My friend Chatty tells me that walking is an honest, gentle partnership with the body that values presence over speed. It invites awareness of the world—the smells, sounds, people, and small details—while supporting both physical and mental well-being. Free from competition and pressure, walking meets you where you are, making it a sustainable, dignified way to explore places, care for yourself, and move through life with curiosity and respect.

I like that Bon Accord has a stretch of pavement. I like the beautiful houses and nice resorts as well. The route is also a busy taxi route so if walking becomes too much for me, I could take a taxi or maybe even it starts to rain. There are periods of empty land with grazing cattle. The Tobago Plantation landscape is well manicured and the lake adds to the beauty although home to caimans. The egrets and blue herons prance around looking for a meal. I pass the Lowlands mall where there is a food court and shopping and even a cinema. Closer to Scarborough the road begins to climb.

It took me about two and half hours to arrive at the capital. The breezes help to dry the sweat from my body and clothes and keep me cool. I can see the fast ferry and a big cruise liner docked. The Esplanade is a good spot to rest off and there are public washrooms there. If you are lucky you may get to see someone playing the steelpan. I treated myself to some homemade Soursop ice cream. When I am in Scarborough and it is closer to lunch time I can get food at Renas roti or Jats or even Subway. I have even had doubles on the evenings. Further up the road is the library that I have never been inside and then the botanical gardens. From Scarborough you can even walk to Fort George for a birds eye view. Guided by the breeze and trusting my feet, this was the end of my walk and the quiet victory of having gone the distance echoed through my soul.

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