Live data from Hacker News

If you applied for this cycle, please tell us your email address

news.ycombinator.com

21–30 of 33 posts

Re: If you applied for this cycle, please tell us your email address

#23
post #5

Earlier quoted context omitted.

echo "jd; John Doe; 99; None; john.doe@whoknows.com; ; ." | cut -d ";" -f 5 ...so if someone makes mistakes it is automatically out :-) Guess the way they chose is the best though.

Or, if they're in a forgiving mood, this will produce one e-mail address per line, regardless of delimited position, (assuming the founders were already on separate lines): | sed -E 's/^.*[^[:alnum:]\._\-]([[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*)[^[:alnum:]\-\.].*$/\1/' | grep -E '^[[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*$'

Please avoid long one-liners in code blocks. It forces all of us to scroll left and right to read the rest of the page.

Re: If you applied for this cycle, please tell us your email address

#25

Earlier quoted context omitted.

Or, if they're in a forgiving mood, this will produce one e-mail address per line, regardless of delimited position, (assuming the founders were already on separate lines): | sed -E 's/^.*[^[:alnum:]\._\-]([[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*)[^[:alnum:]\-\.].*$/\1/' | grep -E '^[[:alnum:]\._\-]+@[[:alnum:]][[:alnum:]\-]+\.[[:alnum:]][[:alnum:]\-\.]*$'

Please avoid long one-liners in code blocks. It forces all of us to scroll left and right to read the rest of the page.

My bad... Split into two lines, hopefully that helps.

Re: If you applied for this cycle, please tell us your email address

#29

prior planning prevents poor performance ; )

You're missing a word.

"... You're missing a word. ..."

My thoughts exactly except you also missed a word,,,, Prior Prevention Planning Prevents (P!ss Poor) Performance

Post reply on HN