Your Name
from datetime import date today = date.today() name = "Your Name" username = "@username" birthday = date(2000, 1, 1) if today == birthday: print(f"🎉 Happy Birthday, {name}! Level up unlocked!") party_mode() spawn_confetti('🧁') elif today.weekday() in (5, 6): print("🌿 Weekend vibes — rest, play, repeat.") recharge() else: print("💻 Keep coding, keep growing.") work() print("✨ End of script — beginning of greatness.")