Welcome to my blog! 🎉

What to expect

I’ll be posting about:

  • Programming tips and tricks
  • Useful code snippets
  • Tool configurations
  • Things I learn along the way

A quick example

Here’s a simple Python snippet to get things started:

def greet(name: str) -> str:
    """Return a friendly greeting."""
    return f"Hello, {name}! Welcome to zharif.my"

print(greet("World"))

Stay tuned for more posts!