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
| (function () { | |
| // Helpers | |
| const cleanText = (el) => (el ? (el.innerText || el.textContent || "").replace(/\s+/g, " ").trim() : ""); | |
| const scrapeMentions = () => { | |
| const nodes = Array.from(document.querySelectorAll('div[data-testid="cellInnerDiv"] article[data-testid="tweet"]')); | |
| const items = []; | |
| for (const tw of nodes) { | |
| try { |
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
| /** | |
| * Example Usage: | |
| * setDelays(60, 140); | |
| * startSimulation(); | |
| * stopSimulation(); | |
| */ | |
| /** | |
| * Example Usage #2: | |
| * promptAndStart(); |
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
| from bip_utils import Bip39SeedGenerator, Bip44, Bip44Coins, Bip44Changes | |
| from bip_utils.bip.bip44_base import Bip44Base | |
| # Mnemonic and passphrase (use a secure method to generate and store these) | |
| mnemonic = "aerobic exercise mechanic clerk bus mother pact pipe easily file job control" | |
| bip39_passphrase = "" # Optional, can be empty | |
| # Derivation path parameters | |
| account_index = 0 | |
| change_type = Bip44Changes.CHAIN_EXT |
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
| Stamp | Corresponding Score | |
|---|---|---|
| HolonymGovIdProvider | 4 | |
| SnapshotProposalsProvider | 2.82 | |
| GnosisSafe | 2.65 | |
| Lens | 2.45 | |
| 2.45 | ||
| EthGasProvider | 2.4 | |
| GitcoinContributorStatistics#numGrantsContributeToGte#10 | 2.3 | |
| CivicLivenessPass | 2.25 | |
| CivicUniquenessPass | 2.25 |
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
| Row | Word | |
|---|---|---|
| 1 | abandon | |
| 2 | ability | |
| 3 | able | |
| 4 | about | |
| 5 | above | |
| 6 | absent | |
| 7 | absorb | |
| 8 | abstract | |
| 9 | absurd |
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
| function cyrb53(str, seed = 0) { | |
| let h1 = 0xdeadbeef ^ seed, h2 = 0x41c6ce57 ^ seed; | |
| for (let i = 0, ch; i < str.length; i++) { | |
| ch = str.charCodeAt(i); | |
| h1 = Math.imul(h1 ^ ch, 2654435761); | |
| h2 = Math.imul(h2 ^ ch, 1597334677); | |
| } | |
| h1 = Math.imul(h1 ^ (h1>>>16), 2246822507) ^ Math.imul(h2 ^ (h2>>>13), 3266489909); | |
| h2 = Math.imul(h2 ^ (h2>>>16), 2246822507) ^ Math.imul(h1 ^ (h1>>>13), 3266489909); | |
| return 4294967296 * (2097151 & h2) + (h1>>>0); |
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
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| html, body { | |
| height: 100%; | |
| } |