Skip to main content

Let the flowers bloom again

This will be my submission to the Cropper Foundation's call for submissions for their anthology on the topic of climate change and climate justice.

Writing for our lives and climate justice. The first thing that I noticed is that the first letters of the words of the phrase "writing for our lives" can form the word wolf and then also fowl. Which had me thinking, "Who are the wolf and fowl in the climate justice story?" I asked my friend Gemini but he had no direct answer. I had to ask some related questions and “eat or be eaten” came to my mind. The wolf and the fowl are both valuable to nature and the balance of nature. Climate change comes about when we destroy the balance of nature. How can I make sense of all of this? Are the ones most affected by climate change the fowls? And the ones most contributing to climate change, the wolves? Are we the fowls in Trinidad and the Caribbean? Is the developed world the wolf? This also reminds me of something I saw on facebook just today, "Until the lion learns to write, every story will glorify the hunter." I could easily change this to fit my essay by saying, "Until the fowl learns to write, every story will glorify the wolf." We in the small island developing states must write. Write to tell our story. Write to be part of the solution. Write to make our voices be heard. Write to bring balance to what is being said. Write because our lives depend on this.

My friend Gemini tells me that climate change has a disproportionate impact on different countries and communities. Climate justice focuses on addressing these unequal impacts and creating a fair and sustainable future for everyone. What does a nooby book writer (as I like to call myself these days) living in a semi rural village in central Trinidad know about climate change and climate justice? The dry season has been drier than usual from what I could tell. The sun feels hotter than usual. Water schedules are an inconvenience. We had a shark attack in Tobago for the first time which some are blaming on global warming. The weather affects the farmers and the prices of produce. The coastlines are being eroded and sea levels are rising. Climate change affects the fish stock and habitat and the livelihood of fisher folk. Almost everyone uses air conditioning now which furthers the problem. Less outdoor activities means less active and healthy lifestyles. That is what comes to my mind but I feel like I do know enough but I feel empowered by this opportunity to write. It encourages me to pay attention and learn more and be part of the solution.

Justice is about righting our wrongs. For us and this anthology, justice is about writing our wrongs. It is about sharing how we feel, making our voices heard and being part of the solution. How do I feel? I feel like there are countries and entities that can afford to pay more for the action to curb climate change. They are large in number and have deep pockets. They are among the powerful decision makers. We need to help them see where their action also benefits them. Continuing my analogy from the beginning of this essay, if there are no fowls left to eat then the wolf will starve. Balance is key to addressing the climate change problems. Balance just like the scales of justice. The actions of some are tantamount to the wolf eating too much. Let there be justice. We want no fowl play. A feast today may mean a famine tomorrow. Quite literally also. At first I saw the words wolf and fowl in the phrase, "writing for our lives". Now I am seeing the word flow. Creating a balance creates a beautiful flow. The wolf can howl at the moon while the fowl can crow at the rising sun. I hope the words of this island boy flows across the oceans and reaches the shores of change. I now imagine that flow becomes flowers. Instead of the doom and gloom of climate change let us bring about the boom and bloom of climate justice.

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