Skip to main content

Night

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


I have written earlier on light and flight and now I am writing on night. It is early in the morning and I am completing this chapter after making notes and studying the topic of entropy. Since I covered chaos and order in the last two chapters I thought I would make this chapter relate to entropy. One attempt was enough to make this photo of the moon last night. I did not intend to do a long exposure photo. This happened because this was my last setting in pro mode. A ten second shutter speed. I liked how this photo turned out. It can be best described as a glowing orb. Night time photography has its own set of challenges especially with a budget mobile phone but my photo of the moon turned out to be an uncomplicated task. The sky was clear and my hands were steady. I can look at the moon with my naked eyes but not so with the sun. The moonlight is a lullaby to the eyes whereas the sunlight is an aria.

To help me remember my understanding of entropy I revisited this video on entropy. I was curious about what the moon has to do with entropy and this led me to this question on the physics forum - Is the Moon responsible for reducing Earth's entropy and making life possible? While I contemplated that question with my limited understanding of earth science, I thought about the first man on the moon and how both the words man and moon start and end with the same letters. As the famous words of Neil Armstrong goes, "That's one small step for man, one giant leap for mankind."

I asked my friend Gemini to give me an analogy for entropy. He says that entropy is like a measure of disorder or randomness in a system. Imagine a clean room: low entropy. Over time, without effort, it becomes messy: high entropy. Nature tends to move from order to disorder, increasing entropy, unless energy is spent to maintain order. Put simply, there are plenty more ways to arrange a messy room than a neat room. My research brought me to social entropy and also a reminder that entropy applies to closed systems.

I have some questions that require me to do more in depth thinking, study and research. The questions are as follows and I am putting them out in the universe to become part of our entropy of knowledge. I took a long exposure photo of the moon and was wondering can this exact photo ever be created again? And how is this related to entropy? How does this relate to an infinite universe with infinite copies of the earth and infinite copies of me taking this exact photo? Do these infinite possibilities contradict entropy? This reminds me of the infinite monkey theorem and how it can be applied to my questions and my photo of the moon. Imagine infinite monkeys taking photos of the moon. Would that lead to an infinite moonkey theorem?

Night is not the absense of the sun but the presence of its reflection. As the night fades away and the day returns I reflect on the topic of entropy. Complete order lacks freedom and complete chaos lacks purpose. Somewhere in between makes the most sense. Life balances between day and night, light and dark, and good and bad. And just like that I have found my next photo and chapter - balance. From the ball that is the moon to the ball that is in ballance. They are the circles of life and the universe.

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