Thoughts, Learnings & Realisations

An investment in knowledge always pays the best interest

Benjamin franklin
  • Supersonic Java Lambdas using Quarkus

    For people not interested in reading the prose, here is the complete source code. The source code contains an AWS lambda function to generate a PDF out of a HTML template. Introduction Traditional Java stacks were engineered for applications with long startup times and large memory requirements in a world where the cloud, containers, andMore

    Read further..

  • Lambda Authorizer – AWS SAM

    In my previous post, I have shared how to create a simple serverless lambda function using AWS SAM cli. In this post, I will explain on how to create a secure lambda Rest API. Please note that there are different mechanisms for authentication and authorization of REST Apis. And Lambda authorizer is one such mechanismMore

    Read further..

  • Say “Hello” to AWS Serverless Application Model

    What is Serverless? The term “serverless” means that your code runs on servers, but you do not need to provision or manage these servers. It is a cloud-native development model that allows developers to build and run applications without having to manage servers. With normal cloud computing using VMs or containers, you have to doMore

    Read further..