15-09-2025

My Coding Journey

Today I want to share a bit about how I got into programming and what I've learned along the way.

The Beginning

It all started when I was curious about how websites work. I remember viewing the source code of my favorite websites and being amazed by all the HTML and CSS.

Learning JavaScript

JavaScript was tricky at first. Here's one of the first functions I learned:

function fibonacci(n) {
    if (n <= 1) return n;
    return fibonacci(n - 1) + fibonacci(n - 2);
}

Current Projects

These days I'm working on:

  • Building this blog system
  • Learning Node.js and Express
  • Exploring different CSS frameworks
  • Contributing to open source projects

Advice for Beginners

The best way to learn programming is by building projects. Don't just read tutorials – create something!

What's your coding journey like? I'd love to hear about it in the comments (once I implement those! 😄).