Monday, October 30, 2006
Thursday, October 26, 2006
Achieve Google Sitelink Status
- The site must show up #1 for a specific proper noun keyword (or keyphrase) - typically involved with a company name or brand Good: "nikon cameras" - Bad: "cameras"
- The site must have maintained the #1 position for a substantial amount of time
- The keyword (or keyphrase) must show up in the title and meta-data somewhere
- Must include an updated sitemap - with no broken links
- Easily spiderable and good, clean navigation
- Additional pages must have a significant position in Search Enginer Result Pages
- Additional pages have unique titles and meta-data
- Site validates with few errors and few broken links
Tips & Tricks:
- Avoid changing the site structure
- Include an XML sitemap in your root directory
- Heavily validate your site through W3C
- Include robots.txt in your root directory
- Create pages under semantic principles and naming convensions
- Site achieves 1000 or more visits a day (on average)
- Site must have a substantial depth of pages (25+)
Tuesday, October 17, 2006
Top Web Blogs
- Google Blog
- Google Webmaster
- Search Engine Watch (Danny Sullivan)
- Daggle (Danny Sullivan)
- SEO Egghead
- Matt Cutts
- Computer Zen
- PlanetDan.Net
- MezzoBlue
- Search Engine Journal
- SEOmoz
Top Web Articles
- 18 Questions Your CEO Forgot to Ask When Building Your Website
- FireFox Myths
- Top Ten Geek Business Myths (Ron Garret)
- 21 Great SEO Tips by Matt Cutts (SEO Egghead)
- 20 Pro Tips (.Net Magazine)
- 2006 Ultimate Developer and Power Users Tool List for Windows (Computer Zen)
- What is Web 2.0? (O'Reilly)
- 20 Rules of Smart and Successful Web Development & Design (Vitaly Friedman)
- Semantic Web (Wikipedia)
- Web Development Tools for the Power Developer (Brennan Stehling)
- Top 12 Best Practices for Publishing an Email Newsletter (Web Digest for Marketers)
- What Makes it Viral? (ClickZ)
- Viral Marketing Unmasked (Kent Lewis - Sitepoint)
Thursday, October 05, 2006
Rondam Ramblings - Top Ten Geek Business Myths
Tuesday, October 03, 2006
Click to Activate Flash Fix for Internet Explorer
So by now you may have heard of Microsoft’s latest “pain in the”…I mean “patch” for Internet Explorer. Whenever a user comes to a page with embedded flash content, IE will display a “click to activate” message when you hover over the flash object. Here’s the latest fix/workaround for getting rid of the “click to activate” pain in 3 easy steps.
1. Place the following code in an external javascript file called external.js:
function LoadFlash1()
{
document.write('<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab
#version=6,0,29,0" width="701" height="214" noexternaldata="true">\n');
document.write('<param name="movie" value="flash/car.swf" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<embed src="flash/car.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="701" height="214"></embed>\n');
document.write('</object>\n');
}
2. Put this in the head of your page:
<script src="external.js" language="JavaScript" type="text/javascript"></script>
3. Put this in the place you want the Flash to show up:
<script language="JavaScript" type="text/javascript">LoadFlash1();</script>
This should remedy your problem until Microsoft comes up with another way to make web browsing difficult on us.