- AWS – Elastic Container Service(ECS)
ECS with AWS CLI Get list of clusters within ECS aws ecs list-clusters –profile {profile-name} // output { “clusterArns”: [ “arn:aws:ecs:us-east-1:123456789:cluster/server-api”, “arn:aws:ecs:us-east-1:123456789:cluster/server-web” ] } Get list of services within a cluster aws ecs list-services…
- Stack
Stack is a simple data structure that allows adding and removing elements in a particular order. Every time an element is added, it goes on the top of the stack and the only element that can be removed is the element that is at the top of the stack, just like a pile of objects. A […]
- Javascript Module
JavaScript programs start off pretty small almost every time. Not until your project grows and grows so large that your scripts may start to look like spaghetti code. At this point, your code has to be broken down into separate modules that can be imported where needed. The good news is that modern…
- Linked List
Linked List is a very commonly used linear data structure which consists of group of nodes in a sequence. Each node holds its own data and the address of the next node hence forming a chain like structure. Linked Lists are used to create trees and graphs. Advantages of Linked List Linkedlist is…
- Multithreading
1. What is Multithreading? Imagine a restaurant with a single waiter. One waiter takes an order, walks to the kitchen, waits for the food, brings it back, then moves to the next table. During peak hours, customers wait forever. Now imagine the same restaurant with five waiters. While one waiter is…