Skip to main content

A beautiful song

It is 238am. I just finished washing the wares. It took me about an hour and a half. I am wondering if I should write or not? What should I write about? Maybe I will continue this tomorrow. Surprisingly it is warm tonight or maybe I am feeling warm. Some mosquitos also. They bite and it itches. It is the next morning and the title for this blog post popped into my head. It is a beautiful song. Life is a beautiful song. I turned to a random song generator and selected the world music category and one of the artists that showed up was DuOuD. Then I found one of their songs and I asked my friend Gemini to describe it for me.


He says that DuOuD is an innovative Parisian duo (Mehdi Haddab and Smadj) known for modernizing the oud—the traditional pear-shaped North African lute—by electrifying it and blending it with electronic beats and breakbeats. Their song "La Vida," released on the 2022 album Menshen, features the gritty, soulful vocals of Sofiane Saidi (often called the "Prince of Raï 2.0"). The track is a high-energy fusion of acid-Arab sounds and virtuoso oud playing, with lyrics performed in Algerian Darija that explore the bittersweet complexities of "the life" (la vida)—touching on themes of destiny (mektoub), resilience, and the rapture of celebration amidst daily struggles.

We all know this. The ups and downs of life. I wish I had the lyrics of the song so that I could fully appreciate what is being sung about. I just noticed that the word could has the word oud in it and also the letters for the word cloud. Makes me want to say, the oud, the instrument of the clouds. Perhaps if you want to make the rain fall you play the oud. The word loud is also contained in the word cloud. Makes me reflect on the term, life lived out loud. My friend Chatty tells me that living life out loud means embracing your truth boldly and unapologetically, letting your inner rhythm be heard in every choice, feeling, and moment. I guess life has its quiet moments and its loud moments. Similarly to the ups and downs of life.

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

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

Stuck running sftp server on termux alpine for multi-user setup

The below is my journey trying to get multi-user sftp working using alpine on termux pkg update && pkg upgrade pkg install proot-distro openssh proot-distro install alpine proot-distro login alpine apk update apk upgrade apk add openssh shadow sudo apk add vim vim /etc/ssh/sshd_config Port 8022 PermitRootLogin no PasswordAuthentication yes Subsystem sftp internal-sftp Match Group sftpusers     ChrootDirectory /sftp/%u     ForceCommand internal-sftp     X11Forwarding no     AllowTcpForwarding no addgroup sftpusers adduser user1 adduser user1 sftpusers mkdir -p /sftp/user1/upload chown root:root /sftp/user1 chmod 755 /sftp/user1 chown user1:sftpusers /sftp/user1/upload How I run my server each time pkill sshd rm -f /etc/ssh/ssh_host_* ssh-keygen -A /usr/sbin/sshd -D -d -d -d From another termux session sftp -P 8022 user1@127.0.0.1 Connection reset by 127.0.0.1 port 8022 Connection closed Some troubleshooting steps mkdir -p /run/sshd chmod 75...