YOU ARE WELCOME !
Less than 1 minute
YOU ARE WELCOME !
curl -s "https://news.ycombinator.com/item?id=45800465" - python3 -c "
import sys, re
text = sys.stdin.read()
# Find normal and obfuscated email patterns
emails = re.findall(r'[A-Za-z0-9._%+-]+\s*(?:@-\[at\]-\(at\))\s*[A-Za-z0-9.-]+\.[A-Za-z]{2,}', text, flags=re.I)
# Clean and normalize
cleaned = [re.sub(r'\s*(?:\[at\]-\(at\))\s*', '@', e).strip() for e in emails]
# Print unique, sorted list
for e in sorted(set(cleaned)):
print(e)
"