Skip to main content

Surface

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


From the busy photo and the chaos of my last chapter to the minimalism of a clear blue sky in this chapter. It was evening. The cooler part of the day. I went outside in the yard and stood on the grassy area and looked above. I made five photos. They say the sky is the limit but I wonder if it is really our beginning and our end? I did not think of mentioning it in the last chapter but the butterfly effect is an underlying principle of chaos theory. I went online and matched the color in the photo and the center of the photo matches with "hippie blue". This is a simple photo. This might even be my best photo. A photo of the surface of the sky. The clouds are the sky's clothing. This is the sky without its clothes. Naked as it was born. The photograph could have been a wall or a blank sheet of paper. Any surface and the message would be the same, just conveyed in a different way.

Beauty is not only in the photograph itself but what it represents. The same goes for writing. Sometimes we judge the medium and the messenger and ignore the message and this is not good. It is funny how the last chapter was chaotic just like the photo. At least in my mind. I feel like the writing described itself. You have to look beyond the quality of the photograph and the writing to see the beauty of the message. Similarly as a writer and photographer, I need to focus on the message as much as the presentation. My friend Gemini tells me that a photograph and a piece of writing are more than just images or words; they are vessels for meaning. Often, we're too quick to judge the container, neglecting the treasure within. To truly appreciate art, we must look beyond the surface.

Does this count as a photograph? My friend Gemini tells me that a photograph of a plain blue sky can be categorized as minimalist, abstract, or a standalone landscape element. Its simplicity allows for a focus on color, light, and texture, making it versatile for various photographic styles and interpretations. To you and me this might just be a clear blue sky but to one user on reddit this represents a deep scientific question. A picture of a clear blue sky has greater entropy / information content than a busy painting: true and if so, how? Trying to read the answers hurt my brain and I have forgotten my own understanding of entropy. But I do remember it being counterintuitive to my ordinary thinking. In the same sense that my best photo could be the photo that requires the least amount of effort. I did not plan to link these two chapters in this way but it just happened. Chaos, order (the opposite of chaos) and entropy.

I am a minimalist. I like simple. I do not always represent this but it is a big part of my ethos. It is what I aim for. A simple life. A life of contentment. A peaceful existence. Albert Einstein said, "If you can't explain it simply, you don't understand it well enough". I would like to suggest that if we took all the atoms of everything in the universe and formed a surface with these atoms we would end up with a clear blue sky. An imaginative and poetic concept that is more philosophical than grounded in reality. This is to simply say, we are all the same and different at the same time. We are all part of a clear blue sky. In a sense the photo represents nothing and everything at the same time. The beginning and the ending. An empty sky that is full of hope.

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