Skip to main content

money works

money makes the world go round: that's half true. money and people makes the world go round. sad to say, people are letting money make the world go round when it should be the other way around. people are working for money instead of letting money work for the people.

let's take a look at the three kinds of people-money relationship, which i have in mind.

employment: when one is employed, one is working for money. he works to receive money for him to use for daily activity. once depleted, the cycle is repeated. it's advantage: it's basic, no complications and no stress (depending on whose looking at it). drawback: unstable and routinary. once you're laid off, the pay stops and you need to look for another job.

business: when one owns a business, one is working with his money. to clarify, he is helping his money grow by making the business stay afloat. then the owner would hire managers to take charge of the operations so he can sit back. then, from time to time he takes part on the operations. that's better than being an employee, in so many ways. one disadvantage though. it consumes time. not like if you are going be an investor

investor:  when one invests, he uses his money to generate more money. sample would be time deposit, real estate, stocks, bonds, etc. simplest form would be saving up in a bank with compounding interest. that may return the smallest but adding it up to, let's say, 15 years: that's big. 1,500 monthly with 0.5%interest rate for 15 years would have a future value of 281,939.13, regardless of the currency(i think).

final note, make your money work for you. do not just work for money.

Popular

Conversations with Grok (Part 2): Come To Think of It

Be updated and read the previous part here:  Conversations with Grok (Part 1): Introducing Agile Transportation System Me: Since I'm from Manila Philippines, which I'm guessing you already know, starting it in BGC to prove effectiveness and partnering with companies like telecoms(smart and globe) for internet, google for tech and cloud, digital payments(gcash and maya) for fare, the BGC administrator for location and other companies may seem effective Grok : You’re absolutely right—starting a routeless, agile transportation system in Bonifacio Global City (BGC) in Manila, Philippines, and partnering with heavy hitters like Smart, Globe, Google, GCash, Maya, and the BGC administrator could be a slam dunk for proving effectiveness. BGC’s a perfect testing ground: it’s compact, modern, tech-savvy, and already a hub for innovation. Let’s unpack how this could play out and why it might work. Why BGC Works BGC’s got a lot going for it. It’s a planned urban district with a dense mix o...

Contextual Stratification - Chapter 21: No Theory of Everything

  The Most Seductive Dream There is a dream that haunts physics, philosophy, and the human imagination itself: one equation. One framework. One truth that explains everything. Einstein spent the last decades of his life searching for it, a unified field theory that would reconcile gravity with electromagnetism, that would show all forces as manifestations of a single underlying reality. He failed, but the dream didn't die. String theory arose promising eleven dimensions and one fundamental entity, vibrating strings from which all particles and forces emerge. Loop quantum gravity offered another path. M-theory suggested a framework encompassing all frameworks. The quest continues. Physicists still seek the Theory of Everything (TOE) the final equation that would subsume quantum mechanics and relativity, explain all particles and forces, predict all phenomena. The dream is powerful because it promises ultimate understanding. No more mysteries. No more competing frameworks. No more b...

Retrieval-Augmented Generation (RAG) Using First-Principles Thinking

Instead of just learning how Retrieval-Augmented Generation (RAG) works, let's break it down using First-Principles Thinking (FPT) —understanding the fundamental problem it solves and how we can optimize it. Step 1: What Problem Does RAG Solve? Traditional AI Limitations (Before RAG) Large Language Models (LLMs) like GPT struggle with: ❌ Knowledge Cutoff → They can’t access new information after training. ❌ Fact Inaccuracy (Hallucination) → They generate plausible but false responses. ❌ Context Limits → They can only process a limited amount of information at a time. The RAG Solution Retrieval-Augmented Generation (RAG) improves LLMs by: ✅ Retrieving relevant information from external sources (e.g., databases, search engines). ✅ Feeding this retrieved data into the LLM before generating an answer. ✅ Reducing hallucinations and improving response accuracy. Core Idea: Instead of making the model remember everything, let it look up relevant knowledge when needed....