Web

Interesting discussion in IT Professionals community I saw regarding needing to be able to search GMail for some IP addresses. I’ve tinkered around with a few things and found a pretty easy way to do the regex searches. Step 1: Setup Google Doc’s Sheet Source: http://www.labnol.org/internet/advanced-gmail-search/21623/ Follow these directions to the end of #2 below: Click…

Read More Searching GMail with Regex

This is my Wordle for my website. You can create a wordle of your own by visiting http://www.wordle.net/create. Wordle is a toy for generating “word clouds” from text that you provide. The clouds give greater prominence to words that appear more frequently in the source text. You can tweak your clouds with different fonts, layouts,…

Read More Wordle for My Site

Just a few quick notes on how to redirect website to force www or to force just the domain name when users visit your site. .htaccess Redirect non-WWW to WWW This will redirect http://my-domain.com/ to http://www.my-domain.com/ RewriteEngine On RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] .htaccess Redirect WWW to non-WWW This will redirect http://www.my-domain.com/ to…

Read More Apache .htaccess Redirect WWW