Skip to content

Instantly share code, notes, and snippets.

View anudit's full-sized avatar
🤌
Breaking and Buidling

Anudit Nagar anudit

🤌
Breaking and Buidling
View GitHub Profile
@anudit
anudit / semaphore-v4-ceremony_attestation.log
Created June 15, 2024 04:57
Attestation for Semaphore V4 Ceremony MPC Phase 2 Trusted Setup ceremony
Hey, I'm anudit-12015553 and I have contributed to the Semaphore V4 Ceremony.
The following are my contribution signatures:
Circuit # 1 (semaphorev4-1)
Contributor # 132
Contribution Hash: a4f6ab4a 12231fec 9022c0b0 4cbce42f
2afa4a75 62d63801 5e8e09e9 61f69451
d50b844e da0fab78 1d61a309 4a857669
d1df929f 7b418c33 3147e2b1 99b98835
@anudit
anudit / index.js
Last active January 5, 2024 10:28
TLSN error
/*! For license information please see index.js.LICENSE.txt */ ! function(e, t) {
if ("object" == typeof exports && "object" == typeof module) module.exports = t();
else if ("function" == typeof define && define.amd) define([], t);
else {
var n = t();
for (var r in n)("object" == typeof exports ? exports : e)[r] = n[r]
}
}(this, (() => (() => {
"use strict";
var e = {
@anudit
anudit / links.json
Created October 26, 2022 04:28
Walletconnect
{"pageProps":{"defiList":[{"label":"0x","url":"http://0x.org/","category":"Trading","description":"a protocol for p2p exchange of tokenized assets","logo":{"id":"att9t13bHgl1Xzpk6","width":390,"height":390,"url":"https://dl.airtable.com/.attachments/4ad708ebc02a481103da70ed1637a1fb/99392466/sHGUQ_0F.jpg","filename":"sHGUQ_0F.jpg","size":18136,"type":"image/jpeg","thumbnails":{"small":{"url":"https://dl.airtable.com/.attachmentThumbnails/6afc59fe8e16e9d585638f235ab2a91c/d9292fae","width":36,"height":36},"large":{"url":"https://dl.airtable.com/.attachmentThumbnails/4b241955c88d394519c648e6843d722c/3fa39b61","width":390,"height":390},"full":{"url":"https://dl.airtable.com/.attachmentThumbnails/9a67d8f9719032433b2fe657e29c3cda/f52d94f5","width":3000,"height":3000}}}},{"label":"0x Tracker","url":"https://0xtracker.com/","category":"Analytics","description":"a trade explorer for 0x protocol and decentralized ERC20 token price index","logo":{"id":"attJFh9y7MbzNpURq","width":200,"height":200,"url":"https://dl.airtabl
[
"zooverse-freemint.xyz",
"thedoggies-freemint.xyz",
"genopets.bond",
"meet.twitter-eventt22.com",
"server1.twitter-events22.com",
"missinngfrontier.xyz",
"uk.twitter-eventt22.com",
"moonminer.site",
"metamasksafe.com",
@anudit
anudit / command.txt
Last active February 1, 2021 04:58
Setup Node 14, npm, yarn, make on Ubuntu 20 or WSL
bash <(curl -sL ${https://gist.githubusercontent.com/anudit/194f764c922d5329fe70ebdb3de65de4/raw/d0eb310ddf86a214843a8fa5701595c53dcfc2e4/setup.sh})
@anudit
anudit / app.py
Created May 17, 2020 12:59
Minimal python file upload
from flask import Flask, render_template, request
from werkzeug import secure_filename
app = Flask(__name__)
@app.route('/upload')
def upload_file():
return render_template('upload.html')
@app.route('/uploader', methods = ['GET', 'POST'])
def uploader():
@anudit
anudit / Counter.sol
Created February 1, 2020 13:04
A simple Solidity Contract for testing.
pragma solidity 0.4.24;
contract Counter {
int private count = 0;
event counterIncremented(int indexed cnt, uint _time);
event counterDecremented(int indexed cnt, uint _time);
function incrementCounter() public {
count += 1;