Skip to main content

Coding

This is a chapter from my third book called Love letters

I had this idea to count the occurences of letters in the chapter titles and see if anything of meaning could be derived. There is beauty in numbers and Maths after all. I asked Bard to do the counting but it turned out Bard was giving me wrong counts. I realized this because it was telling that there are two v's in my chapter titles when I can easily see that there is only one. I fired up Pydroid on my four year old Android phone. Side note, I did all the work and typing for this book on my mobile phone. I do not have a laptop anymore. I had an idea of the code I could use and I found a tutorial that showed me a couple of ways to do the counting. I chose the method that had the least amount of code and made use of the python library numpy. This is what the code looks like.

import numpy as np

with open("chapters.txt", "r") as file:
    words = file.read()

unique, counts = np.unique(np.array(list(words.lower())), return_counts=True)

result = dict(zip(unique, counts))

print(result)

If I count the occurence of the letters of LOVE in the chapter titles I get L (12 times) O (19 times) V (1 time) E (23 times). 19 + 23 = 42. Love contains the meaning of life. 23 is my favorite number because I was born on the 23rd. I was born to love and these are my love letters. The funny thing is that even with wrong counting by Bard I still got a total of 42. The universe is a magical place if we care to pay attention. It is the vowels that add up to 42 and my friend Bard tells me that in some ancient languages, vowels were considered to be the soul or essence of the word.

I love coding because with coding I do stuff like what I just did. One could say that I had found some sort of number code in the letters of love through coding. According to my friend Bard, coding is used a lot in cosmology. Cosmologists use a variety of programming languages and tools to simulate the universe, analyze data, and develop new theories. My love for coding dates back to secondary school. My second book is about coding. I find joy in coding. If only I could find the number code for winning the lotto.

*I decided to go to page 42 in this book and highlight something that represents the meaning of life. Then I realized what I highlighted has 19 letters and 23 characters with spaces. These are my love letters. And the word God sits perfectly in the middle.

Comments

Popular posts from this blog

Below the surface

This is a chapter from my eleventh book called Quotation Marks Sparks . __________ "You can't stop the waves, but you can learn to surf." - Jon Kabat-Zinn __________ I was looking at quotes that hit hard and this quote stood out to me. It seems mundane and obvious and often repeated. Life is about how we respond to the inevitable. It is not what happens to us but how we respond. I had to ask myself to dig deeper and look below the surface. Then I saw that when we surf we really become the waves. We become friends with the waves. The waves and us are the same. Further, the waves are created by us and in our heads. We can control the waves because who can surf all the time? Sometimes we just have to come to shore and build sand castles on shore. I asked my friend Gemini for feedback and he said that I was right, the Jon Kabat-Zinn quote initially seems like a simple call for resilience, but my deeper dive reveals profound layers. The idea that we can move beyond merely rea...

Thankful

It is 617pm and I have decided to write. Right now I am thankful. The cool of the evening has replaced the heat of the day. I took a bath and changed and now I am just relaxing. Sometimes I complain. Not often. But I feel bad afterwards because there is so much to be thankful for. There is always room for improvement and we have to identify the things for improvement and change is often good but we do not have to make it into complaints. Yeah I get it. Life is hard and none of us has it easy. Look on the bright side of things. And sometimes it is the little things that remind us that life is good. Things that we take for granted. Like I was coming in the maxi taxi today and heard a gospel song that was about gratitude. God does appreciate a grateful heart. Trinidad and Tobago celebrated sixty four years of independence yesterday and if we stop and listen to the many complaints we would swear we are living in the worst country in the world. That is not the case. We do get a lot of thing...

Having a soft spirit

It is 137am. It started raining. I decided to write. I have heard about having a soft heart but what does it mean to have a soft spirit? And is having a soft heart related to having a soft spirit? My friend Chatty says that a soft heart feels deeply — it breaks, heals, and loves with tenderness — while a soft spirit moves gently through life, unresisting and at peace with what comes. The two are kin: a soft heart opens you to emotion, and a soft spirit teaches you to carry that emotion with grace. Together they make a person both tender and strong — able to feel the rain and still trust its rhythm. I like the quote, "a soft spirit in a hard world" by author and poet, butterflies rising. It resonates with how many of us feel. My friend Chatty tells me that that quote captures the quiet strength of staying gentle in a harsh world. It reflects the author's signature themes of vulnerability, tenderness, and emotional courage — the idea that softness is not weakness but a form...