Unleashing Scalability and Cost-Efficiency: AWS Lambda and the Serverless Revolution In the ever-evolving world of cloud computing, the concept of serverless architecture has emerged as a game-changer, disrupting traditional application deployment models. At the forefront of this revolution is AWS Lambda, a pioneering serverless computing service from Amazon Web Services … [Read more...] about Embracing the Power of Serverless with AWS Lambda
programming
Revisiting Algorithms
I think this is the 7th time I'm revisiting the algorithms now. I don't know what happens after a really good start, I tend to get busy and lose midway. I really miss the old college days when I had all the time in the world. No worries about the work, food, home, shelter... everything was taken care of by my parents. It's true that with experience comes responsibility... … [Read more...] about Revisiting Algorithms
LinkedList Implementation in Java (TDD WAY)
Hey buds, In this article, I’m going to implement a linkedlist in java and compare our linked list on various performance benchmarks in comparison with the original collections linkedlist. Our custom linked list will not contain as many features as offered by the collections framework but it will surely contains all the basic features which are required to be a part of any … [Read more...] about LinkedList Implementation in Java (TDD WAY)
A Beginners Guide to Understand Collections in JAVA
Hello friends, in this article I’ll try to make collections very easy for you to understand. This is one of the easiest and yet misunderstood concept for the beginners. It is pretty easy to get started with collections but to understand the use of collections takes some experience and understanding of the real world problem modelling. What I mean to say here is that, beginners … [Read more...] about A Beginners Guide to Understand Collections in JAVA
Thinking In OOPs (Object Oriented Programming)
Thinking in OOPS Object Oriented Programming is one of the most misunderstood concepts in today’s world. It may seem a hard implication at this age where every other programmer is using object oriented language to structure their code, but do we really understand OOPS and the way it must be used to solve our problems better. What is OOPS? Do you know the full … [Read more...] about Thinking In OOPs (Object Oriented Programming)