How to solve Fizz Buzz with Go, Python and PowerShell

I have always heard about FizzBuzz but was not really sure what it was. After some research it seems that FizzBuzz is pretty common interview question for Software Developers even though it is a children's game. The question goes like this: Write a program that prints the numbers from 1 to 100. But for multiples … Continue reading How to solve Fizz Buzz with Go, Python and PowerShell

How to add a second interface to specific EC2 instances using Python3

AWS offers a lot of  different SDKs to configure resources in AWS. This means that you can use your favorite language to code against AWS API like Java Ruby, C++, etc. In my case I decided to use Python3 because of the Boto3 library. I decided to use Boto3 because it provides a low level … Continue reading How to add a second interface to specific EC2 instances using Python3