Skip to main content

Grazie

This is a chapter from my fifth book called Freedom

I noticed that my last two chapter titles begin with "gra" from graffiti and gratitude. I went in search of another gra word and found grazie. I thought would it not be cool to have three chapters in a row with gra starting titles. Grazie is the most common way to say thank you in Italian. I learnt that to pronounce grazie you have to put emphasis on the e so that it is said like graht-see-eh. I love Italy but what do I know about Italy? I am a casual supporter of the Italian football team. I used to be a supporter of Inter Milan before switching allegiance to Manchester City. Everybody loves pizza and pizza is from Italy. One of the best pizzas I have eaten came from Ciao Cafe in Tobago when they were still in business. Their gelato is also perfecto! Wait. That is Spanish. It is perfetto! Pizza from La Cantina is also awesome. Delizioso! The words gotta end with o it seems to give it that Italian emphasis and attitude. Instead of grazie I could say grato for thankful or grateful. An Italian phrase that can be said with emphasis and attitude using words that end in o is "molto bello" which means very beautiful. I read that the Italians say bello for everything. Bello is like the Italian version of hello, I wonder. I am thankful to the Italians for food and football. Both words start with foo. Interestingly there are no words starting with foo in Italian or any words with double o for that matter. Am I a fool for knowing so little about something I love so much? Well this chapter should change that a little.

The origin of the name Italy is disputed and there are several theories. Some are even referred to as legends. I found myself in a reddit thread looking for answers and even found this question, "but why is writing in slanty letters called italics?" I asked my friend Gemini if it is because the Italians invented it? He tells me that Italics get their name from Italy. They were inspired by the cursive handwriting of Italian scholars and popularized by Venetian printer Aldus Manutius around 1500. While the style existed before, the term "italics" was coined to honor its Italian origins, making it a unique connection between typography and culture. The more you live, the more you learn. There is an Italian proverb that says the same thing. "Sin che si vive, s'impara sempre" that translates to "As long as you live, you always learn". How about this quote from the famous Italian, Galileo, "Non puoi insegnare niente a un uomo. Puoi solo aiutarlo a scoprire ciò che ha dentro di sé." This translates to, "You cannot teach a man anything, you can only help find it within himself." And what about love? They say that Italian is the love language. I read an article where Dr Patti Adank says that Italian is attractive to the ear because of its melody with its very high number of words that end in vowels and few words with many consonants in a row. This makes it perfect for singing with its open sound.

Since we love pizza and the theme of this book freedom I thought it would be useful to explore the link between pizza and freedom if any? There are a few ways to actually answer this question but instead I found a tangent. A story I found about a polar bear named Pizza. The article described the polar bear as the saddest bear in the world as he was being held in a small enclosure and displayed in a mall in China. That was in 2016. In 2018 the National Geographic published an updated story saying that Pizza was no longer sad. He was reunited with his mom in an aquarium. I am glad that this story took a good turn thanks to the efforts of animal rights activists. I was curious about the name Pizza but could not get any word on this. I also was not sure of the gender as some articles said he and some articles said she. Now I am wondering if polar bears like pizza. Their natural diet is seals, other marine animals and birds. I suppose the pizza would have to be specially constructed for them. How do I end this chapter now that I have gone off-topic it seems. Sometimes our journey takes unexpected turns. As the Italians would say, "La vita è un viaggio imprevedibile." Whatever the path taken, we are thankful. In ogni caso, siamo grati.

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