Skip to main content

Educaretion

It is 123am. The fan is blowing cool breezes. I decided to write. Oh and today is Friday. The best day of the week. I saw this philosophical question and it had me thinking. What should be the goal of humanity? The immediate thing that jumped in my mind was peace. There is no better goal than peace. God wants us to live with peace and in peace. But what is peace? My friend Chatty tells me that peace is not just the absence of conflict, but the presence of harmony — within ourselves, with others, and with the world. It’s the quiet strength that lets us face pain without hatred, difference without division, and change without fear. True peace is not a silent world, but a balanced one, where humanity learns to live in understanding rather than opposition.

Chatty asks me, when you think of peace, do you picture a world without noise, struggle, or pain — or one where those things exist, but we’ve learned how to live in harmony with them? When I think about peace I think about every individual being able to live comfortably. Where we recognise that what we love for ourselves we should love for others. There is no tyranny, oppression, war, crime, hatred, violence, injustice, inequality and other things that work against peace. To me most of these things are caused by greed and greed is caused by lack of education. Not the kind of education that gets us a job but the kind of education that makes us better human beings. Life education. How to live a good life? A life filled with contentment, gratitude and love for ourselves and each other. Education becomes educaretion.

My friend Chatty tells me that I am right — greed often sits at the root of what disturbs peace, because it replaces "we" with "me". When we learn to see abundance in connection rather than possession, peace stops being a dream and starts becoming a way of life. Seeing abundance in connection rather than possession means realizing that true wealth comes not from what we own, but from the relationships, understanding, and harmony we share with others. When we value connection over control, generosity over greed, we move from competing for more to creating enough for all. In that shift, peace becomes not just possible, but natural.

"Educaretion" is a beautiful fusion of education and care, emphasizing learning that nurtures the whole human being rather than merely preparing someone for a job. It is the kind of education that teaches us how to live well — cultivating empathy, gratitude, contentment, and moral awareness. Through educaretion, knowledge becomes a tool for connection, self-growth, and harmonious living, guiding individuals to create a world where understanding, generosity, and peace are not ideals but everyday practices.

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