This file contains 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 | |
#!/bin/bash | |
echo "Waiting for docker daemon to start up:" | |
until docker ps 2>&1| grep STATUS>/dev/null; do sleep 1; done; >/dev/null | |
docker ps -a | grep sandbox-hdp | |
if [ $? -eq 0 ]; then | |
docker start sandbox-hdp | |
else |
This file contains 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
import Array "mo:base/Array"; | |
import Blob "mo:base/Blob"; | |
import Buffer "mo:base/Buffer"; | |
import Nat8 "mo:base/Nat8"; | |
import Text "mo:base/Text"; | |
import Time "mo:base/Time"; | |
import Base64 "mo:encoding/Base64"; | |
import JSON "mo:json/JSON"; | |
import CRC32 "mo:hash/CRC32"; |