Cannot kill container: : tried to kill container, but did not receive an exit event

docker

I have running docker container, but when I want to access the app it did not respond anything. Then I tried to stop the running docker containers and restart them. Unfortunately, I got After several attempts, I still got the same error message. Then I decided to restart the Docker instead of restart the container … Read more

How to format a number as a currency value in JavaScript

JavaScript

Learn how to convert a number into a currency value, using the Vanilla JavaScript Say you have a number like $10, and it represents the price of something. You want to transform it in to $10.00 directly in the input form If the number has more than 3 digits, however, it should be displayed differently, for example 1000 should … Read more