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 nakedible-p-7881228 and I have contributed to the world-id-protocol MPC Phase2 Trusted Setup ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (oprfkeygenproof13) | |
| Contributor # 89 | |
| Contribution Hash: 3697817a e5cd7f6a 3940cf8b 6221ec87 | |
| e50dbc52 0a63b62f 9475c483 59f8436d | |
| 9e16cf7a 39bd6177 b29d9161 98b7fd37 | |
| 7f6d66b4 c5810fe5 5f0489d5 a7fc2848 |
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
| const c = new WebSocket( | |
| 'wss://api.poplatek.com/api/v2/terminal/35516/jsonpos', | |
| ['jsonrpc2.0'] | |
| ); | |
| c.send( | |
| JSON.stringify({ | |
| jsonrpc: '2.0', | |
| method: 'Purchase', | |
| params: { amount: 150, currency: 978, receipt_id: 15335 } | |
| }) |
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('http').createServer((req, res) => { | |
| const host = req.headers['x-forwarded-host'] || req.headers.host; | |
| res.setHeader('Location', `https://${host}${req.url}`); | |
| res.statusCode = 301; | |
| res.end(); | |
| }).listen(80); |
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 AWS = require('aws-sdk'); | |
| var http = require('http'); | |
| var httpProxy = require('http-proxy'); | |
| var express = require('express'); | |
| var bodyParser = require('body-parser'); | |
| var stream = require('stream'); | |
| if (process.argv.length != 3) { | |
| console.error('usage: aws-es-proxy <my-cluster-endpoint>'); | |
| process.exit(1); |