Posted 1 day, 20 hours ago
Description
"YOU ARE WELCOME !<p><pre><code> 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) "</code></pre> '
Similar Jobs
Create your own personalized Job Alert