Skip to content

Instantly share code, notes, and snippets.

View magnus513's full-sized avatar
😀
coding fun stuff...

Magnus Olsson magnus513

😀
coding fun stuff...
View GitHub Profile
@magnus513
magnus513 / machine.js
Last active November 23, 2020 14:24
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'ProCheck',
initial: 'pending',
context: {
dog: null
},
states: {
pending: {
on: {
START: 'poa'
@magnus513
magnus513 / 1_Storage.sol
Created July 27, 2020 12:47
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.26+commit.4563c3fc.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.7.0;
/**
* @title Storage
* @dev Store & retreive value in a variable
*/
contract Storage {
uint256 number;