storing [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ]
:
...
const Diamond = artifacts.require("Diamond"); // can this return a special Diamond abstraction? | |
const MyToken = artifacts.require("MyToken"); | |
// - create a config to enable the EIP-2535 Diamond spec | |
// - when that config is enabled, check for the Diamond EIP-165 functions (so we know when we have a Diamond) | |
// - add special behavior to the @truffle/contract abstraction when EIP-2535 is detected | |
module.exports = async (deployer) => { | |
await deployer.deploy(Diamond); | |
const diamond = await Diamond.deployed(); |
// dummy definitions | |
type BN = { "big-number": number }; | |
type Big = { "big": number; "dot": number }; | |
/* | |
* high-level: define a type that maps configurable things to allowable option types | |
*/ | |
// main type (extended from in generics) | |
type FormatConfig = { |
@startuml | |
actor User | |
participant TestingFramework | |
User -> TestingFramework : begin test | |
activate TestingFramework | |
create control EE | |
TestingFramework -> EE : load EE |
Compiling ./contracts/Example.sol... | |
Compiling ./contracts/Migrations.sol... | |
Writing artifacts to ./build/contracts | |
Migrations dry-run (simulation) | |
=============================== | |
> Network name: 'ropsten-fork' | |
> Network id: 1337 |
### Keybase proof | |
I hereby claim: | |
* I am gnidan on github. | |
* I am gnidan (https://keybase.io/gnidan) on keybase. | |
* I have a public key whose fingerprint is 77DB BA82 D20B 39C8 3803 3217 F107 5431 BAD2 5C45 | |
To claim this, I am signing this object: |
games | |
===== | |
lightweight | |
----------- | |
- **6 Nimmt** | |
- **Jungle Speed** | |
middleweight |
_Text SEGMENT PUBIC USE16 | |
org 0 | |
EntryPoint: | |
jmp 0x07C0:START | |
bootMsg db 'Feed me disk sectors, AH AM HUNGRAH',10,13,0 | |
allYourBase db 10,13,'BUUUUURP :-d',10,13,0 | |
om db 'om ', 0 | |
nom db 'nom ', 0 |
### Keybase proof | |
I hereby claim: | |
* I am gnidan on github. | |
* I am gnidan (https://keybase.io/gnidan) on keybase. | |
* I have a public key whose fingerprint is 6367 610C 69EB 17CE 8E31 C08E 821C 6650 1D62 1E63 | |
To claim this, I am signing this object: |
#!/bin/bash | |
echoerr() { echo "$@" 1>&2; } | |
upper() { echo "$@" | tr [a-z] [A-Z]; } | |
if [ $# -lt 5 ]; then | |
echoerr "Exports data from mysql database in tables matching a like pattern e.g. 'table_%'" | |
echoerr "Usage: $0 host dbname dbuser dbpass pattern" | |
exit 1 |