Skip to main content

Who makes the best cheesecake?

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

It's three in the morning and all through the house is quiet and not a creature is stirring, not even a mouse. I bet a mouse's favorite dessert is cheesecake and so is mine. So it's in the wee hours of the morning and I am thinking about cheesecake and specifically who makes the best cheesecake? I suspect it would be some recipe handed down from generation to generation. Probably someone's grandma from the town where cheesecake originated from. I read that even though we may think that cheesecake originated in New York that it actually goes further back to over four thousand years on the Greek island of Samos. The Greeks there created the earliest known cheesecake. No wonder I think that the cafe in my village that sells Samosas makes the best cheesecake. Is there a connection between Samos in Greece and Samosas? There is not much written about this on the internet but I did find one blog post that tried to make the connection.

The fascinating thing to me is that Samos is known for being the birthplace of the Greek philosopher and mathematician Pythagoras. Did Pythagorus come up with pythagoras theorem while admiring the triangular beauty of a Samosa? Have I triangulated a theory? That would be wild if only it was true. By the way, yesterday was Pi day. Is cheesecake a pie? Because then I should have ordered a fancy Japanese cheesecake from the bakery on the outskirts of my village. I tried it once and it was most delicious. So maybe to answer my question, the Japanese make the best cheesecake. Did you know that Japanese cheesecake is often steamed instead of baked? Me neither. Also, some say cheesecake is a hybrid between a cake and a pie, while others say it's neither. Maybe it is a pie in the sky or rather a pie from the sky. A treat from heaven above.

A cheesecake variety that has fascinated me but I have not tried as yet is the Basque cheesecake. I suggest you pause and Google this and admire a most beautiful looking cheesecake. To me it is the cream cheese de la cream cheese of cheese cakes. This is what "bask in the glory" would look like if it was a cheesecake. It is baked without a crust and has a golden caramelized top and originates in San Sebastian, Spain. Because it is left a little longer in the oven the top appears burnt and the inside is goey. One fancy food blog describes it as having bittersweet notes. Who knew cheesecake was like perfume and had notes? I bet you someone has invented a cheesecake scented perfume. Off to Googleland I go. Yes. Cheesecake perfume exists. They say you are what you eat. Perfect, now you can smell like what you eat. Back to the question though. There is no Basque cheesecake in Trinidad, I do not think. Just like they say the best camera is the camera you have (smile and say cheese), maybe the best cheesecake is the cheesecake you make yourself or you could get your mom to make it. I challenge myself to make a Basque cheesecake one day. I would like to end on a high note. With some wisdom. They say do not put all your eggs in one basket. I would like to say, do not put all your eggs in one Basque cheesecake. Make multiple cheesecakes so you have enough for later and the next day and you can share with the neighbours too.

Comments

Anonymous said…
Mwhahaha, this was definitely the funniest 🤣

Nasif

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