Skip to main content

Clouds

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


This chapter has been in the making for a few days now. I woke up early and decided today was the day I would finish this chapter. I had already made notes and I had some photos but I would make some more photos and choose the better one. My attempts to capture birds in flight got me started with cloud photography. I was surprised that there was a word for this niche in photography. It is called cloudscapes. I see cloudscapes as abstract works of art. My friend Gemini tells me that cloudscapes often blur the line between abstract and representational art. Their ever-changing, ethereal forms and dramatic light play can evoke abstract interpretations, while familiar shapes like cotton balls or storm clouds ground them in reality. Ultimately, the perception is subjective.

I like this quote that describes Alfred Stieglitz's cloud photography, "A symbolist aesthetic underlies these images, which became increasingly abstract equivalents of his own experiences, thoughts, and emotions". I learnt about Alfred's work in looking up the history of cloud photography. I also learnt that in early landscape photography, photographers had to combine two separate exposures for the land and the sky. Some photographers even resorted to painting in the clouds. My friend Gemini tells me that modern cameras capture stunning landscapes in a single shot, thanks to advanced sensors and image processing. Filters like ND and GND further enhance sky and foreground detail, eliminating the challenges faced by early photographers.

In between cloud photography I was able to capture the elusive yellow butterfly. These yellow butterflies are fewer than the other types of butterflies around my yard and they are always busy. They never come close and they do not stay put for long. Making it a challenge to photograph with my mobile phone. I did manage to finally get a good enough photo of one of them and learnt that they are called "cloudless sulfur" butterflies. Cloudless because they lack distinct markings or "clouds" on their wings like the clouded sulfur butterfly. My friend Gemini tells me that butterflies and clouds, though unconnected biologically, share a symbolic bond often representing transformation, beauty, and freedom. Their ethereal forms inspire awe and peace.

Clouds are soft and quiet most of the time. Clouds can be loud and expressive like when thunder happens. Clouds smile with the sun peeking through. Clouds cry when there is rain. Clouds look sad and angry when it is overcast. Clouds tell us that the world is alive. I like a clear blue sky but I also appreciate the clouds. I like when the clouding is uniform and not distracting but I am starting to like chaotic cloudscapes. I like this quote from Shaan Johri, "Without clouds, there’s no point in looking up." From him I learnt about the environmental theory of communication and the cloud appreciation society. A seemingly simple thing like cloud photography can lead to greater appreciation and care for the environment. We are no different from the clouds. No two clouds are identical. Similarly, each one of us is a unique masterpiece painted across the canvas of existence. Clouds remind us to embrace our individuality, to celebrate our originality, and to find wonder in our differences.

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