29 Dec
Korn covers Lil Wayne’s Got Money
The misses found this beautiful cover of Lil Wayne’s Got Money - by Korn’s front man Jonathan Davis YEA!.
29 Dec
The misses found this beautiful cover of Lil Wayne’s Got Money - by Korn’s front man Jonathan Davis YEA!.
19 Dec
Need a little Logo inspiration? Check out LogoInstant.com - a slew of free high-er quality logos that including source files, fonts etc.
9 Dec
I am tired of TinyURL getting all of the domain “brand share” from my Blogs tweets. So I wanted to come up with my own solution to create short urls using my blogs domain: BrandonsHead.com.
Yes, my domain is longer than “TinyUrl”, and I assume that yours is too - however, those 5 or so extra characters are well worth the brand awareness (especially if you are cross posting to other social media outlets). And thanks to Mod Rewrite and Wordpress, pulling this off is relatively simple.
By adding a rewrite rule to Wordpress‘ .htaccess file (in the root of your Wordpress installation) - you add 1 line of code, and poof you can have a Short URL like http://brandonshead.com/go446
Here is the code that I added to my .htaccess to achieve this:
RewriteRule ^go(.*)? /index.php?p=$1 [R=301,L]
This code is simply saying, any time a user goes to http://mydomain/go123 take the 123 and treat it like a blog post ID, then the rest of Wordpress’ rewrite rules will take over.
Here is what my Wordpress’ .htaccess file looks like:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
#Short URL Processing
RewriteRule ^go(.*)? /index.php?p=$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Also, we want to make it easy for us and our users to copy and paste this new short url. So I went in and added the following code to my Single.php file (that is part of the theme you are using).
<div class="shorturl">
<label>Short URL</label>
<input type="text" value="http://YOURDOMAIN.com/go<? the_ID(); ?>" onclick="this.select()" />
</div>
Disclaimer: This might or might not make your Wordpress installation completely blowup, this is only for the brave of heart. I repeat: This might make your Wordpress installation come alive and eat your entire city - so please proceed with caution.
17 Nov
I have always loved IDEO - the most amazing global creative/design firm that applies their creative abilities on virtually any type of project (not just visual design/marketing). Tom Kelley, the general manager at IDEO, talks to Standford students about the five core practices that promote creativity and innovation in even the most boring organizations.