$ minikube version
minikube version: v1.7.1
Some recommended books for improving as a software developer
Most software books are too language specific and go out of date too quickly. What I find has stayed with me are books about bigger concepts, such as systems thinking and complexity, and also so-called "soft skills" such as management and psychology.
These are all really about developing empathy for other people :)
| -- This is a starter contract, based on the Game contract, | |
| -- containing the bare minimum required scaffolding. | |
| -- | |
| -- What you should change to something more suitable for | |
| -- your use case: | |
| -- * The DataScript type | |
| -- * The Redeemer type | |
| -- | |
| -- And add function implementations (and rename them to | |
| -- something suitable) for the endpoints: |
| -- This is a starter contract, based on the Game contract, | |
| -- containing the bare minimum required scaffolding. | |
| -- | |
| -- What you should change to something more suitable for | |
| -- your use case: | |
| -- * The DataScript type | |
| -- * The Redeemer type | |
| -- | |
| -- And add function implementations (and rename them to |
| -- This is a starter contract, based on the Game contract, | |
| -- containing the bare minimum required scaffolding. | |
| -- | |
| -- What you should change to something more suitable for | |
| -- your use case: | |
| -- * The DataScript type | |
| -- * The Redeemer type | |
| -- | |
| -- And add function implementations (and rename them to |
| -- This is a starter contract, based on the Game contract, | |
| -- containing the bare minimum required scaffolding. | |
| -- | |
| -- What you should change to something more suitable for | |
| -- your use case: | |
| -- * The DataScript type | |
| -- * The Redeemer type | |
| -- | |
| -- And add function implementations (and rename them to |
| -- A game with two players. Player 1 thinks of a secret word | |
| -- and uses its hash, and the game validator script, to lock | |
| -- some funds (the prize) in a pay-to-script transaction output. | |
| -- Player 2 guesses the word by attempting to spend the transaction | |
| -- output. If the guess is correct, the validator script releases the funds. | |
| -- If it isn't, the funds stay locked. | |
| import qualified Language.PlutusTx as PlutusTx | |
| import Language.PlutusTx.Prelude |
| -- This is a starter contract, based on the Game contract, | |
| -- containing the bare minimum required scaffolding. | |
| -- | |
| -- What you should change to something more suitable for | |
| -- your use case: | |
| -- * The DataScript type | |
| -- * The Redeemer type | |
| -- | |
| -- And add function implementations (and rename them to |