Private ssh keys on github

list of private ssh keys on github apparently people are committing private ssh keys to public github repos (hand on face)…

Validating Email Addresses In PHP (The Right Way)

When verifying an email address there are two basic things you want to do. validate the structure of the address confirm the domain can actually receive email (this is the important part) Now validating the structure of the address can be done with a regex (view on ReFiddle) preg_match…