Blogs
Useful AWS Snippets
Here are some useful AWS snippets
Sort Array by Another …
Problem: I have a large array of objects that I want to be able to easily sort based on the order of another array. For example: I have an array of objects that look like: [...{ key: "a", value: "hi" }, { key: "b", value: "bye" }...] And I want sort the array by …
Useful Docker Snippets
Here are some useful Docker snippets Containers Task Command Kill all running containers docker kill $(docker ps -q) Stop all containers docker stop $(docker ps -a -q) Remove all containers docker rm $(docker ps -a -q) Remove single container docker stop < container id > Images Task Command …