mkdir osm
wget -O osm/planet.mbtiles https://hidrive.ionos.com/api/sharelink/download?id=SYEgScrRe
podman run -ti --rm -p 9000:9000 --name sms -v $(pwd)/osm/:/data/ registry.gitlab.com/markuman/sms:latest
firefox http://localhost:9000
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
| pragma solidity ^0.4.15; | |
| contract StringsAndBytes { | |
| /* --- public variables for storing tests results */ | |
| string public lastTestStringResult; // | |
| bytes32 public lastTestBytes32Result; // | |
| bytes public lastTestBytesResult; // bytes: dynamically-sized byte array | |
| bool public lastTestBoolResult; // |