Skip to main content

a day in a life in makati - part 1

dec-20-2007
my wife i decided to go to makati to get the free bag given to credit card holder who purchased on a certain amount. yes - a free bag. hehehe!!! we took a cab on the way there.


it's a nice cab with a quiet driver. the air-con's not that good though. there's no tint which makes you feel the afternoon heat. but i should say the driver is very professional, and polite too. one thing i noticed in makati, traffic officers are very strict. the downside is they don't have enough pedestrian crossings to follow their orders. not to mention the lack of proper signs and symbols that you'll end up fraustrated while your feet are aching because you've already searched everywhere for the comfort room.




anyway, we got hungry and started looking for a place to eat. so, we decided the closest one stall will sufice - and it did. perks coffeehouse offered variety of their product which includes pizza, pasta and breads. i should say the cinnamon roll is fantastic, although my wife didn't like the ice cream roll. price is fair - the place is good - it's perfect if you don't have any other choice.





before i forget, there is these steps beside perks coffeehouse and nokia stall in glorietta where a lady tripped. the steps were uneven so the lady, i think landed on her knees. and from the looks of it, she was realy in pain. so guys from glorietta, pleas be aware of this one. i think it wont take all day to fix this.





we checked out some gadgets nearby and we're kinda disappointed that they don't have what we're looking for - the sony ericsson p900i. they said it was already phased out. they were offering the new p1i, but it's still not a match for the later. we found the palm tx and e2 a bit ok - physically, until we found out in cnet asia.



next, we visited the lower ground for the children's playground.as usual, it was packed with kids of all ages. it was ethan's first experience with playground so we decided to stay a little longer.



we, then headed to fridays for a good meal. and as expected the place is very good. although when we ask for another soda straw fr ethan to play with, we were given a wet one. so, we decided to let ethan play with other stuffs instead. sad, cause it's ethan's favorite toy when we eat out. also, two of the waiters were, we think, not in good terms. we just hope that they got to resolve their issue. it's not good for their business.

Popular

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

Using AI to Reinvent My Résumé and Try to Land an Interview

Creating a résumé is a tedious job to most. It's hard, time consuming and might even be the cause for rejection-if you don't know what you're doing. Fortunately, there are AI tools out there that created to assist, us humans, in generating résumé. It save's time, effort and you get higher chance of being hired.  But what if you're transitioning to an entirely different role? You don't have experience, no educational background to back it up. and no portfolio to show. What do you do? You come up with something creative. You come up with some that has never been done before. And, just wow them... or at least try. I was messaged in LinkedIn for a position that I was eyeing for in years. The HR guy reached out and we scheduled a call interview. We talked for more than half an hour and I was enlightened that my résumé is lack-luster. I was highly considered but the résumé is not at par because I have no job experience on AI, the certifications we're not included,...

Understanding Prompt Engineering Using First-Principles Thinking

Instead of memorizing prompt techniques, let’s break Prompt Engineering down to its fundamentals using First-Principles Thinking (FPT) . Step 1: What is Communication? At its core, communication is the process of: Encoding thoughts into words (speaker). Transmitting words to a receiver. Decoding the words into meaning (listener). Now, let’s apply this to AI. Step 2: How Do Machines Process Language? A Large Language Model (LLM) doesn’t "understand" words the way humans do. Instead, it: Converts words into tokens (mathematical representations). Predicts the next word based on probability. Generates responses that appear coherent based on patterns it has learned. Thus, prompt engineering is not just about writing sentences—it’s about giving instructions that optimize LLM prediction behavior . Step 3: What is a Prompt? A prompt is just an input instruction that guides an LLM’s response. But at the most basic level, a prompt must contain three thin...