Skip to main content

Mangoes

This is a chapter from my fifth book called Freedom

I am taking us on an epicurious journey. A sweet escape. A juicy reprieve. A mangolicious passage that is ripe for the picking. Who does not like mango? I do not know of a single person who does not like mango. If you do not like mango, are you even human? Mango is the most likable fruit in the world. Often referred to as the king of fruits. There are mango festivals that celebrate this great fellow. Right now in Trinidad I am seeing posts on facebook for the upcoming Mango Melee festival. I was curious and confused about the word melee. The dictionary has the meaning to be "a confused fight or scuffle" and "a confused crowd of people". The festival website says that the word "melee" has many meanings, the definition for our movement is a "shindig: a lively party, especially one celebrating something." Our use in this way locally might be a derivation it seems. I do not know if this is an exaggeration or not but I saw a post on facebook highlighting a man in India known as the "Mango Man of India" who is growing 1600 varieties of mango. His name is Haji Kalimullah Khan. I could not find a word for the study of mangoes or someone who studies mangoes. I nominate the use of mangology and mangologist. A person who studies fruits is called a pomologist.

I read that the Portuguese brought the mango to the West Indies and Trinidad. Mangoes originated in India over 5,000 years ago in the Hindo-Berma region. The word mango has roots in the Tamil language. I also read that the indentured laborers brought mangoes to Trinidad also. The hindustani word for mango is aam. My mom does not remember using the word aam for mango growing up. If you ever had to appear on Pick-a-Pan for a revived Mastana Bahar you would now be in the know. I can think of all the ways we prepare and eat this fruit in Trinidad. Curry mango in roti, mango chutney and pholorie, kuchela and pelau, mango chow, mango ice cream, mango cheesecake and red mango. I even know of the red mango ice cream sold in Tobago at a Store Bay ice cream parlor. Now I am wondering if the world has invented the seedless mango as yet? Google tells me that scientists in India have developed seedless mangoes but Bard then tells me that there are no true seedless mangoes. The mangoes have very small and immature seeds that are soft and fibrous and can be eaten along with the flesh of the fruit. These "seedless" varieties develop through a process called parthenocarpy, which is when a fruit develops without fertilization.

I read that a mango tree takes about 6 years to start bearing fruit and some trees live and bear fruit for up to 300 years. When I was a young boy growing up in San Fernando, I had an endless supply of mangoes from two trees in the yard. A doux doux mango tree and some other type of mango. My mom tells me that my grandfather planted those mango trees. Those mango trees are no longer and made way for housing. We are losing our mango trees and not enough people are planting mango trees. We lose our Trinidadianess more and more when we lose the mango trees. Mango should be made the national fruit of Trinidad and Tobago. I remember buying mango chow in primary school from a big glass jar where it must have been soaking in from the night before. Probably costed a few bobs back then. I read an article that described Nevis as the mango capital of the Caribbean and they have their rich volcanic soil to thank for the proliferation of mango trees. With so many mango trees around they have the Nevis Mango Festival. Since we put pineapple on pizza, surely we can put mango on pizza. I would love to try that. I would also like to try mango ketchup. I think freedom can be described as sitting under a mango tree on a hot but breezy day with a mouth full of starch mango or any variety that you prefer. Ripe mangoes, like freedom, offer a taste of the possibilities life holds.

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