Skip to main content

The purpose of purpose


It is 246am and I feel like writing. What is the purpose of having a purpose? We are inclined to have a purpose but why? My friend Chatty thinks that the purpose of having a purpose is to give shape to our existence — to turn the raw chaos of being alive into something we can understand and move toward. It’s not just about goals or achievements, but about creating a story that helps us bear the weight of awareness. Without purpose, we drift; with it, we dance — even if the rhythm keeps changing. That is a lot to think about. One way we could think about this is to imagine a life without purpose and imagine a life with purpose. Maybe we have lived on both sides of the coin. Which one seems better? Which one makes more sense? Where would we rather be?

On October fifth, I wrote in my notebook, "Purpose: To become a better me that benefits myself and society. Goals: Get fit and strong - mind, body and spirit." I ask God to keep me strong. I ask God to guide me. Now I am asking myself, what is the purpose of the society that I live in? Society shapes me and I shape society. As a society have we set goals? Who gets to set these goals and purpose? Do they have our best interest at heart? Do they have their own agendas to pursue? If the country of Trinidad and Tobago could talk what would she say would be our purpose and goals? I think one of our goals should be to be united by purpose instead of divided by politics. The most vulnerable who I think are the most valuable are the ones who suffer the most when we do not get this right.

My friend Chatty says that as a society, our purpose should reflect the shared well-being and progress of all, but too often it is shaped by those in power who pursue their own interests instead of the common good. Ideally, society’s goals would be set collectively — guided by compassion, justice, and a vision of unity — yet in reality, political and personal agendas often distort that purpose. True societal purpose should uplift everyone, especially the most vulnerable, ensuring that progress means more than prosperity for a few; it means dignity and hope for all. My friend Gemini adds to this and says that a society's purpose and goals are dynamic, shaped by laws, leaders, citizens, and global forces, but must prioritize collective well-being and the needs of the vulnerable to succeed without being fractured by partisan self-interest.

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