Uncovering the Mechanics: My Journey from Toys to Code
As a child growing up in Cebu City, I was always driven by an insatiable curiosity. I would spend hours with my toys, not playing with them in the usual way but taking them apart. Remote-controlled cars were my favorite; I couldn't resist the urge to uncover what powered their movements. I remember carefully unscrewing the tiny bolts and peering into the intricate gears and circuits, marveling at how something so small could create such motion.

The Turning Point: Solving Puzzles
This fascination with mechanics evolved into a knack for problem-solving. Whenever a toy broke, I would be the first to investigate, determined to bring it back to life. Each fix brought a sense of accomplishment and a deeper understanding of how things worked. Little did I know, these small victories were preparing me for something greater.
Discovering Code: The Next Frontier
Fast forward to high school—this was where everything changed. It was my third school, and I had my first encounter with a computer. Unlike my mechanical explorations, this machine invited me to solve problems with logic and creativity. Programming felt like opening up a new toy, but instead of gears and wires, it was a world of syntax and algorithms. I was hooked.

Connecting the Dots: From Toys to Software
Looking back, I realized that my childhood passion for uncovering mechanisms wasn't just about curiosity; it was about creating solutions. That same drive pushed me to master programming and build tools that make life easier for others. Today, as a software developer, I channel that same spirit of discovery into every project I undertake.
import React from 'react';
const Portfolio = () => {
return (
<div className="min-h-screen bg-gray-100 font-sans">
<header className="bg-sky-600 py-6 text-center text-white">
<h1 className="text-3xl font-bold">Dan Catindoy</h1>
<p className="text-lg">Turning Curiosity into Innovation</p>
</header>
<main className="mx-auto max-w-4xl p-6">
<section className="mb-6">
<h2 className="mb-4 text-2xl font-bold text-sky-600">About Me</h2>
<p className="text-gray-700">
Growing up in Cebu City, I was fascinated by how things worked. From
dismantling remote-controlled cars to uncovering their mechanisms,
my curiosity was insatiable. This passion evolved into a love for
programming, shaping my career as a software developer.
</p>
</section>
<section>
<h2 className="mb-4 text-2xl font-bold text-sky-600">Projects</h2>
<div className="mb-4 rounded-lg bg-white p-4 shadow-md">
<h3 className="text-xl font-semibold text-sky-600">
Medical Inventory System
</h3>
<p className="text-gray-700">
Built a system to manage medical supplies for a hospital in Utah
using modern web technologies.
</p>
</div>
<div className="mb-4 rounded-lg bg-white p-4 shadow-md">
<h3 className="text-xl font-semibold text-sky-600">
Ceretrack Project Management Tool
</h3>
<p className="text-gray-700">
A project management tool to track transactions and duty hours,
developed with Laravel and PHP.
</p>
</div>
<div className="rounded-lg bg-white p-4 shadow-md">
<h3 className="text-xl font-semibold text-sky-600">
Mobile App Development
</h3>
<p className="text-gray-700">
Migrated from Xamarin to PhoneGap Cordova for better flexibility
and community support.
</p>
</div>
</section>
</main>
</div>
);
};
export default Portfolio;
From dismantling toys to writing code, my journey has always been about solving puzzles and uncovering how things work.
If you share a similar curiosity or have a challenge that needs solving, let's collaborate and turn ideas into impactful solutions!