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 RadNi-18350183 and I have contributed to the Iden3 Circuits V3 Ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (authv3) | |
Contributor # 11 | |
Contribution Hash: e00d4d3c 44acdb9c ec0a09c5 101b40a4 | |
f905e795 c914820f 306c76a4 b584640f | |
e3d67a42 8a98f70c cd3ea802 b517f577 | |
ba98bda6 11d2d63c 3c1c75ea 3c91a945 |
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
pragma solidity ^0.8.0; | |
import "./Nil.sol"; | |
/* | |
An implementation of atomic swaps in the async programing model | |
*/ | |
contract Swap is NilBase{ | |
// Any instance of swap requests are held in an `escrow` struct | |
struct escrow { |
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
//require('events').EventEmitter.defaultMaxListeners = 0 | |
var Crawler = require("crawler"); | |
var baseURLS = ['http://www.google.com/','http://www.yahoo.com', 'http://www.amazon.com', 'http://www.sharif.ir/home']; | |
var depth = 3 | |
var urls = new Set() |
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
/* | |
* Demonstrate a trivial filesystem using libfs. | |
* | |
* Copyright 2002, 2003 Jonathan Corbet <[email protected]> | |
* This file may be redistributed under the terms of the GNU GPL. | |
* | |
* Chances are that this code will crash your system, delete your | |
* nethack high scores, and set your disk drives on fire. You have | |
* been warned. |
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 had now been added to the git repo | |
https://github.com/darrenjs/openssl_examples | |
... which also includes a non blocking client example. | |
------------------------------------------------------------------------------- | |
ssl_server_nonblock.c -- Copyright 2017 Darren Smith -- MIT license |