Skip to content

Instantly share code, notes, and snippets.

View imylomylo's full-sized avatar

Captain Mylo imylomylo

View GitHub Profile
@imylomylo
imylomylo / regtest1.txt
Created August 6, 2018 15:38
regtest generate 105 blocks, no coins
```
root@4549c288025e:/# /komodo/src/komodod -ac_cc=1 -addressindex=1 -spentindex=1 -ac_supply=100000000 -pubkey=033ace50aedf8df70035b962a805431363a61cc4e69d99d90726a2d48fb195f68c -regtest &
[1] 17
root@4549c288025e:/# running as notary.37 komodopioneers_SH
call komodo_args.(/komodo/src/komodod) NOTARY_PUBKEY.(033ace50aedf8df70035b962a805431363a61cc4e69d99d90726a2d48fb195f68c)
initialized at 1533568984
finished loading blocks
height.0 slowflag.1 possible.0 cmp.0
[] PASSPORT iteration waiting for KOMODO_INITDONE
[] PASSPORT iteration waiting for KOMODO_INITDONE
@imylomylo
imylomylo / index.html
Created March 30, 2018 00:06 — forked from jdarling/index.html
Reuseable D3 MindMap (left/right tree)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<style type="text/css">
.node circle {
cursor: pointer;
fill: #fff;
stroke: steelblue;
@imylomylo
imylomylo / data.json
Created March 29, 2018 23:04 — forked from jdarling/data.json
D3 MindMap
{
"name": "Root",
"children": [
{
"name": "Branch 1",
"children": [
{"name": "Leaf 3"},
{"name": "Leaf 4"}
]
},