Skip to main content

Spirit

This is a chapter from my fifth book called Freedom

We have a spirit. We have a soul. Technically there are differences between them both but I am writing about both in this chapter under the heading of spirit in the context of we must take care of our body, mind and spirit. Everything happens for a reason. For example, I deciding to start this chapter tonight and not leave it for tomorrow has happened for a reason. This universe and this world and life is not by accident. Life is a test. There are things that could easily destroy our spirit and there are things that uplift our spirit. The word spirit reminds me of spiral. I was doing some research and stumbled upon the observation that spirit could be a portmanteau of spiral and ritual. The word spiritual has the word ritual in it. What is spiritual? What is spirituality? I asked my friend Gemini to help me with this. Gemini says that spirituality is the quest for meaning and connection beyond our daily lives, often involving a sense of something larger than ourselves, like a higher power or a deep connection to the universe.

I definitely believe in a Higher power. I definitely have this yearning to get closer to God. I am amazed by the beauty and greatness of life and the universe. I am guided by the teachings of Islam. I do think of myself as a spiritual person but with plenty of work to be done to be where I need to be. I am glad that I can see the light. I feel like my body is a ship at sea and my spirit is the skipper and there is a lighthouse guiding my soul to safety. I noticed six s-words in that metaphorical statement. Ship, sea, skipper, spirit, soul and safety. I am glad I can sea the light. Which leads me to this often said saying, "A smooth sea never made a skilled sailor." Life is a test and sometimes we are tested with difficulties but maybe that is such to make us stronger. This reminds me of one of my favorite songs which is "Spirit Indestructible" by Nelly Furtado. Asked about the song Nelly says, "It's an ode to the spirit which resides in all of us and triumphs over anything". "It is inspired by people I have met, and special moments in history that I have read about." I just had a thought and Googled and learnt that most lighthouses have spiral staircases, also known as ships ladders. Many lighthouses are painted with a spiral on the outside.

My friend Gemini tells me that the "spirit ladder" is a concept in Christianity representing a path to growing closer to God. It is like climbing a ladder rung by rung, with each step involving practices that purify your heart and mind, ultimately leading you to a state of love and divine connection. I think this can apply to any religion or any spiritual journey. I have come to the point where I want to say that the path to freedom resides with the spirit. Which leads me to this takeaway. A blog post I found through searching - Freedom through Surrender: Overcoming the Ego and Finding Peace in Islam. The blog post states "Our self is constantly being inflated and deflated, tossing itself from one crashing wave to the next." This adds meaning to my ship at sea metaphor. I am again connected back to my metaphor with this next sentence from the blog post. "The word also bears a semantic relationship to the concepts of safety, completeness, and freedom from fault." They were talking about Islam. I like how spiritual freedom is described closer to the end, "Then, the self becomes not as a drop in the ocean but as the ocean in a drop, as Rumi, the great Muslim scholar and poet, describes." My mind is opened by this blog post and I will have to read it a few times again and I am glad that I came upon it. Spiritual freedom is the ultimate freedom.

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