Hello World — Welcome to My Blog
First post on my blog. Here's what to expect.
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!