Skip to main content

New year revolutions

It is 357am and I have decided to write. Today is old years day or new years eve. It is a happy time. We survived another year revolving around the sun. I had this thought. From revolve we get revolution. So then what is a new year revolution as compared to a new year resolution? I feel like a revolution is stronger than a resolution. A revolution is for the long term. A revolution comes from a 360 degree perspective. A revolution is about breaking cycles and letting go.

My friend Gemini thinks that while a resolution is a firm, linear decision to fix a habit or achieve a specific goal, a revolution is a radical shift in perspective that mirrors the Earth’s orbit. It represents a complete "turning around" of your identity or life direction, focusing on transformation and the wisdom gained from completing a cycle rather than just checking off a task.

My friend Chatty thinks that a New Year resolution is a promise to improve while staying in the same orbit, relying on effort and discipline, but a New Year revolution is a deeper shift—a change in gravity, identity, or perspective that alters how you move through life. Resolutions tweak behavior; revolutions redefine what pulls you, what you release, and who you choose to become as you complete another turn around the sun.

My friend Grok thinks that while a traditional New Year's resolution is a modest personal pledge—often fragile and short-lived—a New Year's revolution is a bold, transformative upheaval. It is not just tweaking habits but overthrowing old patterns entirely, sparking radical change in mindset, lifestyle, or direction to match the grandeur of our annual orbital triumph. Why settle for small adjustments when we could ignite a true personal revolution?

How do I now combine Chatty, Gemini, Grok and my perspectives into one defining statement of what a new year revolution is? A New Year revolution is a deep, complete, long-term turning of the mind (or mindset shift). My life revolves around God and my goal is to be a better person. I am loved because God loves me. I am worthy because God created me. I am going to succeed because the path to God is a path to success. My New Year revolution is to let God be my center, allowing a deep, lasting transformation of how I think, live, and love.

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