This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(jsonlite) | |
library(data.table) | |
library(gganimate) | |
library(magick) | |
pd <- lapply(readLines("~/Downloads/pb.log"), fromJSON) | |
pd_sample <- pd[[1]] | |
messages <- pd %>% | |
map(function(x) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I contributed to the Semaphore Trusted Setup Multi-Party Ceremony. | |
The following are my contribution signatures: | |
Circuit: semaphore16 | |
Contributor # 63 | |
Hash: 3c21475b 78483fb0 bae7a163 0b59b2c7 | |
ed624881 2670571b 11543f32 c4ae60c9 | |
480b64c9 a55904ad 0b4667a9 84e9f360 | |
aace1ee9 3884d606 cf4c652b a460d6b9 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
did:3:bafyreibdxhz2atfdbfsuov4otq4sqtf4bcx2fqwbdlijp46xl6rl5pu6a4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<meta> | |
<title>Malta</title> | |
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
</meta> | |
<body> | |
<div id="viz"></div> | |
</body> | |
<script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var vv = window, | |
w = vv.innerWidth, | |
h = vv.innerHeight; | |
var svg = d3.select("#animviz") | |
.append("svg") | |
.attr("width", w) | |
.attr("height", h); | |
svg.append("g").attr("class", "links"); |