Skip to content

Instantly share code, notes, and snippets.

View owocki's full-sized avatar

Kevin Owocki owocki

View GitHub Profile
@owocki
owocki / attestation.txt
Created September 3, 2021 00:07
Attestation
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

Keybase proof

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:

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'},
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();
```
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