// Author: Maduranga Senadheera
// Context: Why I’m Documenting My Journey 
//          Toward AI Engineering
// Status: Curious

let yearsOfExperience = 10+;
let currentRole = "Full-Stack Developer";
let curiosityLevel = "increasing";
let aiHype = false;

function startJourney() {
  print("Building production systems..")
  
  if (curiosityLevel === "increasing") {
    print("Asking uncomfortable questions..")
    learn("AI fundamentals");
  }
}

function learn(topic) {
  while (!understood(topic)) {
    read();
    buildSmallThings();
    breakThings();
    askWhy();
  }
}

function understood(topic) {
  return false; // honesty matters
}

function writeBlog() {
  // Not a tutorial
  // Not expert advice
  // Just notes from the journey
  print("Writing to think clearly");
}

startJourney();
writeBlog();

// Output:
// "No rush. No hype. Just progress."