Let’s say we have a simple smart contract MemoryToken, it can be even a stub which has only 1 field name.
pragma solidity ^0.5.0;
contract MemoryToken {
string public name = "Memory token";
}
Festina Lente
Let’s say we have a simple smart contract MemoryToken, it can be even a stub which has only 1 field name.
pragma solidity ^0.5.0;
contract MemoryToken {
string public name = "Memory token";
}
Good code is following 3 main concepts:

This article describes the general idea and parts of Kubernetes as a technology.
Kubernetes is open-source automation platform for managing containerised workloads and services, designed for automating, deploying, scaling, operating the app containers.
Continue reading “Kubernetes – Basics”