Skip to main content

Collector

This is a chapter from my fifth book called Freedom

The quintessential collector. Have you witnessed one in your lifetime? These are collectors who embody the very essence of collecting. They are passionate, knowledgeable, and dedicated to their pursuit. I admire the commitment. I feel the passion. I am drawn to being a part of this. Why do people collect things? Certainly this is great as a hobby and gives you all the benefits of a hobby. If done correctly I suppose. Stress relief and mental well-being, learning new things, may involve physical health, then there is social connection and personal growth and accomplishment. Collecting things is a way of creating memories. For example some people who travel collect fridge magnets from the places they visit. Each magnet represents part of their personal map and a souvenir of the soul. Something to cherish and hold on to. The collector is making history and owns part of history. I figure it is linked back to our hunters and gatherers past.

I imagine being a collector gives the collector some form of freedom. Freedom of expression. Freedom to see value in the things they collect. Freedom to have something that defines who they are. Collectors are the curators of their own mini-museums. I read where Frida Kahlo said, "The freedom to collect liberates my spirit. It allows me to surround myself with objects that inspire creativity and ignite my imagination." I am seriously considering starting some type of collection. I do use the mymind app to collect interesting things I come across on the internet. But I do not know if that counts. I like the idea of collecting bottle caps. That is readily available and easily manageable and interesting. I could even document this online. And it gets me interested in trying new drinks and other bottled products. I already have a small collection of books so that is another option. My grandma (not my real one) Gwendolyn Stanford had a stamp collection. Some really old ones too. Wish I still had some of the stamps that I took from the collection. My neighbors in San Fernando growing up were stamp and coin collectors. In secondary school I had a small collection of basketball cards. The Chicago Bulls was my favorite team. I love and remember the thrill of opening a new pack of cards. You have to remember in those days we did not have the internet or smartphones. The offline world was where we found ourselves.

The art of collecting has been studied and there are even courses on the topic. Collections can create heirlooms. Collections can become really valuable over time. You become a member of a community of collectors that share a common interest. I started to watch a youtube video that counted down the twenty most weird collections. I stopped at the collection of toenails clippings. World records are even created from collecting things like the largest private cookbook collection with 4,239 books. There is a facebook group of local stamp collectors and I asked the question, "Why did you start collecting stamps?" One person said she grew up in it. Another person said her aunt worked in the Dutch embassy and that presented as an opportunity. Another person said her dad was the postmaster and encouragement came from him. Another person wanted to be a collector like his grandfather. What would be my reason for starting that bottle cap collection? I think I would like the freedom it brings. I would be stepping outside my comfort zone. It would bring new experiences. Maybe as a book writer I am already a collector. A collector of words. A book is a collection of words and stories. Collectors are as much storytellers as book writers. We are similar in that sense also.

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

What is important

Every now and again, I get reminded of the why. Why I have handed my life over to God. It is 3:08 p.m. and I have decided to write. Honestly, I feel like I could end this blog post right here. What more is there to say? God above all else. God is our compass on this journey called life. Everything else can become a distraction. Maybe not everything, but certainly many things. You get the point. What is important? What do we prioritise? What do we make time for? The answers look different for everyone. Our lives are different. We are tested differently. We are all products of our circumstances, and those circumstances vary from person to person. Yet God is the common thread across humanity and throughout time. God always was and always will be. One day, we will answer to God. We will give account to God. We cannot live without food, water, and oxygen, but all of those things come from God. So how can we live without God? How timely. I just received a notification from the Quranly app: 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...