Skip to main content

Humble pie

This is a chapter from my sixth book called Alphabet Soup - A different kind of cook book

What makes a good pie? Not the typical American apple pie for example but more like the Trinidadian aloo pie. Something that I can relate to and easily talk about. Aloo pie was created by the descendents of Indentured laborers on the island of Trinidad. We start with basic ingredients which are flour, potato and oil. We mash and season the boiled potato. We put enough filling and we fry the pie to a crispy texture to a medium browness on high heat. We serve with chutney and other sauces. The aloo pie can often be found with doubles at many street food vendor stalls. Aloo pie is for everyone like many other street foods that you can think of. Words that come to mind when thinking about the aloo pie. Basic, common, accessible, simple, traditional, filling, affordable and comforting. It is a humble pie of sorts. That is how I think about humble pie and aloo pie. If someone told me to eat humble pie, I would go eat an aloo pie. Typically we say boil down like bhagi but I guess we could say boil down like aloo (mashed potato). My friend Gemini tells me that mash and humble are similar in that sense. Mash implies breaking something down, reducing it to a simpler form. Humble suggests reducing one's ego or pride, lowering oneself. While different contexts, both involve a form of reduction or simplification.

Now the origin of the term humble pie paints a quite different picture from the appetizing aloo pie. My friend Gemini tells me that humble pie originates from umble pie, a medieval dish made from the offal of a deer. Considered inferior to pies made with prime cuts, it was typically served to lower-class individuals. The similar sounds of "humble" and "umble" led to the phrase "eat humble pie" meaning to be humiliated or forced to apologize, reflecting the lower social status associated with the dish. The history buff in me is happy to learn of this origin but now the math geek in me is thinking about humble pi. What is the ideal circumference of a pizza pie? Not too big and not small but just right. While we are here and speaking of humble pi, I found a book with the title that seems like an interesting read. Humble Pi: When Math Goes Wrong in the Real World by Matt Parker. Described as the book length answer to anyone who ever put their hand up in Maths class and asked, "When am I ever going to use this in the real world."

Here is something you learn in the real world. They say you are what you eat. I have had to eat my share of humble pies over the years. I am thankful that I can look back with gratitude at the lessons that life has taught me. Maybe if it was not for these lessons I would not be the writer I am today. From fumble to tumble to humble. I went Googling for humble pie recipes and stumbled on this quote by Carl Jung, "The shoe that fits one person pinches another; there is no recipe for living that suits all cases." This is a timely and important reminder. So while we might be inspired by others and their recipes we have to create our own recipes that fit our circumstances just right. This book is merely inspiration and learning and thought provoking. I would have to say that my recipe for humble pie is to be love. To be guided by love. To do things with love. To say things with love. To have empathy for others. To put myself in the shoes of others. Mix in a bit of humour. If we do not laugh we will cry. Humble = humour + be love. I love equations and here is a math joke for good measure. Why was the equal sign so humble? Because he knew that he was not greater than or less than anyone else.

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