Skip to main content

Yonder

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


It is 523am on a Sunday and I am writing this chapter without starting with a photo and without starting with a title. I see a sharpie marker in front of me. I wonder why it is called sharpie? I notice that the word sharpie has the word harp in it. I wonder why it is called harp? In trying to find an answer I found out that in some parts of the world the harmonica is called the mouth harp. There are other names for the harmonica including "tin sandwich". I read that the word harmonica comes from the Latin word harmonicus, which means tuneful or harmonious. The world is full of wonders. If we just stop and look and think and imagine we can wonder lots of things. We begin to ask many questions. What is the origin of the word question itself? Where did the question mark come from? I do not know if it is a joke or not but it is believable. I read an article that suggests that it is an ancient Egyptian symbol that emulates the formation of a cat's tail when it is inquisitive. I noticed that a cat with a hat is a chat while chatting with Gemini.

When I have a question I just Google but what did people do before Google? For some time there were libraries but before libraries? My friend Chatty tells me that before Google and libraries, people relied on oral tradition, written manuscripts, and consulting experts for information. What would the future of asking questions look like? My friend Chatty suggests that the future of asking questions might involve advanced AI and machine learning systems providing instant, context-aware answers, possibly through immersive technologies like augmented reality or brain-computer interfaces, making information retrieval even more seamless and integrated into daily life.

What does photography have to do with asking questions? My friend Chatty thinks that photography can help in asking questions by visually documenting and capturing details that prompt inquiries, stimulate curiosity, and provide evidence or context that can lead to deeper exploration and understanding. I could not decide whether to title this chapter as ponder or wonder. I asked what happens when I combine ponder and wonder? I settled for yonder since this stands for and is pronounced why-onder. I am basically coining a new meaning and version of yonder to mean to think of lots of questions. If I combine photography and questioning I can get questionography or even questography. Makes me think of questionology. My friend Gemini tells me that questionology is the systematic study of questions. It explores the nature, purpose, and impact of questions across various fields, such as philosophy, education, psychology, and communication. Curiosity is the cure for boredom. What could have been a boring Sunday morning turned into a beautiful chapter in this book. A question mark looks like a hook. When we ask questions, we are really fishing for answers. And that is how the photo for this chapter was born. I remembered there was a hook outside to the back of the house and I used  it to create an art piece. I also learnt that the word answer contains "nswe" which is the cardinal points north, south, west and east, which is represented in my photo. North to south is the broom handle and west to east is the cardboard signage. The tail of the fish forms an A (for answer) or Y (for yonder) depending on how you look at it.

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