TechWithPlumHow to grow your first 10 million users in AWSScalability is always an important factor especially when your business is getting enlarging and having more users using your services…Jul 2Jul 2
TechWithPlumHow I passed AWS DevOps Professional Exam in one monthHello everyone! It’s been a while since my last article, as I was busy preparing for the AWS DevOps Engineer — Professional certification…Jun 111Jun 111
TechWithPlum4 Steps to set up Idempotency in AWSFirst of all, what is Idempotency? This is a concept from mathematics. In computing, an API call or operation is idempotent if it has the…Apr 12Apr 12
TechWithPlumUnderstanding Base64 Encoding: From Origins to ApplicationBase64 is an encoding method designed to transform any binary data into ASCII text. Originally termed “printable encoding,” it was not…Mar 26Mar 26
TechWithPlumUnlocking the Power of BacktrackingBacktracking is a powerful algorithmic technique for solving computational problems by incrementally building solution candidates and…Mar 18Mar 18
TechWithPlumBinary Trees Traversal Techniques in PythonBinary trees offer efficient ways to store and handle data hierarchically. This guide aims to classify binary tree problems and solutions…Mar 9Mar 9
TechWithPlumQuick Guide to the Sliding Window TechniqueThe sliding window technique stands as a prevalent approach for tackling a variety of algorithmic challenges, and it shares notable…Feb 25Feb 25
TechWithPlumLinking the Chains: A Deep Dive into Linked Lists in PythonWhat is linked list? It’s just a linear data structure where elements are stored in nodes, and each nodes point to next node, hence forming…Nov 3, 2023Nov 3, 2023
TechWithPlumUnlocking the Power of Stacks and QueuesStacks and queues are very common linear data structures with distinct characteristics, they are typically implemented using arrays or…Oct 2, 2023Oct 2, 2023
TechWithPlumThe Ultimate guide of Binary SearchBinary Search is a very useful algorithm where its input is a sorted list of elements. It provides time complexity of O(logN) which can…Sep 1, 2023Sep 1, 2023