This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <WiFi.h> | |
| const char* ssid = "kpciot"; | |
| const char* password = "kpciot@5635"; | |
| // Initialize the client library | |
| WiFiClient client; | |
| int status = WL_IDLE_STATUS; | |
| char servername[]="ip-api.com"; // Google |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Delete all <non> | |
| docker system prune | |
| # Delete all containers | |
| docker system prune | |
| docker rm $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi $(docker images -q) |
NewerOlder