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
{ | |
"openapi": "3.1.0", | |
"info": { | |
"title": "nord", | |
"description": "", | |
"license": { | |
"name": "" | |
}, | |
"version": "0.4.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
Hey, I'm farazshaikh-2507850 and I have contributed to the RISC Zero STARK-to-SNARK Prover MPC Phase2 Trusted Setup ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (stark_verify) | |
Contributor # 62 | |
Contribution Hash: 58d72e49 8c99ce0c bac78005 c6f83b38 | |
e3b94f2b 529da17a 3d7864a1 eaebc021 | |
e60d7af9 39a06653 b4c34838 92ef777b | |
65246672 326bed9a 9781817f 86c11106 |
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
std::fmt::Display; | |
type TwoDSlice<'a, T> = [&'a mut [T]]; | |
fn print2dslice<T: Display>(two_d_slice: &Box<TwoDSlice<T>>) { | |
for (row_idx, row) in two_d_slice.iter().enumerate() { | |
println!(""); | |
for (col_idx, elt) in row.iter().enumerate() { | |
print!("[{} {} {}] ", row_idx, col_idx, elt); | |
} |
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
OpengrokCodeIndex Setup | |
Contents | |
-------- | |
Notes for future: Moving opengrok to home server | |
Download and install pre-reqs | |
Setup directory structure | |
Download and setup opengrok |
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 http = require('http'); | |
var server = http.createServer(function(req, res) { | |
// console.log(req); // debug dump the request | |
// If they pass in a basic auth credential it'll be in a header called "Authorization" (note NodeJS lowercases the names of headers in its request object) | |
var auth = req.headers['authorization']; // auth is in base64(username:password) so we need to decode the base64 | |
console.log("Authorization Header is: ", auth); |