Hello World

By ubaumann, Wed 01 July 2020, in category misc

Hello World

"Hello World" is the most used "program" for discovering a new programming language or to run the first piece of code. The purpose is to have a piece of code to run and check the environment. But of course this does not only apply to programming languages. So this blog post does not really provide useful information however it is my hello world.

I hope I will find the time to write many blog post about Infrastructure as Code, Network Automation and topics around. All the coming 101 blog posts should give a basic intro into a topic.

In [1]:
name = "infrastructure as code"
print(f"Hello World. This is the first {name} blog post")
Hello World. This is the first infrastructure as code blog post

The code above is a simple python hello world example. If we would connect the first time to a network device we would probably configure the hostname and an ip address. This would also be our hello world example.

I will be happy to receive feedback about my blog post and if you have topics you are interested in it feel free to let me know.