<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Web Design - SEO - Technology Reviews</title>
	
	<link>http://www.bliznet.com</link>
	<description>Internet marketing and web design experience.</description>
	<lastBuildDate>Sat, 07 Jan 2012 21:44:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Bliznet" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="bliznet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>HTML 5, Microdata, and You</title>
		<link>http://www.bliznet.com/html-5-microdata-and-you/</link>
		<comments>http://www.bliznet.com/html-5-microdata-and-you/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 20:35:55 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Micro Data]]></category>
		<category><![CDATA[Microdata]]></category>
		<category><![CDATA[Rich Snippets]]></category>
		<category><![CDATA[schema]]></category>
		<category><![CDATA[Semantics]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=935</guid>
		<description><![CDATA[Howdy, everybody. I have finally returned to convey some more information regarding the technical side of web design. Today&#8217;s topic is HTML5 and microdata. I have recently begun using HTML 5 instead of XHMTL 1.0. The spec for HTML 5 is still a long way off from being a W3 &#8220;recommendation,&#8221; but I decided to [...]]]></description>
			<content:encoded><![CDATA[<p>Howdy, everybody. I have finally returned to convey some more information regarding the technical side of web design. Today&#8217;s topic is HTML5 and microdata.</p>
<p>I have recently begun using HTML 5 instead of XHMTL 1.0. The spec for HTML 5 is still a long way off from being a W3 &#8220;recommendation,&#8221; but I decided to switch to it because of &#8220;microdata&#8221;. Microdata, or Rich Snippets as Google calls them, are a way to mark up the information on your web site to be more machine readable, such as products or addresses. For example, you can use it to tell search engines that a portion of your page pertains to a specific product, pointing out exactly what makes up the name of the product, the price, its image, and so on. The following code example is pretty typical for an individual product&#8217;s info (obviously simplified for this example):</p>
<p><code></p>
<pre>
&lt;div class="product"&gt;
	&lt;div class="name"&gt;The Web Site Maker&lt;/div&gt;
	&lt;div class="price"&gt;$99.99&lt;/div&gt;
	&lt;div class="description"&gt;This is the incredible Web Site Maker. No longer
		do you have to get your hands dirty. This software contains a single
		button. Push to receive web site.&lt;/div&gt;
	&lt;img src="web-site-maker.png" alt="The Web Site Maker" /&gt;
&lt;/div&gt;
</pre>
<p></code></p>
<p>However, a search engine doesn&#8217;t necessarily know what all that means. Google&#8217;s pretty scary and can probably decipher all that, but, with microdata, we can help by marking exactly what each bit of info means. As follows:</p>
<p><code></p>
<pre>
&lt;div class="product" <strong>itemscope="itemscope" itemtype="http://schema.org/Product"</strong>&gt;
	&lt;div class="name" <strong>itemprop="name"</strong>&gt;The Web Site Maker&lt;/div&gt;
	&lt;div class="price" <strong>itemprop="offers"</strong> <strong>itemscope="itemscope"</strong>
		<strong>itemtype="http://schema.org/Offer"</strong>&gt;<strong>&lt;span itemprop="price"&gt;</strong>
		$99.99<strong>&lt;/span&gt;</strong>&lt;/div&gt;
	&lt;div class="description" <strong>itemprop="description"</strong>&gt;This is the incredible Web Site
		Maker. No longer do you have to get your hands dirty. This software
		contains a single button. Push to receive web site.&lt;/div&gt;
	&lt;img <strong>itemprop="image"</strong> src="web-site-maker.png" alt="The Web Site Maker" /&gt;
&lt;/div&gt;
</pre>
<p></code></p>
<p>What is this <code>itemscope</code> and <code>itemtype</code> stuff, you may be wondering. These are attributes new to HTML 5, and thus the reason for switching to it. These attributes are legal on nearly any element and are used to mark up our data. The <code>itemscope</code> attribute is used to mark an element as the container for a particular item&mdash;in this case, a product. In the example, it means everything inside the element with the <code>itemscope</code> attribute is information about this particular product. It&#8217;s within the &#8220;scope&#8221; of this product. As an aside, you may notice that <code>itemscope</code> &#8220;equals&#8221; <code>itemscope</code> in the example. This is only because I am using the XHTML flavor of HTML 5. If you were using the HTML variant, you could just use <code>itemscope</code> on its own without the <code>="itemscope"</code> portion.</p>
<p>After <code>itemscope</code> comes <code>itemtype="http://schema.org/Product"</code>. As the name implies, it specifies the type of item for the machine reader to expect. &#8220;Product&#8221; is one of a plethora of types you can use, a list of which can be found at <a href="http://schema.org">Schema.org</a>.</p>
<p>Moving on, <code>itemprop="name"</code> obviously specifies the name of the product. &#8220;Name&#8221; is a property of the &#8220;Product&#8221; type. The Schema.org web site shows in detail the properties of each type, usually with examples, under their <a href="http://schema.org/docs/schemas.html">schemas section</a>. Some properties, however, are more than a simple text value. Some are actually an <code>itemtype</code> of their own, such as the price of the product. It is not merely an <code>itemprop="price"</code> with a number inside, but an &#8220;Offer&#8221; type. So it is necessary to again add the <code>itemscope</code> and <code>itemtype</code> attributes. I also had to add an extra element&mdash;the <code>span</code>&mdash;inside the price <code>div</code> so I could apply the &#8220;price&#8221; property, a property of &#8220;Offer&#8221;.</p>
<p>The rest of the example is just made up of some additional <code>itemprop</code> attributes. After you&#8217;ve marked up your information, you can use <a href="http://www.google.com/webmasters/tools/richsnippets">Google&#8217;s Rich Snippets Testing Tool</a> to make sure it&#8217;s marked up correctly.</p>
<p>If you&#8217;re already using some form of XHTML, it should be a pretty simple matter of changing the doctype and replacing your <code>&lt;meta http-equiv="content-type" content="mime-type; charset=utf-8" /&gt;</code> (or whatever you may be using) with a simple <code>&lt;meta charset="UTF-8" /&gt;</code> to convert to valid HTML 5. It&#8217;s not necessary to use the new elements such as <code>header</code> or <code>section</code>. Your old <code>div</code> elements will work fine. It&#8217;s probably not even desirable at this point to utilize the new elements thanks to the inability of Internet Explorer 8 and lower to display them without a <a href="http://remysharp.com/2009/01/07/html5-enabling-script/">hack</a>.</p>
<p>Welcome to the future. I hope you can start using microdata (AKA Rich Snippets) to make the web a more semantic place. Don&#8217;t forget to check out <a href="http://schema.org/">Schema.org</a> for all the supported types and their properties. Have fun, web wizards!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/html-5-microdata-and-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Importance of Good Design on Conversion Rate</title>
		<link>http://www.bliznet.com/good-design-conversion-rate/</link>
		<comments>http://www.bliznet.com/good-design-conversion-rate/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:17:57 +0000</pubDate>
		<dc:creator>GuestBlogger</dc:creator>
				<category><![CDATA[Usability - Conversion]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=919</guid>
		<description><![CDATA[When it comes to your conversion rate, you may not have thought about how your site&#8217;s design factors in. All too often, designers and developers are trying to put together the slickest looking pages, with the most up to date web technology, and as a result, they forgo considering a visitor&#8217;s experience. When designing any [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to your conversion rate, you may not have thought about how your site&#8217;s design factors in. All too often, designers and developers are trying to put together the slickest looking pages, with the most up to date web technology, and as a result, they forgo considering a visitor&#8217;s experience. When designing any site, it is critical to consider things from the visitor&#8217;s point of view. Doing so can be the difference between visitors converting to customers, and visitors leaving without making a purchase.</p>
<p>A common pitfall in site design is to make it too complicated. How many times have you visited a site, and had to click through a landing page animation? While the site designer probably spent a long time putting together a cool Flash animation, and while they certainly thought it would attract attention, typically, these things annoy visitors. When you visit a site, you are looking for specific information, not flashy animations. These types of design elements can turn visitors away before they even get to your product page.</p>
<p>As well, some site designers employ ads that automatically play audio and video, or they include music that plays in the background. Not only can these design elements become annoying and turn people away, but they can also slow down loading times exponentially. And some designers do not even include a function to turn off these audio and video elements, leading to visitor frustration, and no conversion.</p>
<p>Yet another design flaw that is often overlooked by designers and developers is the checkout process. If you have gotten a visitor to attempt to make a purchase, you are on the right track. However, if they get to the checkout and can&#8217;t figure out how to complete the transaction, they will be even more frustrated in the end, as they have just spent time on your site, they found what they wanted, but now they can&#8217;t purchase it. Having a poorly designed checkout system is essentially thumbing your nose at the customer, telling them that you have what they want, but they can&#8217;t get it.</p>
<p>In the above examples, the designer simply did not consider the user&#8217;s experience. Companies spend millions of dollars and thousands of hours per year on focus groups in order to figure out what customers like and what they don&#8217;t like. Why? Because the customer is the entire reason for going into business. When people visit your site, you want them to purchase something, not leave. And if your site is poorly designed and not engineered for a comfortable user experience, not only will customers not make purchases, but they will not come back in the future. Your site may even gain a reputation for its poor design, leading to a bad reputation.</p>
<p>Eric Wyatt writes on social media and internet marketing, focusing on <a href="http://www.invesp.com/">conversion rate optimization</a> and <a href="http://www.invesp.com/marketing-services/landing-page-creation-optimization.html">landing page design</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/good-design-conversion-rate/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Valid Flash Embed and Preloaders Episode V: Internet Explorer Strikes Back</title>
		<link>http://www.bliznet.com/valid-flash-embed-and-preloaders-revisited/</link>
		<comments>http://www.bliznet.com/valid-flash-embed-and-preloaders-revisited/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 17:45:10 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[preload]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=796</guid>
		<description><![CDATA[If you saw my previous post on valid Flash embed while maintaining preload functionality and used it, be warned: when the user does not have Flash, a lovely &#60;![endif]--&#62; will appear in IE where the Flash movie would normally be. The only way around it I&#8217;ve found is to actually duplicate everything from the opening [...]]]></description>
			<content:encoded><![CDATA[<p>If you saw my previous post on <a href="/valid-flash-embed-and-preloaders/">valid Flash embed while maintaining preload functionality</a> and used it, be warned: when the user does not have Flash, a lovely <code>&lt;![endif]--&gt;</code> will appear in IE where the Flash movie would normally be. The only way around it I&#8217;ve found is to actually duplicate <em>everything</em> from the opening <code>object</code> tag to the closing one so there is one each for IE and Firefox. For example:</p>
<pre>&lt;!--[if !IE]&gt;--&gt;
&lt;object data="movie.swf" type="application/x-shockwave-flash" width="725" height="235"&gt;
	&lt;param name="movie" value="movie.swf" /&gt;
&lt;/object&gt;
&lt;!--&lt;![endif]--&gt;
&lt;!--[if IE]&gt;
&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="725" height="235"&gt;
	&lt;param name="movie" value="movie.swf" /&gt;
&lt;/object&gt;
&lt;![endif]--&gt;</pre>
<p>Definitely a pain, but I&#8217;ve found no other way around it.</p>
<p>Also in my search for a solution, I discovered that our old pal Internet Explorer does not let you append anything but <code>param</code> elements to <code>object</code> elements in Javascript. That was pretty frustrating. Don&#8217;t try that. It doesn&#8217;t work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/valid-flash-embed-and-preloaders-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Paid Blog Networks Suck – Link Building 2010 Revisited</title>
		<link>http://www.bliznet.com/paid-blog-networks-suck/</link>
		<comments>http://www.bliznet.com/paid-blog-networks-suck/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 19:15:14 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=745</guid>
		<description><![CDATA[Why subscription based blog networks are not going to improve your search position and what you CAN DO to improve search results.]]></description>
			<content:encoded><![CDATA[<h3>Link Exchanges</h3>
<p>A lot has changed when it comes to gaining links to your website. More importantly a lot has changed on what is considered a good link or a bad link. With the economy in the tank, we are getting more and more calls for help with search position and increased traffic. Some of the calls are from potential clients that have never paid for any type of link building or site optimization, but a good percentage is from small business owners that have either been a part of Link Exchange programs or have purchased links in the past and now they are finding out  it is not working for their website any more. If you are not familiar with the Google or Bing guidelines for links then you should read <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66356">Google&#8217;s position on link exchanges</a> and <a href="http://www.bing.com/toolbox/blogs/webmaster/archive/2009/06/19/links-the-good-the-bad-and-the-ugly-part-2-sem-101.aspx">Links: the good, the bad, and the ugly &#8211; Part 2</a> from Bing.</p>
<h3>Paid Blog Networks</h3>
<p>So what do you do if link exchange software doesn&#8217;t work any more? How about all the fuss about these blog networks? That&#8217;s a question we have received a few times. First let me tell you about <strong>blog link networks</strong> where you pay a monthly fee and publish as many posts as you want, with links to your website. Your posts are distributed throughout a &#8220;network&#8221; of blogs. The claim is link diversity and unlimited potential. Don&#8217;t waste your time! This type of network is popular because they pay out good commissions, that&#8217;s it! These networks are easily detected which means they are easily discounted by Bing and Google and could be considered a bad neighborhood. You will waste a lot of time writing or you will pay additional fees to have the writing done for you, and you get nothing or near nothing in return. That time and money would have been better spent putting an article on a popular article network or sending out a press release. While neither of those methods are high value they generally have some value, unlike the so called Nirvana of subscription blog networks. With generic category based blog networks with no specific theme and some of the worst content ever written, you will get zero benefit. Once your post is pushed off of the main page or the main category page, which usually happens in a day or two, any value is lost. At that point your time, effort and money live on a page buried in a site that nobody, including Bing and Google, gives a rat&#8217;s ass about.</p>
<p>Example of a Blog Network where you pay per month to post as many times as you want. Just look at the quality. <img src='http://www.bliznet.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a rel="nofollow" href="http://www.bliznet.com/examples/1.htm">Example 1</a> &#8211; <a rel="nofollow" href="http://www.bliznet.com/examples/2.htm">Example 2</a></p>
<p>If you think this type of site is not easily detectable, let me show you how I found them: <a href="http://www.google.com/search?q=&quot;Posted+in+Health+and+Fitness&quot;+&quot;Posted+in+Home+and+Family&quot;">Google This</a> and then look for nonsensical domain names as the title. See the similarity? Most of these are from one of the most popular subscription blog networks out there. Notice every post has a single keyword link buried in the post? It gets worse, look at almost any post that is over 90 days old and copy a unique sentence, then search for the <strong>quoted</strong> sentence on Google, and 90% of the time the article can&#8217;t be found. The only people making money here is the owner of the blog system and their affiliates.</p>
<p>Let me say that there might be a paid blog network that actually works, but it would need to follow a few rules. I just pointed out one of the most popular networks that in my opinion is a waste of money and just ripping people off. If someone really wants to create a blog network that works, it would need to follow at least the following 4 rules:</p>
<ol>
<li>At least 75% of the posts need to be commercial quality information without any paid links embedded in the article.</li>
<li>Every subscriber&#8217;s post needs to be reviewed by an editor for &#8220;real value&#8221;.</li>
<li>Each blog needs to have a theme and specialize in one particular subject.</li>
<li>Each blog in the network needs to be optimized and promoted as a &#8220;real website&#8221; with good content.</li>
</ol>
<p>That said, you are most likely still violating Google&#8217;s guidelines if you pay to post your link on those sites. I&#8217;m not judging, just pointing out the risk involved.</p>
<h3>How To Build Links</h3>
<p>So how do you get quality links to your site? You need to create information and multimedia that people need and are willing to link to. Then you need to contact relevant websites and convince them that they should link to your content. If you are a product reseller, you should get your vendors to link to you as an authorized dealer. If you are a member or sponsor of any organizations, you need to get them to link to you as a such. You could do some guest blogging, but be sure the value of the link you get is greater than the value you would get from posting the article on your own website. You can also use article marketing, press releases, and directory submission but it&#8217;s just for diversity and extra exposure, alone they are not the answer.</p>
<p>Let me know if you agree, disagree or what I missed. I look forward to your comments. | Read the original <a href="../link-building-2010">Link Building 2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/paid-blog-networks-suck/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Pesky iframe and XHTML Strict</title>
		<link>http://www.bliznet.com/the-pesky-iframe-and-xhtml-strict/</link>
		<comments>http://www.bliznet.com/the-pesky-iframe-and-xhtml-strict/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 19:30:44 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Conditional Comments]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Iframe]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=736</guid>
		<description><![CDATA[Update: Example code updated. It used the shortened form of iframe before, as in &#60;iframe /&#62;. That doesn&#8217;t sit well with IE. It now uses &#60;iframe&#62;&#60;/iframe&#62; which works. The same goes for object. It similarly does not play well with Firefox 4 (perhaps even lower versions) in shortened form. If you&#8217;ve done much web work [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update: Example code updated. It used the shortened form of <code>iframe</code> before, as in <code>&lt;iframe /&gt;</code>. That doesn&#8217;t sit well with IE. It now uses <code>&lt;iframe&gt;&lt;/iframe&gt;</code> which works. The same goes for <code>object</code>. It similarly does not play well with Firefox 4 (perhaps even lower versions) in shortened form.</strong></p>
<p>If you&#8217;ve done much web work before, you&#8217;ve probably, at some time or another, had to use an <code>iframe</code>. It&#8217;s not pretty, but sometimes it&#8217;s the only choice, such as embedding a widget from another site or displaying things such as real estate listings. One of my biggest problems with it is that it doesn&#8217;t exist in the spec for XHTML Strict! It exists in Transitional, but I don&#8217;t like to use it. That may be good enough for some developers, but certainly not for me. How about you?</p>
<p>In Internet Explorer 8 (and possibly IE7, but I have not tested it) and Firefox, you can use the <code>object</code> element to embed a web page just like an <code>iframe</code>; however, IE gives it a thick, lovely border that seems impossible to remove. Here&#8217;s the trick: employing IE&#8217;s conditional comments, use an <code>iframe</code> for IE and an <code>object</code> for everything else. Here&#8217;s an example:</p>
<pre><code>&lt;!--[if !IE]&gt;&lt;!--&gt;&lt;object data="http://www.bliznet.com/" type="text/html" width="320" height="240"&gt;&lt;/object&gt;
	&lt;!--&lt;![endif]--&gt;
&lt;!--[if IE]&gt;&lt;iframe frameborder="0" src="http://www.bliznet.com/" width="320" height="240"&gt;&lt;/iframe&gt;
	&lt;![endif]--&gt;</code></pre>
<p>Valid XHTML Strict! Make sure to keep your settings the same across both elements to keep it consistent.</p>
<p>Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/the-pesky-iframe-and-xhtml-strict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Names and Hostage Negotiations</title>
		<link>http://www.bliznet.com/domain-names-hostage/</link>
		<comments>http://www.bliznet.com/domain-names-hostage/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 17:15:00 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=821</guid>
		<description><![CDATA[Domain name hostage negotiations and why some webmasters and web hosts fail at life.]]></description>
			<content:encoded><![CDATA[<p>It amazes me the number of webmasters or hosting companies that register their client&#8217;s domain names in their own company name. There are only a few reasons to do that.</p>
<ul>
<li>You suck at life so you need to hold them hostage</li>
<li>You have no idea what you are doing</li>
<li>You suck at life and plan on charging clients crazy $$ to leave your sorry company</li>
</ul>
<p>Let&#8217;s be serious, if your company offers reliable hosting or professional web design and you make requested changes or answer support questions in a timely manner then most of your customers will never leave you. A small percentage will move around because a salesman convinces them they need &#8220;their&#8221; service or maybe you don&#8217;t offer a specialized application the client needs, but for the most part if you just stop sucking as a webmaster you can maintain your hosting and web design clients.</p>
<p>The only reason a webmaster or web host needs to hold a domain name hostage is because he knows he has nothing to offer of value. It&#8217;s really not difficult to please small business owners. Make sure their email and website are online and update their website when they ask you too. Answer emails and the phone in a timely manner. Is that really too complicated?</p>
<p>Understand your limitations and when you know you can&#8217;t meet your customer&#8217;s expectations then admit it, help them move somewhere that can. Think I&#8217;m crazy? Trust me, the next time they need something they might just call you again, you know why? Because you were helpful. For some reason that&#8217;s uncommon in the small business web world. Some of you act like losing $15 or $20 per month in hosting fees is going to bankrupt you.</p>
<p>Some of you are so offended by losing a client that you turn into an evil crook and you take hostages (domain names). I can&#8217;t keep track of the number of times I have been put in the position of hostage negotiator so some poor old lady can have *her* domain name transferred to *her*.</p>
<p>Time to face the facts. If your only chance of customer retention is stealing domain names (taking hostages) then you are going to fail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/domain-names-hostage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Valid Flash Embed and Preloaders in Internet Explorer</title>
		<link>http://www.bliznet.com/valid-flash-embed-and-preloaders/</link>
		<comments>http://www.bliznet.com/valid-flash-embed-and-preloaders/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 18:56:32 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Conditional Comments]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Preloader]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=731</guid>
		<description><![CDATA[Hello once again, web friends. Today I bring tidings of Flash preloaders and validity. You may have noticed that with the embed code from my YouTube article that Flash movie preloaders don&#8217;t work in Internet Explorer, and the movie has to load entirely before it even displays at all. This is because Internet Explorer requires [...]]]></description>
			<content:encoded><![CDATA[<p>Hello once again, web friends. Today I bring tidings of Flash preloaders and validity.</p>
<p>You may have noticed that with the embed code from my <a href="/valid-flash-embed/">YouTube article</a> that Flash movie preloaders don&#8217;t work in Internet Explorer, and the movie has to load entirely before it even displays at all. This is because Internet Explorer requires a different attribute and the removal of another in the <code>object</code> tag to let preloaders work properly. However, with different attributes, the Flash movie will not display at all in Firefox, so we must use Internet Explorer&#8217;s <a href="http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx">conditional comments</a> to utilize two different opening <code>object</code> tags. Behold:</p>
<pre><code>&lt;!--[if !IE]&gt;--&gt;&lt;object data="yourmovie.swf" type="application/x-shockwave-flash"
	width="320" height="240"&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if IE]&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
	width="320" height="240"&gt;&lt;![endif]--&gt;
	&lt;param name="movie" value="yourmovie.swf" /&gt;
	&lt;param name="quality" value="high" /&gt;
&lt;/object&gt;</code></pre>
<p>The first line is the original that works in both IE and Firefox but doesn&#8217;t allow preloaders in IE. The second is the IE-only method that works with preloaders. Note the lack of a <code>data</code> attribute and the addition of a <code>classid</code> attribute.</p>
<p>Well, there you have it. Venture forth and embed Flash validly with preload animations!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/valid-flash-embed-and-preloaders/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trouble-”Shooting” A Malfunctioning Printer – Solves Privacy Issues Too!</title>
		<link>http://www.bliznet.com/printer-troubleshooting/</link>
		<comments>http://www.bliznet.com/printer-troubleshooting/#comments</comments>
		<pubDate>Tue, 18 May 2010 13:52:43 +0000</pubDate>
		<dc:creator>Clint Blizzard</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=687</guid>
		<description><![CDATA[We execute an excessive final solution to our malfunctioning Xerox multi-function printer.]]></description>
			<content:encoded><![CDATA[<p>Update! This is the new method to prevent privacy and security issues related to the <a href="http://www.youtube.com/watch?v=iC38D5am7go">copier salvage industry</a>.</p>
<p><object data="http://www.youtube.com/v/fHNOH0NguOI&amp;hl=en_US&amp;fs=1&amp;start=7" type="application/x-shockwave-flash" width="640" height="385"><param name="movie" value="http://www.youtube.com/v/fHNOH0NguOI&amp;hl=en_US&amp;fs=1&amp;start=7" /></object></p>
<p>Let me tell you a tale. For the longest time, we used a Xerox  WorkCentre PE16 multi-function printer/scanner/copier/fax here in the  office. It was an utter nightmare, and every time we tried to use it,  the people next door could hear the screams of frustration.</p>
<p>For some reason, we lived with the thing for months&#8211;maybe years. The  simple solution would have been to just replace it, but we just  wouldn&#8217;t. Perhaps we were stubborn, perhaps we just never got around to  it. We would always eventually get it to do what we wanted it to do and  then get back to work.</p>
<p>Tensions mounted. The printer would ruin entire days and make the air  of the office thick with anger. Finally, we couldn&#8217;t take it anymore,  so yesterday, we finally did some troubleshooting.</p>
<p>We&#8217;d like to share this quick how-to with you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/printer-troubleshooting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

