Skip to main content

A labour of love

I have been blogging for many years although it seems like only yesterday that I started. I am an island boy. We might be from small islands but we have big hearts. There have only been a handful of times that I have been compensated for my blogging. This is my contribution to creating a better Trinidad and Tobago and a better world. There are not many tech bloggers or tech youtubers locally. I am inclined to think that people think that there is no money to be made in blogging and therefore a waste of time and effort.

There are many things that money cannot buy. The satisfaction and joy I get from blogging is priceless. It has been a labour of love for me. My passion for technology and my desire to use my talents in good ways keeps me going. It is a purpose-driven pursuit that exemplifies selflessness. Twenty years is a long time to be doing something. I continued to blog even when it was not trendy anymore. I smile whenever I come across other bloggers. We are kindred spirits.

It is easy for anyone to get started as a blogger. I encourage anyone to get started and see if you like being a blogger. When I started I saw a need for local voices. Ordinary voices that were different from mainstream media. There are challenges that I go through but you would not know. I do not like complaining and I face each day with a positive attitude and faith in God.

Blogging is a lot of work, but it is a labor of love. I love sharing my thoughts and ideas about technology and everything else with others. I am grateful for the opportunity to connect with others in Trinidad and Tobago and around the world. Steve Jobs has said, "The only reason to do great work is because you love what you do. If you haven't found it yet, keep looking. Don't settle."

I am a big fan of the band UB40. They have several albums named Labour of Love. Robin Campbell, UB40 guitarist, said, "We called it Labour of Love because it was a real labour of love to make. We spent a lot of time on it, and we wanted to make sure that it was perfect." Like UB40's music, my blogging has stood the test of time. I have been blogging for about twenty years, and I still love sharing my knowledge and passion for technology with my readers. I am grateful for the opportunity to connect with you through my blog, and I am excited to see what the future holds. Your love and appreciation is music to my ears. I invite you to be a part of my labour of love.

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

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: 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...