If You’ve Ever Wanted to Learn Regular Expressions…

regex

…Code School has a new class for that! I’d like to say at this point that I don’t now, nor have I ever, had any financial ties to Code School. I say that because I know I’ve done a fair amount of free advertising here for them. It’s only because their online classes are the … Read more

Validating Email Addresses Using Regular Expressions in C#

regex

Validating email addresses using regular expressions can be daunting, especially if you read articles like the RFC 822. The best regex I’ve found so far was on StackOverflow, and it can be implemented easily: The bona fide regex for email addresses is ridiculously long, and looks like some alien language rather than a useful code. … Read more

Using the PHP explode() Function to Get Text Between Slashes of a URL

PHP logo

In the About.Me widget that I currently have on the right sidebar of this blog, there are quite a few HTML image tags used for the different social networks linked below the photo and bio.  None of these img tags had alt tags, which are used by Web crawlers when indexing websites.  Many SEO experts … Read more