Skip to main content

Our biggest problems

It is Tuesday October the third, twenty twenty three. I am recovering from a headache that meant I had to take a dose of panadol. The heat is unbearable these days in Trinidad. The sky has gotten cloudy and I am praying for some rain. I am monitoring the situation because I have to pick up the clothes from the lines before the rain comes if it does come. Climate change is a problem. A big problem. So are poverty, hunger, disease, inequality, and war and conflict.

I started a chat with my friend Bard: The problem with the world's biggest problems is that the people with the most amount of power to make a difference are the least affected by these problems. This is a problem because it means that the people who are most responsible for the world's biggest problems are the least likely to be motivated to solve them. It also means that the people who are most affected by these problems have the least power to solve them.

Someone made a comment that people in Trinidad have money. In the budget it was mentioned that close to two hundred thousand persons work for the minimum wage. Two statements that are at odds with each other. It is as if the poor are invisible in this country. We are blinded by the race to the top of the barrel. The focus is on the big houses, the fancy cars, the cushy jobs, the expensive weddings and the posh graduations. There are invisible to us people who do the jobs that nobody wants to do, for the least amount of pay and with the most being expected of them.

The problem is that there is only one pie and if some want bigger pieces of the pie then some will have to settle for smaller pieces. No matter if everyone has the best education. We focus on materialistic markers of success that promote inequality. We have systems that focuses on the winners at the expense of losers. We need to focus on non-materialistic markers of success, such as happiness, health, and well-being. We need to create systems that support everyone, not just the winners.

We should work towards creating a world where everyone has enough to eat, a safe place to live, and the opportunity to reach their full potential. This is a world where we value cooperation and compassion over competition and greed. It is a world where we focus on what brings us together, rather than what divides us. We celebrate our differences and learn from each other. We create a society where everyone feels valued and respected. This is a world that is possible, but it will require a commitment from all of us to work together and create a more just and equitable society.

Share this blog post with the most powerful in society. I would love to read their thoughts in the comments below. I would love to ignite a spark in their conscience. We need to continue this discussion about the world's biggest problems and how we can solve them and move forward. We need to reach the people who have the power to make the biggest difference. For too long, the everyday people have shouldered the heaviest burdens.

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