Skip to main content

returning to the scene of the crime

it's been a while since i created a web page. and now im like a returning prodigal son aiming to get back what i lost. getting thru the same process i walked thru back then - studying. i visited few sites ive created and found them to be boring so i wont put their links here. hahaha! then i stumble upon my site(i want to call it that) - http://www.geocities.com/orpheum_ph/ and remembered that i have created something for myself... a tool for web design. something to start with... and i would like to tap my back for that. and so, i decided to get back into blogging and pst this.

hopefully, i would complete my tool and maybe start on a portfolio. wish me luck!

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