Hello World — A New Beginning

Every programmer's first program. Every journey's first step.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

def hello_world():
    print("Hello, World!")
    print("Welcome to my blog.")

if __name__ == "__main__":
    hello_world()

What's This Blog About?

Technical notes on autonomous systems, sensor fusion, and robotics. Things I'm working on, learning, or find interesting.

Why Write?

To learn by teaching. To document solutions. To share what works (and what doesn't).

$ ./hello_world.py

Hello, World!
Welcome to my blog.