Skip to main content

Love

This is a chapter from my seventh book called Bookeh - Through the lens of a Trinidadian photog


I woke up early. It was around midnight and I decided to make a photo that would be this chapter. The room was dark except for the light from the air conditioner switch. I had the idea to do some light painting. What I decided to write was the word love. What does it mean to have a love for photography? What does it mean to have a passion for photography? How do we say this photo was made with love? These are the questions that will guide the writing of this chapter. What better way to tell the story of love than painting with light. Rumi beautifully wrote "love is the soul's light". Light painting, pioneered by Frank Gilbreth in 1914, involves long-exposure photography to capture light trails. Gilbreth used this technique to study human motion, laying the groundwork for artistic light painting. Light painting is not the easiest thing to do. I struggled with it. Many times the word love came out crooked. I think you need some luck to get it right. I like this photo that I settled on because the letter v is in the shape of a small heart.

I was curious what others had to say and so I ended up in the photography subreddit where the question was asked five years ago, "Why do you love photography?" There were a variety of answers and some of them I related to. Someone jokingly said that they love photography because they cannot draw for nothing. This is interesting because the word photography comes from the Greek words "phos" meaning light and "graphis" meaning stylus or paintbrush. Photography literally means "drawing with light" as I mentioned before in this book. Another person said it forces him to look at the world differently. This I can relate to. It is not just my yard or home, it is an entire world to explore and moments to capture. Instead of boring I can go exploring. One person said that photography is another way of telling a story. That is exactly what I have been trying to do with this book. To share my love for photography through my lens and my words. I love photography because I can freely express myself. I can be artistic. Photography is an art. I can share love through my art. I can share the beauty that I see in this world. I want to make the world beautiful. I want to remember the world for its beauty. Beauty is in the lens of the beholder.

In a sense photography saved me. And continues to save me. It saves me from the negativity that surrounds the times we live in and that can easily destroy the love that lights the way. I have come across stories of people who were saved by photography. Whether it is with mental health struggles or any other of the various struggles. Who knows it, feels it. I started with a dark room and a tiny source of light. My canvas was blank. I could hardly see but I was guided by this light. I could draw or write anything with this light. I chose love. This reminds me of a quote that I love so much from AR Rahman, "All my life I have had a choice of hate and love. I chose love and I am here." It is no coincidence that both light and love begin with the letter l. Lens is another l word. The difference between word and world is the letter l. Light and love are the lens through which we see the world.

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