Skip to content

Instantly share code, notes, and snippets.

View eferbarn's full-sized avatar
:atom:
Atom addicted

MΞHDI eferbarn

:atom:
Atom addicted
View GitHub Profile
@eferbarn
eferbarn / RemovedBlackList.csv
Last active June 6, 2026 20:25
Removed Addresses from the Tether Foundation BlackList since 2017
Time Chain CA Cleared_User TXN_Hash
2026-05-30 16:11:06.000 UTC tron TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t TCC3F22ctFcVtv3qT1npRGzn3eufCzkR3M 5d4b2210b0f832ff08e0421316bc250a2cd516ee930e9dfd08c8e644093f9626
2026-05-25 14:16:48.000 UTC tron TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t TXj3Bcz3Amh8ChMbBKYqszKYFbe6YTjFSX 2ea5d109d5789f9605ee591d95ce10d353cad640a30a565b464774ba29a320f0
2026-05-19 16:14:48.000 UTC tron TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t TZAZj4zad67tKkrhvVj991UBbgcL7ywpUn c280fc3af05d3abf6c1bde76f6a7ef49df3610d847b6e6662a470f583a7dbef5
2026-05-15 13:32:47.000 UTC ethereum 0xdac17f958d2ee523a2206206994597c13d831ec7 0x480a825bed6cdba9da81cc01faacd12166761dec 0x09fea2c37fdfb711f0da14fd67ba8c43694f25b31ed5e9ed7573f3a5064ef2de
2026-05-15 13:31:18.000 UTC tron TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t TBJ7DVe8mxuFUYb4LrBta4TRh6U9Kwwbgz ca83a6b073d30b5264a19a8df32138d99419aff2014436ca693a0dd869fb58ed
2026-05-15 13:31:15.000 UTC tron TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t TUfGQytN5AMTwYcNkozGUDGEDJycaq2hQq 7a5a1f0fadfbe22aada026a
@eferbarn
eferbarn / randomMentionPicker.js
Created August 16, 2025 08:20
randomMenionPicker
(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 {
@eferbarn
eferbarn / proSpaceKeyPressSimulator.js
Last active August 9, 2025 06:44
Space Key Press Simulator
/**
* Example Usage:
* setDelays(60, 140);
* startSimulation();
* stopSimulation();
*/
/**
* Example Usage #2:
* promptAndStart();
@eferbarn
eferbarn / mnemonica.py
Created July 6, 2024 08:42
Standalone Mnemonic Code Converter
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
@eferbarn
eferbarn / Sorted_Scores.csv
Created July 31, 2023 18:03
Gitcoin Passport Scores (Descending Sorted Version)
Stamp Corresponding Score
HolonymGovIdProvider 4
SnapshotProposalsProvider 2.82
GnosisSafe 2.65
Lens 2.45
Linkedin 2.45
EthGasProvider 2.4
GitcoinContributorStatistics#numGrantsContributeToGte#10 2.3
CivicLivenessPass 2.25
CivicUniquenessPass 2.25
@eferbarn
eferbarn / 2048_BIP_39_words.csv
Last active May 17, 2026 22:29
Complete list of 2048 BIP-39 Seed Recovery Phrase Words
Row Word
1 abandon
2 ability
3 able
4 about
5 above
6 absent
7 absorb
8 abstract
9 absurd
@eferbarn
eferbarn / SVG_NFT_extractor.js
Last active October 28, 2023 13:56
NFT attributes extractor (SVG based NFTs)
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);
@eferbarn
eferbarn / orbit.html
Created March 11, 2022 13:54
Orbit (SVG Animation - An intro)
<style>
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}