Search Results

1
vote

Should you learn a new programming language if there are no jobs in your area that want it?

Career advice, given over the internet, for someone you don't know is almost destined to be not helpful. There are so many factors about your personality & your micro situation, that make gener …
1
vote

What is your favorite Regex?

This regex that checks for whether the length of a string is not a prime number is pretty cool: ^1?$|^(11+?)\1+$ …