My Coding Journey

December 15, 2025 (2mo ago)

My Coding Journey

Welcome to my first real blog post! I wanted to share my journey as a developer and some insights I've gained.

Getting Started

When I first started coding, I was overwhelmed by the sheer amount of technologies available. Here's what I wish I knew:

Key Technologies I've Learned

Frontend

Backend

Code Example

Here's a simple React component I built recently:

interface GreetingProps {
  name: string;
  age?: number;
}
 
const Greeting: React.FC<GreetingProps> = ({ name, age }) => {
  return (
    <div className="p-4 bg-blue-100 rounded-lg">
      <h2>Hello, {name}!</h2>
      {age && <p>You are {age} years old.</p>}
    </div>
  );
};
 
export default Greeting;

What's Next?

I'm currently exploring:

Thanks for reading! Feel free to reach out if you have any questions.