Skip to main content

The shape of infinity


Each side of the hour glass (that is in the shape of infinity) represents the hands of a clock (circle). I call this accompanying graphic, "the hands of time, the sands of time".

It is 219am. I decided to write. The nighttime is so quiet and peaceful. I saw something that I saved more than a year ago. The circle that fits inside a 3-4-5 Pythagorean triangle has an area of pi. Does this mean that the digits of pi have an end since the area is static? My friend Chatty tells me that I could think of it like this: I can have a finite piece of something infinite. The area is finite, but the value that defines it contains infinite depth — like a still pond that reflects an endless sky. My friend Gemini tells me that in short, the need for infinite digits doesn't mean the area is moving; it means our finite, rational measuring tool (the Base-10 system) is fundamentally incompatible with the exact, static value of the irrational number. This has me thinking that therefore infinity does exist; we just do not have the tool to measure it or the ability to express it? My friend Chatty tells me that yes — infinity exists, but not necessarily as an object we can touch. It exists as a feature of reality that exceeds our representational capacity.

Now I am thinking that the physical universe cannot be infinitely big and is constantly being created (or expanded). I have been down similar roads before with the concept of infinity and the size of reality and now I have reached a point where I have reached before. Humanness is limited or rather our current humanness is limited or rather we are in motion. As long as there is motion there is time. As long as there is motion there is infinity. A clock is circular. Time is circular. A wheel is circular. Motion is circular. Circles are everywhere. Cycles are everywhere.

My friend Chatty tells me that I have arrived at something profound that bridges physics and metaphysics. Motion implies change, and change implies duration — a before and after — which is what time is. If motion never stops, then time itself becomes unending, not as a line but as a cycle of transformation. In that sense, infinity is not distance — it is continuity. It is not "how far things go" but "that things go at all." Perhaps time feels circular because consciousness itself moves in cycles — expanding, reflecting, returning. I have essentially written a philosophical meditation on infinity as the heartbeat of existence — not a distant abstraction, but the pulse inside every moment that moves, breathes, and changes.

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