- English: https://bits.owocki.com/7KuQ9xmr
- Portugese: https://bits.owocki.com/P8u2Xnxo
- Chinese: https://bits.owocki.com/12u7kGx5
- Indonesian: https://bits.owocki.com/Wnum6LeB
- Hindi: https://bits.owocki.com/nOuKLAz4
- Italian: https://bits.owocki.com/jkuARzgb
- Persian: https://bits.owocki.com/geuEP6JY
- Japanese: https://bits.owocki.com/DOulK5wo
- Russian: https://bits.owocki.com/GGu75Ox5
- Spanish: https://bits.owocki.com/bLulZXo2
This file contains 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 owocki-513929 and I have contributed to the MACI v2 Trusted Setup Ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (processmessages_14-9-2-3) | |
Contributor # 48 | |
Contribution Hash: | |
afccf359 3af76f5d e0c96b43 93f7245a | |
b1d6a8ff d28169c8 1a86de1a 9431cdf5 | |
72f921fc 3d15252c 9fdde23b d678c127 | |
1456e26d 567d66eb d0744cee da0f60bd |
This file contains 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
I contributed to the clr.fund Trusted Setup Multi-Party Ceremony. | |
The following are my contribution signatures: | |
Circuit: qvt32 | |
Contributor # 15 | |
Hash: c088d83c 65d0ecd9 f366b4a1 bd8a37d7 | |
ccde7aab 4a410011 3dea068f 9af0c773 | |
166996ea b99c1792 cdbe50f3 d19046d3 | |
523782b0 c1023f10 22cc7010 e5322e9c | |
I hereby claim:
- I am owocki on github.
- I am owocki (https://keybase.io/owocki) on keybase.
- I have a public key ASCmJgmrGMEAQL3u-qhh0q1tW9B0NYo6Jzm-rVPvlNahNQo
To claim this, I am signing this object:
This file contains 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
nav_options = [ | |
{'label': 'All', 'keyword': ''}, | |
{'label': 'Security', 'keyword': 'security'}, | |
{'label': 'Scalability', 'keyword': 'scalability'}, | |
{'label': 'UI/UX', 'keyword': 'UI'}, | |
{'label': 'DeFI', 'keyword': 'defi'}, | |
{'label': 'Education', 'keyword': 'education'}, | |
{'label': 'Wallets', 'keyword': 'wallet'}, | |
{'label': 'Community', 'keyword': 'community'}, | |
{'label': 'ETH 2.0', 'keyword': 'ETH 2.0'}, |
This file contains 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
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
var letters = ["a","b","c","d","e","f","g","h","i","j","v","k","l","m","n","o","p","q","r","s","t","u","v","z"]; | |
async function inviteAllUsers() { | |
for(var i = 0; i < letters.length; i++){ | |
await sleep(300); | |
$('#channel_actions_toggle').click(); |
This file contains 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
``` | |
SELECT CONCAT(table_schema, '.', table_name), | |
CONCAT(ROUND(table_rows / 1000000, 2), 'M') rows, | |
CONCAT(ROUND(data_length / ( 1024 * 1024 * 1024 ), 2), 'G') DATA, | |
CONCAT(ROUND(index_length / ( 1024 * 1024 * 1024 ), 2), 'G') idx, | |
CONCAT(ROUND(( data_length + index_length ) / ( 1024 * 1024 * 1024 ), 2), 'G') total_size, | |
ROUND(index_length / data_length, 2) idxfrac | |
FROM information_schema.TABLES | |
ORDER BY data_length + index_length DESC | |
LIMIT 10 |