Skip to main content

Why is glass transparent?

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

I had just written my first chapter and published it to my blog and shared it on my social media. Feeling bubbly that I was once again writing another book, I then began thinking about my next chapter. I headed to youtube and did the simplest of searches for "why". A few videos down I came across this video "why is glass transparent?". I do not know this. I did physics in secondary school but that was not something I remember covering. My interest was piqued. The presenter notes at the beginning of the video that if you Google for an answer you might come across some wrong answers. But how do I know that the presenter is giving the correct answer? How do I know that any answer I come across is the correct answer? My friend tells me that I should cross reference by checking multiple sources and looking for consistency. I should analyze the presenter's background and content quality. I should look for red flags such as sensational claims and contradictions. I can read what others are saying in the comments.

What I gathered from the video was that light does not pass through some materials because the energy from the photons of light is capable of moving the electrons from the ground state to the excited state and is used up in doing so. For a transparent material the energy gap between ground state and excited state is too much to get absorbed and the light simply passes through the material. My questions now are how does the electron return to the ground state? Would the most powerful light in the world excite all the electrons such that no more excitement takes place and the light passes through a normally opaque material? Gemini somewhat helped me with my understanding and questions but I can tell that I have only touched the surface of this question and that I needed to do some more research. I am going to email the physics department at the UWI and see if they can point me in the right direction. I am also going to watch more youtube videos on this question.

This question reminds me of the Trinidadian saying, "Your father is a glass maker or what?" said to someone who is blocking our view. Now I am wondering, what is the origin of this phrase? Is it really a Trinidadian phrase as I am thinking? In trying to figure this out without success I came across phrases for the same use like "Have you been drinking muddy water?" and "You make a better door than a window." I read online where in Spain they say, "La carne de burro no es transparente." When translated, that is, "A donkey's flesh is not transparent." Also in Cantonese they say when translated, "Did you grow up eating glass?" This makes me think, "How far have we reached with invisibility technology?" I mean sometimes we can feel as if the world does not care about us and we do not matter - as if we are indeed invisible. I went to Google with my question, ''Why am I invisible?" and came across a host of useful articles on the topic. But maybe we want to be invisible and not be seen. Life can be hard sometimes thinking about the expectations we have to live up to. Not being seen means not being judged. Not being criticized. Not being a burden. But then how meaningful would life be? Who knew my physics question would take a psychophilosophical turn? Is that even the correct use of that term?

I should be grateful. We always hear of "Is the glass half full or half empty?" but have you heard of the empty glass philosophy? Me neither but I came across it while researching this topic. According to my friend, Gemini, the empty glass philosophy emphasizes continuous learning and staying receptive to new knowledge. It is about remaining humble while learning, never being satisfied with the knowledge we have and emptying the glass to make room for new ideas and knowledge. This would be my approach as I write this book. The empty pages of the remaining of this book are ready to be filled with so much learning just like an empty belly makes us hungry and ready for that tasty roti meal.

Comments

Anonymous said…
🔥

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