Skip to main content

Birds

This is a chapter from my fifth book called Freedom

Trinis have the phrase "I have a bird" to describe being in a relationship with someone. Now I am curious how that slang term came to be. Some birds are known for their intricate courting rituals so maybe it has something to do with that. No birds for me. That won't be me. I enjoy the freedom of being single too much. Life is less complicated that way. No strings attached. Birds are a symbol of freedom. But why? Birds can fly anywhere they want. They have an aerial view of the world. There is less traffic in the sky. Birds have their pick of the mangoes when mango season comes around. Birds defy gravity. I asked my friend Gemini, why are birds a symbol of freedom? He pointed to their ability to fly which represents liberation from earthly bounds. Birds have also been seen as messengers between the heavens and humanity, adding to their mystique and association with the limitless. I am now reminded by the popular meme with the dog, fish and bird. The dog says he wishes he could fly. The fish wishes he could walk. The bird wishes he could swim. Then the duck enters the picture and says he could do all of that.

There was a time when I was really into birding and bird photography. I love to walk and I love photography. Birding while I walked was like a bridge between those two loves of mine. I found myself exploring the back roads and being close to the garden lands. I found myself being agile and observant for the slightest hint of a bird especially if it was a bird I had not seen before or if it was close enough to get a really good photo. I admire the effort that birds put into building their nest. Have you seen the Oropendola's nest? What a beautiful example of engineering. I was so into birding that I bought the Birds of Trinidad and Tobago book. Which I have lost. I think I left it by my uncle's house in Tobago. I was going through my bird photos and I saw a photo I have of the Red-breasted Meadowlark. It is a member of the blackbird family and has the local name of soldier bird. I think I have been confusing this bird with the red and black Tanager. I am not always sure of the names for the birds that I see. Half the fun is in identifying the bird names. Sometimes the male, female and juvenile all look different.

An ornithologist is a person who studies or is an expert on birds. I read that the word "ornithologist" comes from the Greek words ornis (bird) and logos (theory, science, thought). I remember the times I visited Asa Wright and Arnos Vale to be among the birders. My mom likes to retell the story of how a bird ran away with half of her sandwich she was going to have with coffee when she visited Arnos Vale hotel on her birthday. I asked my mom what her thoughts were on birds. "They are so pretty. The feathers. So beautiful." Trinidad is known as the land of the hummingbird. This was the meaning of Iere, the name the Ameridians gave to Trinidad. Our fascination with birds can be seen throughout history. Many writers and poets have written about birds. I myself penned a poem in May of 2018 called Bird song. Early morning; He came calling; Steady chirping; Busy prancing; Song so nice; Paradise. Bob Marley sang about birds singing songs of freedom. Oops. I think I might have combined two songs there. We want to be free to fly like birds. Angels are often depicted as having wings. Fly can be expanded into Freedom Lives in You. I love this quote from an unknown source, "I was free once I realized the cage was made of thoughts."

Bird photographed by Hassan Voyeau

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