In an attempt to use Go in the context of AWS, I wanted to see how Go would work with AWS Lambda. I decided to create a small project where the function would take an image and convert it to an ASCII art. Using Go for serverless functions Using Go for serverless functions makes a lot of sense. Speed of execution keeps the costs down and delivers the results quickly. When you are getting charged by the amount of resources you consume and the time it takes to complete your function, using a tec...