Skip to main content

What makes us beautiful?

This is a chapter from my fourth book called When hunger yearns

I was swiping through Instagram stories and one story came on with the Ed Sheeran song "Beautiful People" playing. I love that song but also I asked myself, what makes us beautiful? According to Rolling Stone magazine, "The tune is about remaining true to yourself and not trying to become one of those so-called "beautiful people" obsessed with material things and stature." While I understand the message of the song, I think it is important for me in trying to make sense of this question and answering this question not to be critical of what others see as beautiful. What others value. What others choose to do with their time. What others aspire to be. I want to answer this question in a way that is embracing like a beautiful hug. I want my answer to open like a beautiful flower in our minds.

They say that beauty is in the eyes of the beholder. What I find beautiful might not be beautiful to someone else. This is also telling us that beauty can be external and internal. Everyone wants to be loved and appreciated. To be valued. To find their space in this world. The world loves beauty. We love feeling beautiful. We often hear that it is what is on the inside that counts. Beautiful should not be an ideal that is hard to define and reach. We are perfectly imperfect. We are all products of circumstances. We are all human. We are all beautiful. I think if more people saw how beautiful they are there would be less bad in this world. We would value each other. We would value life. We would value peace. We would see the beauty in doing good. In being good. In thinking good thoughts.

How does Islam answer the question? I went looking and found one perspective in an article I found online. In the article the writer shared a poem that I found out was written by Shaikh Sa'di Shirazi.

أيُّهَا الشَّاكِي   وَمَا بِكَ دَاءُ   كُنْ جَمِيلاً   تَرَ الوُجُودَ جَمِيلاَ

O complainant,
what is your ailment?
Imbibe beauty
and you will see beauty everywhere.

The writer tells us that true beauty should drive us closer to God. It should unite us instead of divide us. Islam is a way of life that emphasizes moral and spiritual beauty. The writer concludes by telling us better than I could, "If only we strive more to beautify our characters and hearts, I believe beauty, as conceptualized by our religion, will start to become more apparent. The light that is emitted from beauty will be radiated everywhere. Love, peace, and calmness will become the norm. How beautiful life on Earth will be. Truly, it will be. God willing."

God made us all beautiful. God is the source of all that is beautiful. Gratitude is beautiful. Honesty is beautiful. Patience is beautiful. Sharing your food with someone is beautiful. Walking home is beautiful. Staring at the sky is beautiful. Dancing in the rain is beautiful. Beautiful is a smile. Beauty is all around us. How we see ourselves is how we see the world. How we treat ourselves is how we treat others. Maya Angelou said, "The real difficulty is to overcome how you think about yourself." Beautiful is that all us are trying to make it through life. We are all trying to make sense of our existence. We are trying to be better versions of ourselves. We are all part of the same humanity. We are more the same than different. We have to work together to make it in this life. Pablo Picasso said, "The meaning of life is to find your gift. The purpose of life is to give it away." Does that not paint a beautiful picture of life? What makes us beautiful is how we pursue a meaningful life guided by purpose and sharing and caring for others and that gets us closer to God. The more I reread this chapter to get to the message of what I have written the more beautiful it becomes to me. This chapter is worth reading a few times.

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