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
| Hey, I'm hansmrtn-282867 and I have contributed to the world-id-protocol MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (oprfkeygenproof13) | |
| Contributor # 44 | |
| Contribution Hash: bbeece6c 7c1fbad9 02444ce0 c63c7abc | |
| 20c3bc58 c8362b89 6881490d f88cdf73 | |
| d624daf9 62b44ef9 94767307 ef96aa7a | |
| 25738357 e143c30d eb179743 476e79dd |
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
| #!/bin/bash | |
| if [ "$#" -lt 2 ]; then | |
| echo "Usage: $0 <start_block> <end_block> [rpc_url]" | |
| echo "Example: $0 1000000 1000100 http://localhost:8545" | |
| exit 1 | |
| fi | |
| start_block=$1 | |
| end_block=$2 |
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
| from concurrent.futures import ThreadPoolExecutor, as_completed | |
| import requests | |
| import seaborn as sns | |
| import pandas as pd | |
| from web3 import Web3 | |
| # Set up Ethereum connection | |
| infura_url = 'https://sepolia.infura.io/v3/<YOUR_INFRUA_KEY>' | |
| web3 = Web3(Web3.HTTPProvider(infura_url)) |
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
| Hey, I'm hmrtn-282867 and I have contributed to the RISC Zero Groth16 Verifier MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (verify) | |
| Contributor # 6 | |
| Contribution Hash: 241408c0 d162ea38 68b4fd1a 6a7c99bc | |
| f57f66e6 8be90102 5ca1a69c c9bf0d27 | |
| 46dc0217 38b9b74d 03c8d5f5 05dc372b | |
| 3fff685e bd72094c 6f7612e9 8909d7b6 |
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
| // encrypt some data with public key cyrpto | |
| // decrypt with private key | |
| import { decrypt, encrypt } from "sjcl"; | |
| import { utils } from "ethers"; | |
| const ballot = { | |
| citizen: "0x0000000000000000000000000000000000000000", | |
| ballot: { | |
| hash1_of_project: 0, |
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
| package main | |
| import ( | |
| "crypto/sha1" | |
| "encoding/hex" | |
| "fmt" | |
| "strings" | |
| ) | |
| func main() { |
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
| /** | |
| .. | |
| ,*. | |
| .**, | |
| ,***. | |
| .,. ,***, | |
| .**, *****. | |
| .****. ,*****, | |
| .******, ,******, | |
| .*******. .********, . |
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
| #' Calculate NowCast | |
| #' | |
| #' As described | |
| #' \href{https://usepa.servicenowservices.com/airnow?id=kb_article_view&sys_id=fed0037b1b62545040a1a7dbe54bcbd4}{here}. | |
| #' | |
| #' @param x A numeric vector. | |
| #' @param n An integer window length. | |
| #' @param threshold A weight factor threshold. | |
| #' | |
| #' @return A numeric vector of length(x) |