Skip to main content

Mind

This is a chapter from my fifth book called Freedom

I came across this quote from an unknown source when I was writing my first book and it has stuck with me. "I was free once I realized that the cage was made of thoughts". The mind is so powerful. The mind is a terrible thing to waste. Just as I wrote those few sentences we had a medium and prolonged earthquake in Trinidad. It is now around 12 midnight in Trinidad. It was a 6.2 earthquake. I think this earthquake has awakened the entire country. As I reread what I wrote so far I noticed that the word midnight contains the word mind. Midnight = mind + thing. A powerful re-mind-er of what I wrote earlier. The mind is a terrible thing to waste. This has been the slogan of the UNCF (United Negro College Fund) and later modified to say, "A mind is a terrible thing to waste, but a wonderful thing to invest in." This promotes the importance of education. I thank my mom for making sure that education was a priority in our household and that I got a solid education as part of my foundation in life.

These days I keep my mind useful and challenged with my book writing. I find that there is freedom in putting my thoughts into words. I tried to find a quote that expresses this same idea but instead I came across this quote by Immanuel Kant, "The power of thought is the light of knowledge, the power of will is the energy of character, the power of heart is love. Reason, love and power of will are perfections of man." My friend Gemini explains the power of thought part of the quote with, "This emphasizes the importance of critical thinking and reason. Just as light allows us to see, thought allows us to understand the world around us." Writing is a way to explore the world and learn new things. It is like saying, "let us see what the mind could find." I like this playful quote from Dr Seuss, "You have brains in your head. You have feet in your shoes. You can steer yourself any direction you choose."

We have to take care of our minds and what we feed our minds. I find that if we are not careful we can easily be consumed by the negativity that surrounds us. We are then inclined to add to the negativity. Instead there is plenty of positivity and through positive thoughts and positive actions we can make the world a better place to be in. Norman Vincent Peale tells us that "Change your thoughts and you change your world." It is approaching morning. My mind and body are in a relaxed state. I have progressed from a few sentences and being shaken up by an earthquake to now a few paragraphs but where can my mind take me now? Through the power of my mind in deciding what to search for and the power of technology and the search engine I came across this BBC article titled - Awe: The 'little earthquake' that could free your mind.

The article through Ethan Kross tells us that awe is the wonder that we feel when we encounter something that we can't easily explain. According to the article, awe can have a profound impact on our mental health, by allowing us to put our anxieties into perspective. I think I needed to hear that. Awe reminds me of my last book "WHY" where I asked lots of questions. Lots of interesting questions. I like that awe begins the word awesome. Why is there only some in awesome but full in awful? A question for another time. Let me continue reading the article. The article tells us that when we encounter something incredible and grand we see ourselves in the grand scheme of things and place less emphasis on our needs and this creates greater altruism. It also has the effect of us placing less emphasis on the negative chatter in our minds. The bottom line is that awe forces us to broaden our perspective. I like how Ethan puts it, "The capacity to step outside of ourselves is a really valuable skill." I guess we can call these experiences "awequakes". You know what just crossed my mind? The awe and wonder of living on the edge of a mountain cliff overlooking a valley. Imagine when rain falls and the feeling of being one with nature. The earthquake struck but I am mind struck by the new perspective and freedom this article and this chapter has brought to me. Guess what? It has started raining heavily just like the rain my mind had imagined.

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