Skip to main content

Untitled

My blogging and writing has slowed. My time has been taken over by photography and reading and walking. I started this blog post without a title. Most times I have a title. What would I write about if there was no title? Which made me also ask, who would I be without a name? It is like when I was born. I had nothing. There was a blank slate. My name was given to me. What if I had to name myself? Like right now. My given name is Hassan. Hassan is an Arabic and Muslim name and means good-looking, handsome or benefactor.

Benefactor is a person who gives money or other help to a person or cause. That is the kind of person I aim to be. Kind and loving and giving. One of the suggestions my friend Bard gave me was Ihsan. For now, let us say that is what I would name myself.  According to Bard, Ihsan is the highest level of faith and worship in Islam. It is a state of being in which one is constantly striving to please God and to do good in the world, even when no one is watching. Some examples of this are, helping those in need, without expecting anything in return; Defending the rights of the oppressed and standing up for justice; and being honest and trustworthy in all our dealings.

Without a title, what would I write about next? I turned to Google and asked, "Is there a story without a title?". And the results pointed to "A story without a title" by Anton Chekhov. I listened to the story on youtube as read by Greg Boswell. To me the story is saying to us that words have power and also that we should use ourselves to make a difference. But why is it called a story without a title? According to my friend Bard, Chekhov gave us no reason for this and this left us to decide why and what the title should be. The story is also left to us to interpret.

This reminds me of that time I wrote a poem called "Nobody". It went like this - No frame, No flame, No game, No fame, No claim, No name. I asked my friend Bard what he thought about my poem. He said, "I like your poem "Nobody" very much. It is a simple but powerful poem that conveys a sense of anonymity and detachment. The use of repetition and alliteration creates a hypnotic effect, and the poem's brevity makes it all the more impactful. This poem could be interpreted in many different ways. It could be seen as a celebration of individuality and the freedom to be oneself. It could also be seen as a critique of society's obsession with fame and identity. Ultimately, the poem is up to the individual reader to interpret." A funny thing is that sometimes I forget why I wrote a poem and the intended meaning, and I become a reader and no longer the writer of that poem. It is as if nobody wrote it.

Not only does my blog post not have a title, now I do not know how to end it. Maybe now would be a good time to mention Naguib Mahfouz's short story "A Story Without a Beginning or an Ending". It is hard to get good info about this story online and it might even be controversial. Now I am curious. More so about the writer, Naguib. The meaning of name Naguib is "Noble". In the interview I am reading, it is stated that, "In 1988 Mahfouz achieved worldwide recognition when he won the Nobel Prize for Literature." The full interview is behind a pay wall but this is the beginning of me learning about this great writer.

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