<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Tikier Hosting</title>
	<atom:link href="http://blog.tikier.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.tikier.com</link>
	<description>Offshore, Adult, Warez Linking Hosting Allowed</description>
	<lastBuildDate>Tue, 18 May 2010 12:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Center Multiple DIVs with CSS</title>
		<link>http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css</link>
		<comments>http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css#comments</comments>
		<pubDate>Tue, 18 May 2010 11:58:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[block elements]]></category>
		<category><![CDATA[block level elements]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[child]]></category>
		<category><![CDATA[child elements]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[single line]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Usual Way]]></category>
		<category><![CDATA[white space]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=909</guid>
		<description><![CDATA[At some point, you may have a situation where you want to center multiple elements (maybe &#60;div&#62; elements, or other block elements) on a single line in a fixed-width area. Centering a single element in a fixed area is easy. Just add margin: auto and a fixed width to the element you want to center, [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/internet-explorer-css-bug-fixes' rel='bookmark' title='Permanent Link: Internet Explorer CSS bug fixes'>Internet Explorer CSS bug fixes</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-tutorial-generated-content' rel='bookmark' title='Permanent Link: CSS Tutorial &#8211; Generated Content'>CSS Tutorial &#8211; Generated Content</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/horizontal-css-menus-that-grow-on-you' rel='bookmark' title='Permanent Link: Horizontal CSS Menus That Grow on You'>Horizontal CSS Menus That Grow on You</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><img class="alignleft size-full wp-image-911" title="center-divs" src="http://blog.tikier.com/wp-content/uploads/2010/05/center-divs.jpg" alt="" width="184" height="184" />At some point, you  may have a situation where you want to center multiple elements (maybe <code>&lt;div&gt;</code> elements, or other block elements) on a single line in a fixed-width  area. Centering a single element in a fixed area is easy. Just add <code>margin:  auto</code> and a fixed width to the element you want to center, and  the margins will force the element to center.</p>
<p>There really should be a similar simple way to center multiple  elements evenly spaced. It would be nice if CSS had a property called  “box-align” which you could set to “center” then the child elements  would be centered evenly within their parent.</p>
<p>Well, you can achieve something similar by taking advantage of CSS’s  flexibity with “recasting” elements (for lack of a better term).</p>
<p><span id="more-909"></span></p>
<h2>The Usual Way</h2>
<p>Normally, in such a situation, you would just float the boxes, then  add left and right margins to space them out accordingly. But that can  get a little messy, because IE6 doesn’t like margins on floats, and you  always have to have a different id or class for elements on which you  don’t want margins (like the last and/or the first).</p>
<p>You can get around the IE6 problem by adding <code>display: inline</code> in an IE6-only declaration, but your code will still be somewhat messy  because of the extra code to get the first and/or last item to behave.  Also, the last box could fall to the next line in IE.</p>
<p>There’s another solution to this that might work better in certain  circumstances.</p>
<h2>Use <code>inline-block</code> and control white space</h2>
<p>To achieve the same effect as adding floats and margins, you can  simply “recast” your block-level elements as inline blocks, and then  manipulate the white space between them. Here is how the CSS might look:</p>
<pre class="css">
<span class="cssSelector">#parent {</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 615px</span><span class="cssRest">;</span>
<span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue"> solid 1px #aaa</span><span class="cssRest">;</span>
<span class="cssProperty">text-align</span><span class="cssRest">:</span><span class="cssValue"> center</span><span class="cssRest">;</span>
<span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 20px</span><span class="cssRest">;</span>
<span class="cssProperty">letter-spacing</span><span class="cssRest">:</span><span class="cssValue"> 35px</span><span class="cssRest">;</span>
<span class="cssProperty">white-space</span><span class="cssRest">:</span><span class="cssValue"> nowrap</span><span class="cssRest">;</span>
<span class="cssProperty">line-height</span><span class="cssRest">:</span><span class="cssValue"> 12px</span><span class="cssRest">;</span>
<span class="cssProperty">overflow</span><span class="cssRest">:</span><span class="cssValue"> hidden</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
<span class="cssSelector">.child {</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 100px</span><span class="cssRest">;</span>
<span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue"> 100px</span><span class="cssRest">;</span>
<span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue"> solid 1px #ccc</span><span class="cssRest">;</span>
<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> inline-block</span><span class="cssRest">;</span>
<span class="cssProperty">vertical-align</span><span class="cssRest">:</span><span class="cssValue"> middle</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
</pre>
<p>In my example above, I’m assuming there are four child boxes, each  with the class <code>child</code>, and each 100 pixels by 100 pixels.  The boxes are naturally block-level elements, but the CSS changes them  to <code>inline-block</code>, which allows them to flow naturally with  text and white space. Of course, since we don’t have any text in the  parent container, controlling the text and white space will not be a  problem.</p>
<p>The parent element (with the id <code>parent</code> in this example)  has four key text properties set, and the children have two:</p>
<ul>
<li><code>text-align</code> makes all inline child elements centered</li>
<li><code>letter-spacing</code> controls the size of each white space  unit between boxes</li>
<li><code>white-space: nowrap</code> keeps the last element from  potentially dropping to the next line</li>
<li><code>overflow: hidden</code> prevents the box from stretching in  IE6</li>
<li><code>vertical-align: middle</code> (on the children) keeps the  boxes on the same vertical plane as each other when content is added</li>
<li><code>display: inline-block</code> (obviously)</li>
</ul>
<h3>Internet Explorer Rears its Ugly Head</h3>
<p>What would a CSS solution be without an Internet Explorer issue to  work around? While this method works exactly the same in every browser  (including IE8), IE6 and IE7 don’t cooperate, because they don’t fully  support <code>inline-block</code>. To get those browsers to show  virtually the same result, you need to add the following CSS:</p>
<pre class="css">
<span class="cssSelector">.child {</span>
*<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> inline</span><span class="cssRest">;</span>
*<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0 20px 0 20px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
</pre>
<p>The CSS above must apply only to IE6 and IE7, and it has to appear  after the other CSS. In my code (and in the code example above) I’ve  accomplished this by using the star hack. The asterisk (or star) at the  beginning of each line hides both lines from every browser except IE6  and IE7. The margins added here help us get the same visual result, and  the new <code>display</code> property is taking advantage of a bug in  those browsers that makes a block element work like its inline when you  declare <code>display: inline-block</code> followed by <code>display:  inline</code>.</p>
<h2>Drawbacks / Final Thoughts</h2>
<p>Not many drawbacks to this. You just have to make sure the white  space and text settings that you apply are reset on any child elements  inside the boxes. So, while this may work when you have straight images  or other non-text content, it may be more trouble than its worth if your  boxes are fully loaded with diverse content.</p>
<p>But nonetheless a good technique to know when you have to center some  block elements with equal spacing, and you don’t want to apply extra  classes on the end units. And this technique will be even more important  when the older versions of IE disappear from general use. But I’m not  holding my breath.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;t=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Center+Multiple+DIVs+with+CSS&amp;body=Link: http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css (sent via shareaholic)%0D%0A%0D%0A----%0D%0A At%20some%20point%2C%20you%20%20may%20have%20a%20situation%20where%20you%20want%20to%20center%20multiple%20elements%20%28maybe%20%26lt%3Bdiv%26gt%3B%20elements%2C%20or%20other%20block%20elements%29%20on%20a%20single%20line%20in%20a%20fixed-width%20%20area.%20Centering%20a%20single%20element%20in%20a%20fixed%20area%20is%20easy.%20Just%20add%20margin%3A%20%20auto%20and%20a%20fixed%20width%20to%20the%20element%20you%20want%20to%20c" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS&amp;srcUrl=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;srcTitle=Center+Multiple+DIVs+with+CSS&amp;snippet=At%20some%20point%2C%20you%20%20may%20have%20a%20situation%20where%20you%20want%20to%20center%20multiple%20elements%20%28maybe%20%26lt%3Bdiv%26gt%3B%20elements%2C%20or%20other%20block%20elements%29%20on%20a%20single%20line%20in%20a%20fixed-width%20%20area.%20Centering%20a%20single%20element%20in%20a%20fixed%20area%20is%20easy.%20Just%20add%20margin%3A%20%20auto%20and%20a%20fixed%20width%20to%20the%20element%20you%20want%20to%20c" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Center+Multiple+DIVs+with+CSS&amp;body=Link: http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css (sent via shareaholic)%0D%0A%0D%0A----%0D%0A At%20some%20point%2C%20you%20%20may%20have%20a%20situation%20where%20you%20want%20to%20center%20multiple%20elements%20%28maybe%20%26lt%3Bdiv%26gt%3B%20elements%2C%20or%20other%20block%20elements%29%20on%20a%20single%20line%20in%20a%20fixed-width%20%20area.%20Centering%20a%20single%20element%20in%20a%20fixed%20area%20is%20easy.%20Just%20add%20margin%3A%20%20auto%20and%20a%20fixed%20width%20to%20the%20element%20you%20want%20to%20c" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;t=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Center+Multiple+DIVs+with+CSS+-+http://b2l.me/u9d6r&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css&amp;title=Center+Multiple+DIVs+with+CSS&amp;desc=At%20some%20point%2C%20you%20%20may%20have%20a%20situation%20where%20you%20want%20to%20center%20multiple%20elements%20%28maybe%20%26lt%3Bdiv%26gt%3B%20elements%2C%20or%20other%20block%20elements%29%20on%20a%20single%20line%20in%20a%20fixed-width%20%20area.%20Centering%20a%20single%20element%20in%20a%20fixed%20area%20is%20easy.%20Just%20add%20margin%3A%20%20auto%20and%20a%20fixed%20width%20to%20the%20element%20you%20want%20to%20c" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Center+Multiple+DIVs+with+CSS&amp;link=http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/internet-explorer-css-bug-fixes' rel='bookmark' title='Permanent Link: Internet Explorer CSS bug fixes'>Internet Explorer CSS bug fixes</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/css-tutorial-generated-content' rel='bookmark' title='Permanent Link: CSS Tutorial &#8211; Generated Content'>CSS Tutorial &#8211; Generated Content</a></li>
<li><a href='http://blog.tikier.com/tutorials/css/horizontal-css-menus-that-grow-on-you' rel='bookmark' title='Permanent Link: Horizontal CSS Menus That Grow on You'>Horizontal CSS Menus That Grow on You</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/css/center-multiple-divs-with-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Page Corner Ads with CSS3 Transforms</title>
		<link>http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms</link>
		<comments>http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms#comments</comments>
		<pubDate>Tue, 18 May 2010 11:53:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[area]]></category>
		<category><![CDATA[clickable area]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[corner]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript libraries]]></category>
		<category><![CDATA[Paul Irish]]></category>
		<category><![CDATA[promo]]></category>
		<category><![CDATA[proprietary filters]]></category>
		<category><![CDATA[syntax highlighter]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=906</guid>
		<description><![CDATA[The other day I came across a useful site called ScriptSrc.net that allows you to get up-to-date script tag links that point to your favourite JavaScript libraries. The site has a clickable corner ad promo to get people to “spread the word”. I thought using CSS3 there would be a better way to position such [...]


Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/css-tutorial-generated-content' rel='bookmark' title='Permanent Link: CSS Tutorial &#8211; Generated Content'>CSS Tutorial &#8211; Generated Content</a></li>
<li><a href='http://blog.tikier.com/seo-tips/3-key-off-page-search-engine-optimization-methods' rel='bookmark' title='Permanent Link: 3 Key Off-Page Search Engine Optimization Methods'>3 Key Off-Page Search Engine Optimization Methods</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>The other day I came across a useful site called <a target="_blank" href="http://scriptsrc.net/">ScriptSrc.net</a> that allows you to get  up-to-date script tag links that point to your favourite JavaScript  libraries.</p>
<p>The site has a clickable corner ad promo to get people to “spread the  word”. I thought using CSS3 there would be a better way to position  such a corner advertisement (or promo, or whatever), because the  clickable area for the ad on ScriptSrc.net is actually too big. In some  cases, you might prefer the clickable area to be bigger, but I think  it’s always best to keep the clickable area limited to the actual ad.</p>
<p><span id="more-906"></span></p>
<h2>The Clickable Area is too Big</h2>
<p>On the ScriptSrc.net website, the clickable area on the corner promo  is naturally a square, because all page elements in HTML are square or  rectangular. This is indicated in the image below:</p>
<p><img title="The clickable area of  the corner ad is square" src="http://www.impressivewebs.com/images/scriptsrc.jpg" alt="The  clickable area of the corner ad is square" width="440" height="206" /></p>
<p>Maybe they don’t care that this is the case, or maybe they prefer it  that way, so it gets more clicks. I personaly feel it’s more usable if  the actual corner section is the only clickable area.</p>
<h2>CSS3 Transforms to the Rescue</h2>
<p>If you’ve become familiar with some new CSS3 enhancements, you  probably know that elements can be rotated. We can use this to make the  corner promo more usable. Here is the CSS:</p>
<pre class="css">
﻿#corner-ad {
<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> block</span><span class="cssRest">;</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 200px</span><span class="cssRest">;</span>
<span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue"> 200px</span><span class="cssRest">;</span>
<span class="cssProperty">position</span><span class="cssRest">:</span><span class="cssValue"> absolute</span><span class="cssRest">;</span>
<span class="cssProperty">top</span><span class="cssRest">:</span><span class="cssValue"> -100px</span><span class="cssRest">;</span>
<span class="cssProperty">rightright</span><span class="cssRest">:</span><span class="cssValue"> -100px</span><span class="cssRest">;</span>
<span class="cssProperty">-webkit-transform</span><span class="cssRest">:</span><span class="cssValue"> rotate(45deg)</span><span class="cssRest">;</span>
<span class="cssProperty">-moz-transform</span><span class="cssRest">:</span><span class="cssValue"> rotate(45deg)</span><span class="cssRest">;</span>
<span class="cssProperty">-o-transform</span><span class="cssRest">:</span><span class="cssValue"> rotate(45deg)</span><span class="cssRest">;</span>
<span class="cssMedia">}</span>
</pre>
<p>(NOTE: The syntax highlighter I’m using displays the CSS property  “right” as “rightright”, so just ignore that in the code above and  below).</p>
<p>Now the only clickable area is the actual corner, so there is no risk  that a stray click near the corner triggers the corner promo.</p>
<h2>Works in All Browsers (with Hacks for IE)</h2>
<p>The great thing about this is that, although the method uses a CSS3  enhancement, Internet Explorer offers rotation capabilities by means of  proprietary filters. In the case of my own demo page, I also had to add  some IE-version-specific hacks to get the positioning of the ad correct,  so there is some extra unwanted code that’s needed to get this to work  properly. The following code placed below the original CSS gets it to  work in all versions of IE:</p>
<pre class="css">
<span class="cssSelector">#corner-ad {</span>
top: -142px\9;
right: -60px\9;
*<span class="cssProperty">right</span><span class="cssRest">:</span><span class="cssValue"> -140px</span><span class="cssRest">;</span>
<span class="cssProperty">filter</span><span class="cssRest">:</span><span class="cssValue">  progid:DXImageTransform.Microsoft.Matrix(sizingMethod=<span class="cssString">&#039;auto expand&#039;</span>, M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)</span><span class="cssRest">;</span>
<span class="cssProperty">-ms-filter</span><span class="cssRest">:</span><span class="cssValue"> <span class="cssString">"progid:DXImageTransform.Microsoft.Matrix(SizingMethod=<span class="cssString">&#039;auto expand&#039;</span>, M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"</span></span><span class="cssRest">;</span>
<span class="cssProperty">zoom</span><span class="cssRest">:</span><span class="cssValue"> 1</span><span class="cssRest">;</span>
<span class="cssSelector">}</span>
</pre>
<p>The “transform” code is from Paul Irish’s <a target="_blank" href="http://css3please.com/">CSS3, please</a> CSS3 generator, which has  recently added support for IE’s matrix rotation filter. The “zoom”  property isn’t needed in my example, but it is needed in cases where the  element doesn’t have layout.</p>
<p>Check out the demo using the button below.</p>
<h1><a href="http://blog.tikier.com/demos/page-corner/" target="_blank">DEMO</a></h1>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;t=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Better+Page+Corner+Ads+with+CSS3+Transforms&amp;body=Link: http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20other%20day%20I%20came%20across%20a%20useful%20site%20called%20ScriptSrc.net%20that%20allows%20you%20to%20get%20%20up-to-date%20script%20tag%20links%20that%20point%20to%20your%20favourite%20JavaScript%20%20libraries.%0D%0A%0D%0AThe%20site%20has%20a%20clickable%20corner%20ad%20promo%20to%20get%20people%20to%20%E2%80%9Cspread%20the%20%20word%E2%80%9D.%20I%20thought%20using%20CSS3%20there%20would%20be%20a%20better%20way" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms&amp;srcUrl=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;srcTitle=Better+Page+Corner+Ads+with+CSS3+Transforms&amp;snippet=The%20other%20day%20I%20came%20across%20a%20useful%20site%20called%20ScriptSrc.net%20that%20allows%20you%20to%20get%20%20up-to-date%20script%20tag%20links%20that%20point%20to%20your%20favourite%20JavaScript%20%20libraries.%0D%0A%0D%0AThe%20site%20has%20a%20clickable%20corner%20ad%20promo%20to%20get%20people%20to%20%E2%80%9Cspread%20the%20%20word%E2%80%9D.%20I%20thought%20using%20CSS3%20there%20would%20be%20a%20better%20way" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Better+Page+Corner+Ads+with+CSS3+Transforms&amp;body=Link: http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20other%20day%20I%20came%20across%20a%20useful%20site%20called%20ScriptSrc.net%20that%20allows%20you%20to%20get%20%20up-to-date%20script%20tag%20links%20that%20point%20to%20your%20favourite%20JavaScript%20%20libraries.%0D%0A%0D%0AThe%20site%20has%20a%20clickable%20corner%20ad%20promo%20to%20get%20people%20to%20%E2%80%9Cspread%20the%20%20word%E2%80%9D.%20I%20thought%20using%20CSS3%20there%20would%20be%20a%20better%20way" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;t=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Better+Page+Corner+Ads+with+CSS3+Transforms+-+http://b2l.me/u9ddj&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms&amp;title=Better+Page+Corner+Ads+with+CSS3+Transforms&amp;desc=The%20other%20day%20I%20came%20across%20a%20useful%20site%20called%20ScriptSrc.net%20that%20allows%20you%20to%20get%20%20up-to-date%20script%20tag%20links%20that%20point%20to%20your%20favourite%20JavaScript%20%20libraries.%0D%0A%0D%0AThe%20site%20has%20a%20clickable%20corner%20ad%20promo%20to%20get%20people%20to%20%E2%80%9Cspread%20the%20%20word%E2%80%9D.%20I%20thought%20using%20CSS3%20there%20would%20be%20a%20better%20way" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Better+Page+Corner+Ads+with+CSS3+Transforms&amp;link=http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/tutorials/css/css-tutorial-generated-content' rel='bookmark' title='Permanent Link: CSS Tutorial &#8211; Generated Content'>CSS Tutorial &#8211; Generated Content</a></li>
<li><a href='http://blog.tikier.com/seo-tips/3-key-off-page-search-engine-optimization-methods' rel='bookmark' title='Permanent Link: 3 Key Off-Page Search Engine Optimization Methods'>3 Key Off-Page Search Engine Optimization Methods</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/tutorials/css/better-page-corner-ads-with-css3-transforms/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Do-It-Yourself Search Engine Optimization Technique That Will Work Miracles For You?</title>
		<link>http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you</link>
		<comments>http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you#comments</comments>
		<pubDate>Mon, 10 May 2010 20:53:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO Tips]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=903</guid>
		<description><![CDATA[It is hard to imagine do-it-yourself search engine optimization actually working. It is even more difficult to believe that it can be done using mostly free tools. But then that is one of the really wonderful things about the World Wide Web - there are so many different ways of skinning a cat or doing [...]


Related posts:<ol><li><a href='http://blog.tikier.com/seo-tips/7-search-engine-optimization-strategies-that-work' rel='bookmark' title='Permanent Link: 7 Search Engine Optimization Strategies That Work'>7 Search Engine Optimization Strategies That Work</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-free-search-engine-optimization-and-writing-tools' rel='bookmark' title='Permanent Link: 7 Free Search Engine Optimization and Writing Tools'>7 Free Search Engine Optimization and Writing Tools</a></li>
<li><a href='http://blog.tikier.com/seo-tips/3-key-off-page-search-engine-optimization-methods' rel='bookmark' title='Permanent Link: 3 Key Off-Page Search Engine Optimization Methods'>3 Key Off-Page Search Engine Optimization Methods</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>It is hard to imagine do-it-yourself search engine optimization actually working. It is even more difficult to believe that it can be done using mostly free tools. But then that is one of the really wonderful things about the World Wide Web - there are so many different ways of skinning a cat or doing the same thing and knowledge can save you more than just a fortune.<br />
<span id="more-903"></span><br />
Besides the truth is that so many web sites that are huge and popular today got where they are through the do-it-yourself search engine optimization efforts and skills of an individual.</p>
<p>Before delving into the techniques that can be used for search engine optimization, it is useful to appreciate what search engines really look for and the reason why most web sites find it so difficult to deliver.</p>
<p>What Do Search Engines Look For?<br />
In most of the search engine articles you read these days, search engines are portrayed as being quite similar to some serial-killing monster with no clear motives other than to kill and destroy. For instance shock outrage and puzzlement are always expressed when leading search engines change their rules.</p>
<p>The problem is that most people forget that the competition between search engines today is so keen, such that their main motive can only be one thing - to become the leading search engine, and when they get there. To retain that position for as long as possible. It is rather obvious that to achieve this objective they have to remain very focused on the customer. The search customer or client, is the person using their favorite search engine to seek all sorts of information. Everybody prefers to use a search engine that is as quick and useful as possible in getting them the information that they seek. It's really that simple. All changes in policies and rules can only be driven by one thing and one thing alone - to become better in the eyes of he customer.</p>
<p>In deciding your page ranking, search engines will look for links to your sites and not just any links, but quality links meaning sites that have a higher ranking than you do. This tells search engines that other sites they rank highly are linked to you and therefore you must be a useful site and therefore deserve a high rank.</p>
<p>The Biggest Obstacle To Getting Enough Good Links To Please Search Engines</p>
<p>Folks are often advised to submit their sites to search engines and high pagerank directories. The problem is that many of these sites will charge you dearly for the privilege of being listed with them. Yahoo for example charges about $299 annually for a site to be listed in their high traffic directory.</p>
<p>The secret to bear in mind here and what most folks do not know, is that many of these sites that ask for so much money will list you almost immediately and for free if you have good quality links pointing to your site. It is that customer driven motive we were talking about again. Good quality links are links from sites that the search engine already ranks highly. The assumption here is that since you have received a vote of confidence from sites that are already held in high esteem by the search engines, then you are also bound to be a useful site that customers who use the search engine will find useful. The higher page ranking you will receive, as a result will mean better search engine visibility for you and naturally, much higher traffic.</p>
<p>Another strategy used to try and gain quality links is to make an effort to submit your site to various directories for free listing, but it will usually take months for one directory to accept your site.</p>
<p>A Powerful Do-It-Yourself Search Engine Optimization Technique<br />
The way to do it is to start off by creating a web page on your site with a list of links. The idea here is to be adding links to other sites on your links page in exchange for the sites doing the same for you. You will of course be careful to concentrate your efforts on getting links from high page rank web sites. It is advisable to find sites that are related to your product or service.</p>
<p>Usually, to make search engines happy, you should limit each reciprocal links page to 50 links only.</p>
<p>Most sites maintain their reciprocal link pages using LinkMan script from PHPJunkYard. You can download this php script from http://phpjunkyard.com. The really amazing thing about LinkMan script is that it allows a site's visitors to add their links immediately after they add links to the site on their own pages. What his menas is that using the LinkMan script you just need to find the desired sites, add their link to your reciprocal links page, and you can immediately add your link to theirs.</p>
<p>Be careful to meet the requirements of the LinkMan script one of which is to place a notice on your links page stating: "Powered by Link manager LinkMan 1.02 from PHPJunkYard - free php scripts."</p>
<p>The Easy Way To Find High Page Rank Sites<br />
You can easily find sites using Linkman by searching on Google for the exact phrase; "Powered by Link manager LinkMan 1.02 from PHPJunkYard." You can also change the phrase to find sites using earlier versions of LinkMan.</p>
<p>Visit the link pages on the sites with a browser showing their Google pagerank. As soon as you come across a site using LinkMan that has a high Google page rank, simply add their link to your reciprocal links page and then add your link to theirs and you are done. You can then move on to find yet another site that you would like to link to.</p>
<p>It is difficult to beat this amazing, free and instant search engine optimization (SEO) technique that is quick, easy to use and extremely effective.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;t=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F&amp;body=Link: http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%20is%20hard%20to%20imagine%20do-it-yourself%20search%20engine%20optimization%20actually%20working.%20It%20is%20even%20more%20difficult%20to%20believe%20that%20it%20can%20be%20done%20using%20mostly%20free%20tools.%20But%20then%20that%20is%20one%20of%20the%20really%20wonderful%20things%20about%20the%20World%20Wide%20Web%20-%20there%20are%20so%20many%20different%20ways%20of%20skinning%20a%20cat%20or%20doi" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F&amp;srcUrl=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;srcTitle=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F&amp;snippet=It%20is%20hard%20to%20imagine%20do-it-yourself%20search%20engine%20optimization%20actually%20working.%20It%20is%20even%20more%20difficult%20to%20believe%20that%20it%20can%20be%20done%20using%20mostly%20free%20tools.%20But%20then%20that%20is%20one%20of%20the%20really%20wonderful%20things%20about%20the%20World%20Wide%20Web%20-%20there%20are%20so%20many%20different%20ways%20of%20skinning%20a%20cat%20or%20doi" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F&amp;body=Link: http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%20is%20hard%20to%20imagine%20do-it-yourself%20search%20engine%20optimization%20actually%20working.%20It%20is%20even%20more%20difficult%20to%20believe%20that%20it%20can%20be%20done%20using%20mostly%20free%20tools.%20But%20then%20that%20is%20one%20of%20the%20really%20wonderful%20things%20about%20the%20World%20Wide%20Web%20-%20there%20are%20so%20many%20different%20ways%20of%20skinning%20a%20cat%20or%20doi" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;t=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+Fo%5B..%5D+-+http://b2l.me/ts488&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you&amp;title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F&amp;desc=It%20is%20hard%20to%20imagine%20do-it-yourself%20search%20engine%20optimization%20actually%20working.%20It%20is%20even%20more%20difficult%20to%20believe%20that%20it%20can%20be%20done%20using%20mostly%20free%20tools.%20But%20then%20that%20is%20one%20of%20the%20really%20wonderful%20things%20about%20the%20World%20Wide%20Web%20-%20there%20are%20so%20many%20different%20ways%20of%20skinning%20a%20cat%20or%20doi" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=A+Do-It-Yourself+Search+Engine+Optimization+Technique+That+Will+Work+Miracles+For+You%3F&amp;link=http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/seo-tips/7-search-engine-optimization-strategies-that-work' rel='bookmark' title='Permanent Link: 7 Search Engine Optimization Strategies That Work'>7 Search Engine Optimization Strategies That Work</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-free-search-engine-optimization-and-writing-tools' rel='bookmark' title='Permanent Link: 7 Free Search Engine Optimization and Writing Tools'>7 Free Search Engine Optimization and Writing Tools</a></li>
<li><a href='http://blog.tikier.com/seo-tips/3-key-off-page-search-engine-optimization-methods' rel='bookmark' title='Permanent Link: 3 Key Off-Page Search Engine Optimization Methods'>3 Key Off-Page Search Engine Optimization Methods</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/seo-tips/a-do-it-yourself-search-engine-optimization-technique-that-will-work-miracles-for-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Ways To Increase Your Blog’s Pageviews</title>
		<link>http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews</link>
		<comments>http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews#comments</comments>
		<pubDate>Mon, 10 May 2010 20:45:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[reference material]]></category>
		<category><![CDATA[rest of the story]]></category>
		<category><![CDATA[special projects]]></category>
		<category><![CDATA[Use]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=900</guid>
		<description><![CDATA[With Google Adsense or Yahoo Publisher, having people click onto more pages helps your revenue immensely, but how do you get them to read more than one page when they visit your website? Here are a few tips. 1. Create pages within the blog that contain reference material you refer to often in your posts. [...]


Related posts:<ol><li><a href='http://blog.tikier.com/blogging/5-ways-to-increase-traffic-to-your-blog' rel='bookmark' title='Permanent Link: 5 ways to increase traffic to your blog'>5 ways to increase traffic to your blog</a></li>
<li><a href='http://blog.tikier.com/blogging/6-easy-ways-to-blog-better' rel='bookmark' title='Permanent Link: 6 Easy Ways To Blog Better'>6 Easy Ways To Blog Better</a></li>
<li><a href='http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book' rel='bookmark' title='Permanent Link: 8 Ways To Use A Blog To Develop Content For Your Book'>8 Ways To Use A Blog To Develop Content For Your Book</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>With Google Adsense or Yahoo Publisher, having people click onto more pages helps your revenue immensely, but how do you get them to read more than one page when they visit your website? Here are a few tips.<br />
<span id="more-900"></span><br />
1. Create pages within the blog that contain reference material you refer to often in your posts. These static pages will also get crawled and indexed by the search engines and as you write posts about your topics you can refer people to these static pages as references to what you are posting about.</p>
<p>2. Use articles as static pages. You can reprint articles on any topic for free by visiting one of the many article directories. Then refer people to read the articles that relate to the post you are making. You could even add one article as a new page every time you make a post.</p>
<p>3. Refer to other posts you have made on your blog or on another one of your blogs while posting. This gets the reader to click over to previous posts. You can even decide your posts by browsing previous posts and deciding which one to follow up on. Those archives are not to be lost and forgotten. Its great material, (you wrote it right?), so use it.</p>
<p>4. Create a page that links to your favorite posts that are timeless. You browse your old posts, find posts that you want readers to find easily, then build a links page with those posts directly linked. Then add a link to that page from your front page. Call it favorite posts or whatever and you will benefit by those that click through and follow those links.</p>
<p>5. I've posted here before about the "more" tag. You write your post as normal, then decide where you want to break the post up onto a new page. You put the more tag in and readers have to click to a new page to read the rest of the story.</p>
<p>6. Write once per week special projects. These are a series of articles on a particular topic. You will be offering it once per week giving readers a week to comment on it, then have them hanging on for next weeks special post in the series. Each time add links to previous posts in that series.</p>
<p>7. Using your content from your other websites or blogs is also a great way to get more pageviews for all of them. Use the target new tag and refer to material on your other blogs and websites. It will open a new window leaving the current blog open while they visit your other website or blog. You can quickly double up your pageviews while also introducing your readers to your other websites and blogs.</p>
<p>8. Make a list of 10 previous posts and the links to those posts. Make a post in your blog about 10 things you want your readers to know and read in case they have not done so before. At your suggestion they will at least go see if they have read those posts before, increasing your pageviews once again plus bringing old material to new readers. That also lets them know they should browse the archives for things they have missed.</p>
<p>9. Using that same list of 10 posts or a new one, visit other blogs on your topic. Find posts that talk about something similar to one of those 10 posts, then instead of adding a link in your signature to the home page, make a comment there and refer to the post that is similar and that contains helpful information to that blogger and their readers. You will also be increasing your link popularity while doing this. Do not spam the link. Make sure it actually contains useful information. Don’t be trolls or spammers and you will end up with new readers and more page views for your blog.</p>
<p>10. Do not stop being creative. Use the tips in this article, plus invent some of your own ways to interlink your blogposts together. Create pages. Don't just post and forget. That content is valuable, use it. Do not make people search your blog. They are lazy and busy. Bring it to them. That is just good customer service.</p>
<p>I hope this article helps you learn there is more to blogging than just writing a post once in awhile or even daily. If you employ the tips I just gave you into your blog I guarantee you will increase your pageviews which in turn will increase your revenue if using an ad program in your blog.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/blogging/10-ways-to-increase-your-blog’s-pageviews/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;t=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews&amp;body=Link: http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews (sent via shareaholic)%0D%0A%0D%0A----%0D%0A With%20Google%20Adsense%20or%20Yahoo%20Publisher%2C%20having%20people%20click%20onto%20more%20pages%20helps%20your%20revenue%20immensely%2C%20but%20how%20do%20you%20get%20them%20to%20read%20more%20than%20one%20page%20when%20they%20visit%20your%20website%3F%20Here%20are%20a%20few%20tips.%0D%0A%0D%0A1.%20Create%20pages%20within%20the%20blog%20that%20contain%20reference%20material%20you%20refer%20to%20often%20in%20you" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews&amp;srcUrl=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;srcTitle=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews&amp;snippet=With%20Google%20Adsense%20or%20Yahoo%20Publisher%2C%20having%20people%20click%20onto%20more%20pages%20helps%20your%20revenue%20immensely%2C%20but%20how%20do%20you%20get%20them%20to%20read%20more%20than%20one%20page%20when%20they%20visit%20your%20website%3F%20Here%20are%20a%20few%20tips.%0D%0A%0D%0A1.%20Create%20pages%20within%20the%20blog%20that%20contain%20reference%20material%20you%20refer%20to%20often%20in%20you" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews&amp;body=Link: http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews (sent via shareaholic)%0D%0A%0D%0A----%0D%0A With%20Google%20Adsense%20or%20Yahoo%20Publisher%2C%20having%20people%20click%20onto%20more%20pages%20helps%20your%20revenue%20immensely%2C%20but%20how%20do%20you%20get%20them%20to%20read%20more%20than%20one%20page%20when%20they%20visit%20your%20website%3F%20Here%20are%20a%20few%20tips.%0D%0A%0D%0A1.%20Create%20pages%20within%20the%20blog%20that%20contain%20reference%20material%20you%20refer%20to%20often%20in%20you" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;t=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews&amp;title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews&amp;desc=With%20Google%20Adsense%20or%20Yahoo%20Publisher%2C%20having%20people%20click%20onto%20more%20pages%20helps%20your%20revenue%20immensely%2C%20but%20how%20do%20you%20get%20them%20to%20read%20more%20than%20one%20page%20when%20they%20visit%20your%20website%3F%20Here%20are%20a%20few%20tips.%0D%0A%0D%0A1.%20Create%20pages%20within%20the%20blog%20that%20contain%20reference%20material%20you%20refer%20to%20often%20in%20you" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=10+Ways+To+Increase+Your+Blog%E2%80%99s+Pageviews&amp;link=http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/blogging/5-ways-to-increase-traffic-to-your-blog' rel='bookmark' title='Permanent Link: 5 ways to increase traffic to your blog'>5 ways to increase traffic to your blog</a></li>
<li><a href='http://blog.tikier.com/blogging/6-easy-ways-to-blog-better' rel='bookmark' title='Permanent Link: 6 Easy Ways To Blog Better'>6 Easy Ways To Blog Better</a></li>
<li><a href='http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book' rel='bookmark' title='Permanent Link: 8 Ways To Use A Blog To Develop Content For Your Book'>8 Ways To Use A Blog To Develop Content For Your Book</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/blogging/10-ways-to-increase-your-blog%e2%80%99s-pageviews/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Most Important Services For A Profitable Internet Home Business</title>
		<link>http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business</link>
		<comments>http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business#comments</comments>
		<pubDate>Tue, 04 May 2010 12:29:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Articles]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[domain registration service]]></category>
		<category><![CDATA[free service provider]]></category>
		<category><![CDATA[free service providers]]></category>
		<category><![CDATA[Name]]></category>
		<category><![CDATA[registration service providers]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[web host server]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=897</guid>
		<description><![CDATA[There are basically 3 services which are of utmost importance to run a profitable internet home business. let us see which are these. The first service you will need and cannot have a website without, is a domain name. A domain name is the name given that is used to find your website, for eg: [...]


Related posts:<ol><li><a href='http://blog.tikier.com/random-articles/3-easy-steps-to-start-your-profitable-internet-home-business' rel='bookmark' title='Permanent Link: 3 Easy Steps To Start Your Profitable Internet Home Business'>3 Easy Steps To Start Your Profitable Internet Home Business</a></li>
<li><a href='http://blog.tikier.com/site-promotion/becoming-an-internet-entrepreneur-tips-and-tricks' rel='bookmark' title='Permanent Link: Becoming an Internet Entrepreneur &#8211; Tips and Tricks!!!'>Becoming an Internet Entrepreneur &#8211; Tips and Tricks!!!</a></li>
<li><a href='http://blog.tikier.com/blogging/3-reasons-why-blogging-will-boost-your-business' rel='bookmark' title='Permanent Link: 3 Reasons Why Blogging Will Boost Your Business!'>3 Reasons Why Blogging Will Boost Your Business!</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>There are basically 3 services which are of utmost importance to run a profitable internet home business. let us see which are these.</p>
<p>The first service you will need and cannot have a website without, is a domain name. A domain name is the name given that is used to find your website, for eg: http://www.yourdomainname.com. YOu need a domain name because your business needs recognition and traffic. Instead of promoting other people's sites its best to promote your own. So you realise the value of a domain name? Now there are several free service providers but it is not recomended. If the free service provider runs out of business and closes down for some reason then all your hard work and your business is going to crashlandand and it can definitely happen. when you are choosing your domain name let it be related to your business and easy to remember. The next step is to choose an extension. There are several extension available but .com is the best one to choose.There are several domain registration service providers. choose a good one, do some background check and then decide.185<br />
<span id="more-897"></span><br />
The next is a webhosting service. I would like to repeat the same thing here, never go for a free service. You will need to do your profitable internet home business in a professional and credible way. With free service providers, there will be advertisements in your site and some may not be of your business interest. Secondly when you want to expand your business, which will come soon enough, and need extra space, you will need to go for paid service since your free service provider will not provide extra space and at that time you loose your old customers and traffic. Hence a good webhosting service is very important. Let us see what webhosting really means. Your website files and all related information and data are stored in your web host server/computers. This is required because your website should be available 24/7 and should be able to accomodate any amount of traffic.150</p>
<p>When choosing your webhosting sevice you will need to look for a few important features you need to run the website like:</p>
<p>1. CGI - BIN, this is required for interactivity of your website.</p>
<p>2. PHP4,</p>
<p>3. uptime, this is the amout of time your site is available for visitors, this should be 24/7 or close</p>
<p>4. excellent cutomer support,</p>
<p>5. setup fees, none</p>
<p>6. space, more the better</p>
<p>7. traffic capacity/ bandwidth, more the better</p>
<p>8. pop email accounts, never less than 10 but unimited is the best</p>
<p>9. site stats, needed to keep track of yor site</p>
<p>10. FTP, atleast one account.</p>
<p>The third most important service is autoresponders. what is an autoresponder? an autoresponder follows up with your website visitors to provide useful information, build trust and ultimetely make some sales. Why does one need an autoresponder? here's why. Majority of the people who visit your website will not buy from you on their first visit. infact, most people do not buy a product on the internet until they have seen it or heard about it atleast 7 time. If you are promoting a product on the internet and you don't have an effective way to capture and follow-up with your website visitors to remind them about the products and services you are promoting, you will lose a lot of sales.</p>
<p>let us summerise, the 3 most important services to run a profitable internet home business are:</p>
<p>a) domain name service</p>
<p>b) webhosting service and</p>
<p>c) autoresponder service.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;t=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business&amp;body=Link: http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20basically%203%20services%20which%20are%20of%20utmost%20importance%20to%20run%20a%20profitable%20internet%20home%20business.%20let%20us%20see%20which%20are%20these.%0D%0A%0D%0AThe%20first%20service%20you%20will%20need%20and%20cannot%20have%20a%20website%20without%2C%20is%20a%20domain%20name.%20A%20domain%20name%20is%20the%20name%20given%20that%20is%20used%20to%20find%20your%20website%2C%20for%20eg%3A%20htt" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business&amp;srcUrl=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;srcTitle=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business&amp;snippet=There%20are%20basically%203%20services%20which%20are%20of%20utmost%20importance%20to%20run%20a%20profitable%20internet%20home%20business.%20let%20us%20see%20which%20are%20these.%0D%0A%0D%0AThe%20first%20service%20you%20will%20need%20and%20cannot%20have%20a%20website%20without%2C%20is%20a%20domain%20name.%20A%20domain%20name%20is%20the%20name%20given%20that%20is%20used%20to%20find%20your%20website%2C%20for%20eg%3A%20htt" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business&amp;body=Link: http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20basically%203%20services%20which%20are%20of%20utmost%20importance%20to%20run%20a%20profitable%20internet%20home%20business.%20let%20us%20see%20which%20are%20these.%0D%0A%0D%0AThe%20first%20service%20you%20will%20need%20and%20cannot%20have%20a%20website%20without%2C%20is%20a%20domain%20name.%20A%20domain%20name%20is%20the%20name%20given%20that%20is%20used%20to%20find%20your%20website%2C%20for%20eg%3A%20htt" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;t=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business+-+http://b2l.me/sr8jx&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business&amp;title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business&amp;desc=There%20are%20basically%203%20services%20which%20are%20of%20utmost%20importance%20to%20run%20a%20profitable%20internet%20home%20business.%20let%20us%20see%20which%20are%20these.%0D%0A%0D%0AThe%20first%20service%20you%20will%20need%20and%20cannot%20have%20a%20website%20without%2C%20is%20a%20domain%20name.%20A%20domain%20name%20is%20the%20name%20given%20that%20is%20used%20to%20find%20your%20website%2C%20for%20eg%3A%20htt" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=3+Most+Important+Services+For+A+Profitable+Internet+Home+Business&amp;link=http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/random-articles/3-easy-steps-to-start-your-profitable-internet-home-business' rel='bookmark' title='Permanent Link: 3 Easy Steps To Start Your Profitable Internet Home Business'>3 Easy Steps To Start Your Profitable Internet Home Business</a></li>
<li><a href='http://blog.tikier.com/site-promotion/becoming-an-internet-entrepreneur-tips-and-tricks' rel='bookmark' title='Permanent Link: Becoming an Internet Entrepreneur &#8211; Tips and Tricks!!!'>Becoming an Internet Entrepreneur &#8211; Tips and Tricks!!!</a></li>
<li><a href='http://blog.tikier.com/blogging/3-reasons-why-blogging-will-boost-your-business' rel='bookmark' title='Permanent Link: 3 Reasons Why Blogging Will Boost Your Business!'>3 Reasons Why Blogging Will Boost Your Business!</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/random-articles/3-most-important-services-for-a-profitable-internet-home-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Tips to Drive Internet Traffic To Your Website Which You Can&#8217;t Affort to Overlook</title>
		<link>http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook</link>
		<comments>http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook#comments</comments>
		<pubDate>Tue, 04 May 2010 12:28:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Traffic Generation]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[free submission service]]></category>
		<category><![CDATA[google adwords]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[One Way]]></category>
		<category><![CDATA[Rich Site]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engines submission]]></category>
		<category><![CDATA[silence web]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[yahoo google]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=895</guid>
		<description><![CDATA[You have set up a website with very useful information that you think it will benefit your visitors. Day to days, you keep update the latest information and publishing articles; hoping people will visit your website and found your useful information. But day in day out you check your website traffic stats, there are no [...]


Related posts:<ol><li><a href='http://blog.tikier.com/traffic-generation/3-tips-for-building-traffic-to-your-website' rel='bookmark' title='Permanent Link: 3 Tips For Building Traffic To Your Website'>3 Tips For Building Traffic To Your Website</a></li>
<li><a href='http://blog.tikier.com/traffic-generation/7-ways-to-generate-more-website-traffic' rel='bookmark' title='Permanent Link: 7 Ways To Generate More Website Traffic'>7 Ways To Generate More Website Traffic</a></li>
<li><a href='http://blog.tikier.com/traffic-generation/4-ways-to-get-traffic-to-your-website' rel='bookmark' title='Permanent Link: 4 Ways To Get Traffic To Your Website'>4 Ways To Get Traffic To Your Website</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>You have set up a website with very useful information that you think it will benefit your visitors. Day to days, you keep update the latest information and publishing articles; hoping people will visit your website and found your useful information. But day in day out you check your website traffic stats, there are no one comment and your website has very low impressions. Why it’s like that? There reason is nobody knows your website. There are thousand of hundreds of website on internet, you put your website on internet but who will know your website if you not announce it. Yes, you need to drive the traffic to your website, but how?Here are 10 tips in no particular order of importance, that you can start doing now to get traffic moving to your website.</p>
<p><span id="more-895"></span></p>
<p><strong>1. Submit or Add Your Site to Major Search Engines</strong> Search engines submission will increase your Page Ranking and when your web page is ranked in a high ranking positions, your website will be easily searched and seen by internet users if your pages are meeting their relevant search keyword. Focus on major search engines such as Yahoo, Google and MSN. Don’t use the free submission service or fee submission which will submit to many search engines because those services might hurt your page ranking as many has banned by major search engines such as Yahoo and Google.</p>
<p><strong>2. Pay-per-click (CPC) Marketing</strong> If you marketing budget is sufficient, you could use Pay-per-click (CPC) marketing service provided by Google (Google Adwords) &amp; Yahoo. CPC is one of very effective way to drive traffic to your website.</p>
<p><strong>3. Audio Postcard for email marketing</strong> Internet has been for a short time but it has gone through various revolutions, today, silence web now can start talking and help you to promote your website. AudioGenerator.com is one of leader in providing integrated human voice audio clip which you can be added to your website and email. <strong>Because the human voice has the power to influence, motivate, and persuade prospects</strong> to click "Order Now" buttons faster and with less resistance. AudioGenerator.com also has audio postcard which can help you drive significant traffic to your website. We had tried the audio postcard of AudioGenerator.com to drive traffic to our website at studykiosk.com, it a proven method.</p>
<p><strong>4. Press Announcement </strong>Making press announcement can be one of effective method of create backlinks to your website and it really help in your page ranking positions. Website like prweb.com provide FREE press announcement service, you can utilize it to drive traffic to your website.</p>
<p><strong>5. Articles Submission </strong>Articles submission to article bank is one of the best ways to expose your website to the public. There are many visitors drop by these sites to look for related information and your articles might be among their search results.</p>
<p><strong>6. Trade Link Request &amp; One Way Incoming Links</strong> One of the search engines optimization is to have as many as possible the incoming links to your website. You could request trade links or link exchanges with other webmaster. One way incoming link is other website link to yours without the need of you to link to them. If you website has useful information to other website, they probably will add a link to their website to link to yours. There many website which provide one-way links service, but almost all of them are need monthly or year subscription fee.</p>
<p><strong>7. RSS Feed</strong> Make sure you have an RSS feed URL that people can subscribe to. The acronym RSS means Rich Site Summary or Really Simple Syndication. It is a document type that lists updates of websites or blogs available for syndication.</p>
<p><strong>8. Viral Marketing</strong> Viral marketing is another way of say “word-of-mouth”. On internet, “word-of-mouth” spread so fast thru email. The key to successful of viral marketing is to send out something that people want to share. That can be anything from a joke, funny story or link to home-made video.</p>
<p><strong>9. Blogs &amp; Forums </strong>Blogs &amp; forums invite comments from readers and most of them will allow you to leave a link in your signature line. One of way to create backlinks and drive traffic to your website.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;t=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook&amp;body=Link: http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20have%20set%20up%20a%20website%20with%20very%20useful%20information%20that%20you%20think%20it%20will%20benefit%20your%20visitors.%20Day%20to%20days%2C%20you%20keep%20update%20the%20latest%20information%20and%20publishing%20articles%3B%20hoping%20people%20will%20visit%20your%20website%20and%20found%20your%20useful%20information.%20But%20day%20in%20day%20out%20you%20check%20your%20website%20traffic" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook&amp;srcUrl=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;srcTitle=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook&amp;snippet=You%20have%20set%20up%20a%20website%20with%20very%20useful%20information%20that%20you%20think%20it%20will%20benefit%20your%20visitors.%20Day%20to%20days%2C%20you%20keep%20update%20the%20latest%20information%20and%20publishing%20articles%3B%20hoping%20people%20will%20visit%20your%20website%20and%20found%20your%20useful%20information.%20But%20day%20in%20day%20out%20you%20check%20your%20website%20traffic" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook&amp;body=Link: http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook (sent via shareaholic)%0D%0A%0D%0A----%0D%0A You%20have%20set%20up%20a%20website%20with%20very%20useful%20information%20that%20you%20think%20it%20will%20benefit%20your%20visitors.%20Day%20to%20days%2C%20you%20keep%20update%20the%20latest%20information%20and%20publishing%20articles%3B%20hoping%20people%20will%20visit%20your%20website%20and%20found%20your%20useful%20information.%20But%20day%20in%20day%20out%20you%20check%20your%20website%20traffic" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;t=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overl%5B..%5D+-+http://b2l.me/sr8bs&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook&amp;title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook&amp;desc=You%20have%20set%20up%20a%20website%20with%20very%20useful%20information%20that%20you%20think%20it%20will%20benefit%20your%20visitors.%20Day%20to%20days%2C%20you%20keep%20update%20the%20latest%20information%20and%20publishing%20articles%3B%20hoping%20people%20will%20visit%20your%20website%20and%20found%20your%20useful%20information.%20But%20day%20in%20day%20out%20you%20check%20your%20website%20traffic" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=9+Tips+to+Drive+Internet+Traffic+To+Your+Website+Which+You+Can%27t+Affort+to+Overlook&amp;link=http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/traffic-generation/3-tips-for-building-traffic-to-your-website' rel='bookmark' title='Permanent Link: 3 Tips For Building Traffic To Your Website'>3 Tips For Building Traffic To Your Website</a></li>
<li><a href='http://blog.tikier.com/traffic-generation/7-ways-to-generate-more-website-traffic' rel='bookmark' title='Permanent Link: 7 Ways To Generate More Website Traffic'>7 Ways To Generate More Website Traffic</a></li>
<li><a href='http://blog.tikier.com/traffic-generation/4-ways-to-get-traffic-to-your-website' rel='bookmark' title='Permanent Link: 4 Ways To Get Traffic To Your Website'>4 Ways To Get Traffic To Your Website</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/traffic-generation/9-tips-to-drive-internet-traffic-to-your-website-which-you-cant-affort-to-overlook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benefits of Directory Submission Services</title>
		<link>http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services</link>
		<comments>http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services#comments</comments>
		<pubDate>Tue, 04 May 2010 12:25:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Promotion]]></category>
		<category><![CDATA[cause and effect relationship]]></category>
		<category><![CDATA[Directory]]></category>
		<category><![CDATA[directory submissions]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[new search engines]]></category>
		<category><![CDATA[rank]]></category>
		<category><![CDATA[referral system]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engine spiders]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=893</guid>
		<description><![CDATA[There are so many criterions that search engines follow to determine a site’s rank for certain key or search words. One of these includes links to the site. The page rank of a site is directly related to the number of links it has. The more links you have pointed to your site, with some [...]


Related posts:<ol><li><a href='http://blog.tikier.com/site-promotion/are-directory-links-still-effective' rel='bookmark' title='Permanent Link: Are directory Links still effective?'>Are directory Links still effective?</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-search-engine-optimization-strategies-that-work' rel='bookmark' title='Permanent Link: 7 Search Engine Optimization Strategies That Work'>7 Search Engine Optimization Strategies That Work</a></li>
<li><a href='http://blog.tikier.com/site-promotion/a-new-robotic-linking-software-for-reciprocal-links' rel='bookmark' title='Permanent Link: A New Robotic Linking Software For Reciprocal Links'>A New Robotic Linking Software For Reciprocal Links</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>There are so many criterions that search engines follow to determine a site’s rank for certain key or search words. One of these includes links to the site. The page rank of a site is directly related to the number of links it has. The more links you have pointed to your site, with some variation of the key phrase you want to rank high for, the better ranking in the search engines you will receive.<br />
<span id="more-893"></span><br />
Relationship between directory submissions and search engine rankings</p>
<p>One way links and search engine rankings have a great cause and effect relationship. Think of it as a business referral system. The business with the more referrals is most popular and hence, search engines rank them higher. The reason behind it, as many put it, is that the more links you have, higher are the chances of a visitor coming to your site through these links!</p>
<p>Again, the search engines send out spiders to the links they find in the directory pages. This will bring the search engine spiders to your site and will get your site pages added to the search engines indexes automatically.<br />
In future, the new search engines will also follow the same procedure. Hence, you won’t have to register to them, rather they will find you themselves!</p>
<p>You can also improve your sales!</p>
<p>Again, many people actually do surf these directories to look for the things they want. So they will also act as a medium to bring in your prospective customer to your site.<br />
Thus directory submission has three major benefits, which makes it indispensable tool of online marketing.</p>
<p>1.    Higher Position In The Search Engine Results<br />
2.    Web Site Indexed<br />
3.    Click Through Traffic</p>
<p>So that is something one should focus on if they are interested in increasing the rankings and traffic of their site. Many sites who offer submission service, claim to submit your link in more than 75000 directories (mind you, few even claim the figure to be around 7,00,000!). But one should remember that submitting a link and getting it listed in the directory is not the same thing. It is like an auction, you don’t win merely by bidding. Others will just bid for you, but we at Submit2please.com, will make sure that your bid is a success. We will try our level best to insure a high rate of acceptance. We also assure you that the process will not be much time consuming and the results will start pouring in within a fortnight.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;t=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Benefits+of+Directory+Submission+Services&amp;body=Link: http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20so%20many%20criterions%20that%20search%20engines%20follow%20to%20determine%20a%20site%E2%80%99s%20rank%20for%20certain%20key%20or%20search%20words.%20One%20of%20these%20includes%20links%20to%20the%20site.%20The%20page%20rank%20of%20a%20site%20is%20directly%20related%20to%20the%20number%20of%20links%20it%20has.%20The%20more%20links%20you%20have%20pointed%20to%20your%20site%2C%20with%20some%20variation%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services&amp;srcUrl=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;srcTitle=Benefits+of+Directory+Submission+Services&amp;snippet=There%20are%20so%20many%20criterions%20that%20search%20engines%20follow%20to%20determine%20a%20site%E2%80%99s%20rank%20for%20certain%20key%20or%20search%20words.%20One%20of%20these%20includes%20links%20to%20the%20site.%20The%20page%20rank%20of%20a%20site%20is%20directly%20related%20to%20the%20number%20of%20links%20it%20has.%20The%20more%20links%20you%20have%20pointed%20to%20your%20site%2C%20with%20some%20variation%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Benefits+of+Directory+Submission+Services&amp;body=Link: http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services (sent via shareaholic)%0D%0A%0D%0A----%0D%0A There%20are%20so%20many%20criterions%20that%20search%20engines%20follow%20to%20determine%20a%20site%E2%80%99s%20rank%20for%20certain%20key%20or%20search%20words.%20One%20of%20these%20includes%20links%20to%20the%20site.%20The%20page%20rank%20of%20a%20site%20is%20directly%20related%20to%20the%20number%20of%20links%20it%20has.%20The%20more%20links%20you%20have%20pointed%20to%20your%20site%2C%20with%20some%20variation%20" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;t=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Benefits+of+Directory+Submission+Services+-+http://b2l.me/sr74v&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services&amp;title=Benefits+of+Directory+Submission+Services&amp;desc=There%20are%20so%20many%20criterions%20that%20search%20engines%20follow%20to%20determine%20a%20site%E2%80%99s%20rank%20for%20certain%20key%20or%20search%20words.%20One%20of%20these%20includes%20links%20to%20the%20site.%20The%20page%20rank%20of%20a%20site%20is%20directly%20related%20to%20the%20number%20of%20links%20it%20has.%20The%20more%20links%20you%20have%20pointed%20to%20your%20site%2C%20with%20some%20variation%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Benefits+of+Directory+Submission+Services&amp;link=http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/site-promotion/are-directory-links-still-effective' rel='bookmark' title='Permanent Link: Are directory Links still effective?'>Are directory Links still effective?</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-search-engine-optimization-strategies-that-work' rel='bookmark' title='Permanent Link: 7 Search Engine Optimization Strategies That Work'>7 Search Engine Optimization Strategies That Work</a></li>
<li><a href='http://blog.tikier.com/site-promotion/a-new-robotic-linking-software-for-reciprocal-links' rel='bookmark' title='Permanent Link: A New Robotic Linking Software For Reciprocal Links'>A New Robotic Linking Software For Reciprocal Links</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/site-promotion/benefits-of-directory-submission-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Banned Site Re-indexed By Google and MSN Live within 24 hours &#8211; EASY!</title>
		<link>http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy</link>
		<comments>http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy#comments</comments>
		<pubDate>Fri, 30 Apr 2010 07:59:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO Tips]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[directory submission]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googles]]></category>
		<category><![CDATA[optimization tools]]></category>
		<category><![CDATA[seach engine optimization]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[US]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website submission]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=890</guid>
		<description><![CDATA[The question was 'Can we take a banned site - No pages indexed in google, yahoo or live and can we give it life and PR rank?' Well it took 2 days for a banned domain to enter the MSN Live and the Google Indexes. Now thats fast. But how was it done Actually the [...]


Related posts:<ol><li><a href='http://blog.tikier.com/website-building/step-12-submit-to-search-engines-and-promote-the-site' rel='bookmark' title='Permanent Link: Step 12 &#8211; Submit to Search Engines and Promote the Site'>Step 12 &#8211; Submit to Search Engines and Promote the Site</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-free-search-engine-optimization-and-writing-tools' rel='bookmark' title='Permanent Link: 7 Free Search Engine Optimization and Writing Tools'>7 Free Search Engine Optimization and Writing Tools</a></li>
<li><a href='http://blog.tikier.com/traffic-generation/4-ways-to-get-traffic-to-your-website' rel='bookmark' title='Permanent Link: 4 Ways To Get Traffic To Your Website'>4 Ways To Get Traffic To Your Website</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p>The question was 'Can we take a banned site - No pages indexed in google, yahoo or live and can we give it life and PR rank?'<br />
Well it took 2 days for a banned domain to enter the MSN Live and the Google Indexes. Now thats fast.<br />
<span id="more-890"></span><br />
But how was it done<br />
Actually the website is set up as a tutorial on how to succeed with SEO seach engine optimization. It is a step by step guild to soring in the SERPs ranking.</p>
<p>Just take a look at all the free tools offered all over the internet that practically force the search engines to index you. Take a hint and follow the links on this site, they take you to amazing free optimization tools.</p>
<p>So here are the basic steps that got this domain re-indexed after being banned.</p>
<p>1. Added content- index.php | experiment.html | report.html | paid-directories.html<br />
2. Put together an article about the 'Website Directory Submission Experiment'<br />
3. Submit the article to digg.com, please if you are a member please then digg this story!<br />
3. Wait as long as I can to submit our article below to 640 Article Directories with Article Submitter.<br />
I want this website submission experiment webpage to be indexed by google first! This will secure that your domain is the original source article and then we will not go into the googles suplimentals index. We do not want google to assume an articles site which we submitted to is the article source. Make sure you get your articles into the big article directories!<br />
4. Continue to submit to the web directory database.<br />
5. SEO TECHNIQUES<br />
- Placed TARGET="BLANK" on all outgoing links I have so many outlinks to very reputable sources. It is smart to keep people on your site, so let them view your suggested outgoing urls, but always leave your site page open. I even placed TARGET="BLANK" on affiliate links such as</p>
<p>Website Submitter | Article Submitter<br />
Then I went ahead and placed up meta tags with an off beat title to the site<br />
&lt;.title&gt;That is only 10c for a permanent link pointing to your website!&lt;.title&gt;<br />
its actually a one line sales pitch. In the description i just cut a block of text out of my main body<br />
&lt;.meta name="Description" content="We will hand submit YOUR site to 2000 FREE DIRECTORIES for $200 US That is only 10c for a permant link pointing to your website! Compare that with adwords | SEO search engine optimization is link building." /.&gt; and pasted it straight in as the meta description. I also use this description across all directory site submissions and acticle site submissions.</p>
<p>Also FORCE GOOGLE to visit your site in everyway possible<br />
1. Reinclusion request.<br />
2. ADD URL.<br />
3. Place Adsense.<br />
4. Place a google search form on your site.<br />
5. Set-up adwords campaign and force google to scan your sites keywords! How?<br />
Use the capaign keywords tool and select the option 'Site Related Keywords'<br />
Here is what Google scanned, so we can see an insight into what Google thinks about this site, and it's a perfect result!<br />
5. Setup an Adwords Campaign using the suggested keywords, create some Adwords Adds. I have posted my Adds below!<br />
6. I added the very important OnlyWire button<br />
7. Place your domain to these directories ASAP!<br />
8. Free email subscription service set up on the site for you to sign up to receive our SEO strategy techniques and discounts.<br />
9. Placed a free translation script on the site to cater for foreign language visitors. 10 x the pages to index for the engines.<br />
PS. please note that we are already indexed in Google and MSN Live after one day, 20 September 2007.</p>
<p>Will it last?<br />
Probably not as we will be indexed but now categorized and themed and adjusted within the SERPs.<br />
So we will come and go - but indexed for two major engines within two days is very good!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;t=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21&amp;body=Link: http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20question%20was%20%27Can%20we%20take%20a%20banned%20site%20-%20No%20pages%20indexed%20in%20google%2C%20yahoo%20or%20live%20and%20can%20we%20give%20it%20life%20and%20PR%20rank%3F%27%0D%0AWell%20it%20took%202%20days%20for%20a%20banned%20domain%20to%20enter%20the%20MSN%20Live%20and%20the%20Google%20Indexes.%20Now%20thats%20fast.%0D%0A%0D%0ABut%20how%20was%20it%20done%0D%0AActually%20the%20website%20is%20set%20up%20as%20a%20tutorial%20on" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21&amp;srcUrl=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;srcTitle=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21&amp;snippet=The%20question%20was%20%27Can%20we%20take%20a%20banned%20site%20-%20No%20pages%20indexed%20in%20google%2C%20yahoo%20or%20live%20and%20can%20we%20give%20it%20life%20and%20PR%20rank%3F%27%0D%0AWell%20it%20took%202%20days%20for%20a%20banned%20domain%20to%20enter%20the%20MSN%20Live%20and%20the%20Google%20Indexes.%20Now%20thats%20fast.%0D%0A%0D%0ABut%20how%20was%20it%20done%0D%0AActually%20the%20website%20is%20set%20up%20as%20a%20tutorial%20on" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21&amp;body=Link: http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20question%20was%20%27Can%20we%20take%20a%20banned%20site%20-%20No%20pages%20indexed%20in%20google%2C%20yahoo%20or%20live%20and%20can%20we%20give%20it%20life%20and%20PR%20rank%3F%27%0D%0AWell%20it%20took%202%20days%20for%20a%20banned%20domain%20to%20enter%20the%20MSN%20Live%20and%20the%20Google%20Indexes.%20Now%20thats%20fast.%0D%0A%0D%0ABut%20how%20was%20it%20done%0D%0AActually%20the%20website%20is%20set%20up%20as%20a%20tutorial%20on" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;t=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21+-+http://b2l.me/r3jf8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy&amp;title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21&amp;desc=The%20question%20was%20%27Can%20we%20take%20a%20banned%20site%20-%20No%20pages%20indexed%20in%20google%2C%20yahoo%20or%20live%20and%20can%20we%20give%20it%20life%20and%20PR%20rank%3F%27%0D%0AWell%20it%20took%202%20days%20for%20a%20banned%20domain%20to%20enter%20the%20MSN%20Live%20and%20the%20Google%20Indexes.%20Now%20thats%20fast.%0D%0A%0D%0ABut%20how%20was%20it%20done%0D%0AActually%20the%20website%20is%20set%20up%20as%20a%20tutorial%20on" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=A+Banned+Site+Re-indexed+By+Google+and+MSN+Live+within+24+hours+-+EASY%21&amp;link=http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/website-building/step-12-submit-to-search-engines-and-promote-the-site' rel='bookmark' title='Permanent Link: Step 12 &#8211; Submit to Search Engines and Promote the Site'>Step 12 &#8211; Submit to Search Engines and Promote the Site</a></li>
<li><a href='http://blog.tikier.com/seo-tips/7-free-search-engine-optimization-and-writing-tools' rel='bookmark' title='Permanent Link: 7 Free Search Engine Optimization and Writing Tools'>7 Free Search Engine Optimization and Writing Tools</a></li>
<li><a href='http://blog.tikier.com/traffic-generation/4-ways-to-get-traffic-to-your-website' rel='bookmark' title='Permanent Link: 4 Ways To Get Traffic To Your Website'>4 Ways To Get Traffic To Your Website</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/seo-tips/a-banned-site-re-indexed-by-google-and-msn-live-within-24-hours-easy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Ways To Use A Blog To Develop Content For Your Book</title>
		<link>http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book</link>
		<comments>http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book#comments</comments>
		<pubDate>Fri, 30 Apr 2010 07:53:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogosphere]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[field]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[informal survey]]></category>
		<category><![CDATA[Michael Levine]]></category>
		<category><![CDATA[mini study]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[slants]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=888</guid>
		<description><![CDATA[1. Participate in the blogosphere: Read and comment on other blogs in your field. This is a prime way to build readership of your blog. It is also a way of getting fresh content for both your blog and for your book. To check out other blogs in your niche: use www.blogsearch.google.com, www.technorati.com, or www.google.com. [...]


Related posts:<ol><li><a href='http://blog.tikier.com/blogging/4-key-ways-to-keep-visitors-coming-to-your-blog-site' rel='bookmark' title='Permanent Link: 4 Key Ways To Keep Visitors Coming To Your Blog Site!'>4 Key Ways To Keep Visitors Coming To Your Blog Site!</a></li>
<li><a href='http://blog.tikier.com/blogging/5-ways-to-increase-traffic-to-your-blog' rel='bookmark' title='Permanent Link: 5 ways to increase traffic to your blog'>5 ways to increase traffic to your blog</a></li>
<li><a href='http://blog.tikier.com/blogging/6-easy-ways-to-blog-better' rel='bookmark' title='Permanent Link: 6 Easy Ways To Blog Better'>6 Easy Ways To Blog Better</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><strong>1.</strong> Participate in the blogosphere: Read and comment on other blogs in your field. This is a prime way to build readership of your blog. It is also a way of getting fresh content for both your blog and for your book.<br />
<span id="more-888"></span><br />
To check out other blogs in your niche: use www.blogsearch.google.com, www.technorati.com, or www.google.com.</p>
<p>This is also a good way to get ideas. What are other people in your field writing about? What are the major challenges of the people in your field? If you have competitors, check them out. They may be a great help in inspiring you for content ideas, different slants and perspectives. The old song, “Anything you can do, I can do better,” comes to mind.</p>
<p><strong>2.</strong> Ask readers to comment on your blog. In fact, each time you post something, ask them a question. Then spell it out to them on how to post a comment because your readers will probably need to be educated or at least encouraged to comment. ("Click on the comment link in the footer of this post, and leave your responses.")</p>
<p>Sometimes readers will need assurances of privacy, in which case, you can ask them to email you their questions or comments in private. Others are not worried about privacy because after all, a blog isn’t meant to be private. However, readers can be shy about commenting, and need encouragement.</p>
<p>You may also encourage them to respond by telling them that you would like to use their replies in your book, but will only do so with their permission.</p>
<p><strong>3.</strong> Survey your readers, do a mini-study on their preferences, their experiences, etc. The Internet is the fastest way to acquire some statistics of readers’ preferences. Far from being a scientifically validated study that would pass muster in universities with academicians, an informal survey can give you ideas and material to write about. It can also confirm that you are addressing the concerns of your readers.</p>
<p><strong>4. </strong>Run a contest for the best idea, funniest experience, most influential or heart-grabbing situation. If you want to use these readers’ responses for content in your book, you should tell them. Many people jump at the chance to be included in a book. Others may prefer to participate anonymously. You can give them both options.</p>
<p>Here’s an example of how one writer asked his readers for input:</p>
<p>Do You Have A Broken WIndows Story?<br />
Michael Levine's new book, Broken WIndows, Broken Business is being released later this month. Many people feel this is going to be a mega best-seller.</p>
<p>We have set up a website, where you can rant about broken windows in your everyday experience... Check it out at BrokenWindows.com.</p>
<p>People love to share their experiences, and they love to rant, or rave. Just ask.</p>
<p><strong>5.</strong> Ask your readers to attend a teleseminar based on the needs, challenges, concepts and ideas of your blog readers. This is a great way to go deeper into the problems and solutions you are writing about. You can record the sessions, transcribe the dialogue, convert the teleseminar to audio and PDF files. These can be sold, or given away as marketing materials for your book.</p>
<p><strong>6.</strong> Use your blog site meter stats to examine what are the most popular articles posted. This information will guide you to expand on the topics and subtopics that capture the interests of readers.</p>
<p><strong>7.</strong> Consistently reconnect with your passion, and ignite and inspire others with similar interests. After you’ve been blogging for awhile, you will probably develop good blogging habits:</p>
<p>a. Write something on your blog daily, or at least 2-3 times a week.</p>
<p>b. Read other blogs 2-3 times a week. Be sure to use the My Yahoo or other RSS feed buttons to subscribe to your favorite blogs, or sign up to get email updates through a FeedBlitz service on each blog.</p>
<p>c. Write with your readers in mind. And if you’re not sure where their interests lie, ask them. If they’ve found your blog, and have subscribed, chances are you share a lot in common.</p>
<p>d. If you ever fall into blog-block, reconnect with your core purpose for the blog (remember, the one you wrote out before starting your blog?). When this happens there is usually a reason, although it may not be clear to you at the time. This will pass. You can help it along by asking questions – of your readers, yourself, your closest allies.</p>
<p><strong>8.</strong> Podcasting – Create audio files easily by scheduling teleclasses and recording them. Some people like to get their information auditorily and at their convenience by downloading mp3 files to their iPods.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;t=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book&amp;body=Link: http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book (sent via shareaholic)%0D%0A%0D%0A----%0D%0A 1.%20Participate%20in%20the%20blogosphere%3A%20Read%20and%20comment%20on%20other%20blogs%20in%20your%20field.%20This%20is%20a%20prime%20way%20to%20build%20readership%20of%20your%20blog.%20It%20is%20also%20a%20way%20of%20getting%20fresh%20content%20for%20both%20your%20blog%20and%20for%20your%20book.%0D%0A%0D%0ATo%20check%20out%20other%20blogs%20in%20your%20niche%3A%20use%20www.blogsearch.google.com%2C%20www.techno" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book&amp;srcUrl=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;srcTitle=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book&amp;snippet=1.%20Participate%20in%20the%20blogosphere%3A%20Read%20and%20comment%20on%20other%20blogs%20in%20your%20field.%20This%20is%20a%20prime%20way%20to%20build%20readership%20of%20your%20blog.%20It%20is%20also%20a%20way%20of%20getting%20fresh%20content%20for%20both%20your%20blog%20and%20for%20your%20book.%0D%0A%0D%0ATo%20check%20out%20other%20blogs%20in%20your%20niche%3A%20use%20www.blogsearch.google.com%2C%20www.techno" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book&amp;body=Link: http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book (sent via shareaholic)%0D%0A%0D%0A----%0D%0A 1.%20Participate%20in%20the%20blogosphere%3A%20Read%20and%20comment%20on%20other%20blogs%20in%20your%20field.%20This%20is%20a%20prime%20way%20to%20build%20readership%20of%20your%20blog.%20It%20is%20also%20a%20way%20of%20getting%20fresh%20content%20for%20both%20your%20blog%20and%20for%20your%20book.%0D%0A%0D%0ATo%20check%20out%20other%20blogs%20in%20your%20niche%3A%20use%20www.blogsearch.google.com%2C%20www.techno" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;t=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book+-+http://b2l.me/r3hmq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book&amp;title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book&amp;desc=1.%20Participate%20in%20the%20blogosphere%3A%20Read%20and%20comment%20on%20other%20blogs%20in%20your%20field.%20This%20is%20a%20prime%20way%20to%20build%20readership%20of%20your%20blog.%20It%20is%20also%20a%20way%20of%20getting%20fresh%20content%20for%20both%20your%20blog%20and%20for%20your%20book.%0D%0A%0D%0ATo%20check%20out%20other%20blogs%20in%20your%20niche%3A%20use%20www.blogsearch.google.com%2C%20www.techno" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=8+Ways+To+Use+A+Blog+To+Develop+Content+For+Your+Book&amp;link=http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/blogging/4-key-ways-to-keep-visitors-coming-to-your-blog-site' rel='bookmark' title='Permanent Link: 4 Key Ways To Keep Visitors Coming To Your Blog Site!'>4 Key Ways To Keep Visitors Coming To Your Blog Site!</a></li>
<li><a href='http://blog.tikier.com/blogging/5-ways-to-increase-traffic-to-your-blog' rel='bookmark' title='Permanent Link: 5 ways to increase traffic to your blog'>5 ways to increase traffic to your blog</a></li>
<li><a href='http://blog.tikier.com/blogging/6-easy-ways-to-blog-better' rel='bookmark' title='Permanent Link: 6 Easy Ways To Blog Better'>6 Easy Ways To Blog Better</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/blogging/8-ways-to-use-a-blog-to-develop-content-for-your-book/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release Notification: 11.25.0 DNSONLY</title>
		<link>http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly</link>
		<comments>http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:59:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Updates]]></category>
		<category><![CDATA[BETA]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[DNSONLY]]></category>
		<category><![CDATA[DNSONLY-BETA]]></category>
		<category><![CDATA[improvements]]></category>
		<category><![CDATA[production environments]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[release candidate]]></category>
		<category><![CDATA[scalability]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=884</guid>
		<description><![CDATA[Following the release of 11.25.0 STABLE, we are preparing to release an updated version of our DNSONLY builds for 11.25.0. This release offers extensive improvements to the scalability and overall performance of our DNSONLY product. Currently, the final release candidate is staged as DNSONLY-BETA and available for public testing and usage. We would like to [...]


Related posts:<ol><li><a href='http://blog.tikier.com/news/cpanel/security-cpanel-news/cpanel-update-recommended' rel='bookmark' title='Permanent Link: cPanel Update Recommended'>cPanel Update Recommended</a></li>
<li><a href='http://blog.tikier.com/news/cpanel/updates/cpanelwhm-11-25-edge-now-available' rel='bookmark' title='Permanent Link: cPanel/WHM 11.25 EDGE Now Available'>cPanel/WHM 11.25 EDGE Now Available</a></li>
<li><a href='http://blog.tikier.com/news/cpanel/security-cpanel-news/cpanel-security-advisory-cve-2009-2275' rel='bookmark' title='Permanent Link: cPanel Security Advisory: CVE 2009-2275'>cPanel Security Advisory: CVE 2009-2275</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><img class="alignleft size-full wp-image-885" title="logo_cpanel" src="http://blog.tikier.com/wp-content/uploads/2010/04/logo_cpanel.jpg" alt="" width="148" height="138" />Following the release of 11.25.0 STABLE, we are preparing  to release an updated version of our DNSONLY builds for 11.25.0. This  release offers extensive improvements to the scalability and overall  performance of our DNSONLY product. Currently, the final release  candidate is staged as DNSONLY-BETA and available for public testing and  usage.</p>
<p><span id="more-884"></span></p>
<p>We would like to extend an offer to begin general testing of  this new build in production environments. In order to update to this  build, the following steps must be followed:</p>
<p><strong>Update to 11.25.0 DNSONLY-BETA:</strong></p>
<p>1. Update /etc/cpupdate.conf, changing "CPANEL=dnsonly"  to "CPANEL=dnsonly-beta".</p>
<p>2. Update the installation by running "/scripts/upcp"</p>
<p><strong>Downgrade to 11.24.4 DNSONLY:</strong></p>
<p>1. Update /etc/cpupdate.conf, changing "CPANEL=dnsonly-beta"  to "CPANEL=dnsonly".</p>
<p>2. Update the installation by running "/scripts/upcp"</p>
<p>The final build of 11.25.0 DNSONLY to replace 11.24.4 DNSONLY  will be released on <strong>April 13, 2010</strong>. Following its release, you  will no longer be able to install or downgrade your DNSONLY servers to  11.24.4.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;t=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Release+Notification%3A+11.25.0+DNSONLY&amp;body=Link: http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Following%20the%20release%20of%2011.25.0%20STABLE%2C%20we%20are%20preparing%20%20to%20release%20an%20updated%20version%20of%20our%20DNSONLY%20builds%20for%2011.25.0.%20This%20%20release%20offers%20extensive%20improvements%20to%20the%20scalability%20and%20overall%20%20performance%20of%20our%20DNSONLY%20product.%20Currently%2C%20the%20final%20release%20%20candidate%20is%20staged%20as%20DNSONLY-BET" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY&amp;srcUrl=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;srcTitle=Release+Notification%3A+11.25.0+DNSONLY&amp;snippet=Following%20the%20release%20of%2011.25.0%20STABLE%2C%20we%20are%20preparing%20%20to%20release%20an%20updated%20version%20of%20our%20DNSONLY%20builds%20for%2011.25.0.%20This%20%20release%20offers%20extensive%20improvements%20to%20the%20scalability%20and%20overall%20%20performance%20of%20our%20DNSONLY%20product.%20Currently%2C%20the%20final%20release%20%20candidate%20is%20staged%20as%20DNSONLY-BET" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Release+Notification%3A+11.25.0+DNSONLY&amp;body=Link: http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Following%20the%20release%20of%2011.25.0%20STABLE%2C%20we%20are%20preparing%20%20to%20release%20an%20updated%20version%20of%20our%20DNSONLY%20builds%20for%2011.25.0.%20This%20%20release%20offers%20extensive%20improvements%20to%20the%20scalability%20and%20overall%20%20performance%20of%20our%20DNSONLY%20product.%20Currently%2C%20the%20final%20release%20%20candidate%20is%20staged%20as%20DNSONLY-BET" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;t=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Release+Notification%3A+11.25.0+DNSONLY+-+http://b2l.me/pevsh&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly&amp;title=Release+Notification%3A+11.25.0+DNSONLY&amp;desc=Following%20the%20release%20of%2011.25.0%20STABLE%2C%20we%20are%20preparing%20%20to%20release%20an%20updated%20version%20of%20our%20DNSONLY%20builds%20for%2011.25.0.%20This%20%20release%20offers%20extensive%20improvements%20to%20the%20scalability%20and%20overall%20%20performance%20of%20our%20DNSONLY%20product.%20Currently%2C%20the%20final%20release%20%20candidate%20is%20staged%20as%20DNSONLY-BET" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Release+Notification%3A+11.25.0+DNSONLY&amp;link=http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/news/cpanel/security-cpanel-news/cpanel-update-recommended' rel='bookmark' title='Permanent Link: cPanel Update Recommended'>cPanel Update Recommended</a></li>
<li><a href='http://blog.tikier.com/news/cpanel/updates/cpanelwhm-11-25-edge-now-available' rel='bookmark' title='Permanent Link: cPanel/WHM 11.25 EDGE Now Available'>cPanel/WHM 11.25 EDGE Now Available</a></li>
<li><a href='http://blog.tikier.com/news/cpanel/security-cpanel-news/cpanel-security-advisory-cve-2009-2275' rel='bookmark' title='Permanent Link: cPanel Security Advisory: CVE 2009-2275'>cPanel Security Advisory: CVE 2009-2275</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/news/cpanel/updates/release-notification-11-25-0-dnsonly/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Home » Blogs » root&#8217;s blog Canonical Webinars to Highlight Untapped Market Potential for ISVs</title>
		<link>http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs</link>
		<comments>http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:52:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Canonical]]></category>
		<category><![CDATA[canonical ltd]]></category>
		<category><![CDATA[desktop users]]></category>
		<category><![CDATA[isv community]]></category>
		<category><![CDATA[London]]></category>
		<category><![CDATA[london march]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Steve George]]></category>
		<category><![CDATA[term]]></category>
		<category><![CDATA[webinar series]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=881</guid>
		<description><![CDATA[LONDON, March 2, 2010 – Canonical Ltd., the company behind Ubuntu, announced a program for the ISV community – including a series of webinars -- to highlight the benefits of certifying software on the the long term support version of Ubuntu 10.04. The April release of Ubuntu 10.04 will be the third long term support [...]


Related posts:<ol><li><a href='http://blog.tikier.com/news/ubuntu/canonical-webinars-to-highlight-untapped-market-potential-for-isvs' rel='bookmark' title='Permanent Link: Canonical Webinars to Highlight Untapped Market Potential for ISVs'>Canonical Webinars to Highlight Untapped Market Potential for ISVs</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/what-is-ubuntu' rel='bookmark' title='Permanent Link: What is Ubuntu?'>What is Ubuntu?</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu' rel='bookmark' title='Permanent Link: Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu'>Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><strong><img class="alignleft size-full wp-image-555" title="what is ubuntu" src="http://blog.tikier.com/wp-content/uploads/2010/03/ubuntu-logo.jpg" alt="" width="150" height="173" />LONDON, March 2, 2010</strong> – Canonical Ltd., the company behind Ubuntu, announced a program for the ISV community – including a series of webinars -- to highlight the benefits of certifying software on the the long term support version of Ubuntu 10.04.</p>
<p lang="en-US">The April release of Ubuntu 10.04 will be the third long term support release. During its March webinar series, Canonical will explain the significant progress that the previous long term release has made in the server and desktop markets, steps that have moved the operating system from the fringes to the core of computing for millions of individuals and thousands of business in every geography and market.</p>
<p lang="en-US"><span id="more-881"></span>“Ubuntu has for several years been the fastest growing operating system on server and desktop,” said Steve George, director of Corporate Services at Canonical. “10.04 LTS is the obvious on-ramp for an ISV to become part of the Ubuntu story, and we will make it a frictionless process to bring certified applications to millions of server and desktop users.”</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/news/ubuntu/home-»-blogs-»-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;t=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs&amp;body=Link: http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs (sent via shareaholic)%0D%0A%0D%0A----%0D%0A LONDON%2C%20March%202%2C%202010%20%E2%80%93%20Canonical%20Ltd.%2C%20the%20company%20behind%20Ubuntu%2C%20announced%20a%20program%20for%20the%20ISV%20community%20%E2%80%93%20including%20a%20series%20of%20webinars%20--%20to%20highlight%20the%20benefits%20of%20certifying%20software%20on%20the%20the%20long%20term%20support%20version%20of%20Ubuntu%2010.04.%0D%0AThe%20April%20release%20of%20Ubuntu%2010.04%20will%20be%20the%20t" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs&amp;srcUrl=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;srcTitle=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs&amp;snippet=LONDON%2C%20March%202%2C%202010%20%E2%80%93%20Canonical%20Ltd.%2C%20the%20company%20behind%20Ubuntu%2C%20announced%20a%20program%20for%20the%20ISV%20community%20%E2%80%93%20including%20a%20series%20of%20webinars%20--%20to%20highlight%20the%20benefits%20of%20certifying%20software%20on%20the%20the%20long%20term%20support%20version%20of%20Ubuntu%2010.04.%0D%0AThe%20April%20release%20of%20Ubuntu%2010.04%20will%20be%20the%20t" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs&amp;body=Link: http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs (sent via shareaholic)%0D%0A%0D%0A----%0D%0A LONDON%2C%20March%202%2C%202010%20%E2%80%93%20Canonical%20Ltd.%2C%20the%20company%20behind%20Ubuntu%2C%20announced%20a%20program%20for%20the%20ISV%20community%20%E2%80%93%20including%20a%20series%20of%20webinars%20--%20to%20highlight%20the%20benefits%20of%20certifying%20software%20on%20the%20the%20long%20term%20support%20version%20of%20Ubuntu%2010.04.%0D%0AThe%20April%20release%20of%20Ubuntu%2010.04%20will%20be%20the%20t" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;t=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Po%5B..%5D+-+http://b2l.me/peu9x&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs&amp;title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs&amp;desc=LONDON%2C%20March%202%2C%202010%20%E2%80%93%20Canonical%20Ltd.%2C%20the%20company%20behind%20Ubuntu%2C%20announced%20a%20program%20for%20the%20ISV%20community%20%E2%80%93%20including%20a%20series%20of%20webinars%20--%20to%20highlight%20the%20benefits%20of%20certifying%20software%20on%20the%20the%20long%20term%20support%20version%20of%20Ubuntu%2010.04.%0D%0AThe%20April%20release%20of%20Ubuntu%2010.04%20will%20be%20the%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=+Home+%C2%BB+Blogs+%C2%BB+root%27s+blog+Canonical+Webinars+to+Highlight+Untapped+Market+Potential+for+ISVs&amp;link=http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/news/ubuntu/canonical-webinars-to-highlight-untapped-market-potential-for-isvs' rel='bookmark' title='Permanent Link: Canonical Webinars to Highlight Untapped Market Potential for ISVs'>Canonical Webinars to Highlight Untapped Market Potential for ISVs</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/what-is-ubuntu' rel='bookmark' title='Permanent Link: What is Ubuntu?'>What is Ubuntu?</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu' rel='bookmark' title='Permanent Link: Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu'>Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu</title>
		<link>http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2</link>
		<comments>http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:51:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[collaboration capabilities]]></category>
		<category><![CDATA[lotus symphony]]></category>
		<category><![CDATA[network organisations]]></category>
		<category><![CDATA[productivity suite]]></category>
		<category><![CDATA[virtual bridges]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=879</guid>
		<description><![CDATA[IBM Lotusphere/Florida, Jan 18, 2010: Canonical today announced a dedicated support program for Lotus Symphony, the no-charge office productivity alternative which is a core component of IBM Client for Smart Work (ICSW) on Ubuntu. This support is made available to customers by Canonical through the IBM and Canonical partner network. Organisations can now switch to [...]


Related posts:<ol><li><a href='http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu' rel='bookmark' title='Permanent Link: Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu'>Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs' rel='bookmark' title='Permanent Link: Home » Blogs » root&#8217;s blog Canonical Webinars to Highlight Untapped Market Potential for ISVs'>Home » Blogs » root&#8217;s blog Canonical Webinars to Highlight Untapped Market Potential for ISVs</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/canonical-webinars-to-highlight-untapped-market-potential-for-isvs' rel='bookmark' title='Permanent Link: Canonical Webinars to Highlight Untapped Market Potential for ISVs'>Canonical Webinars to Highlight Untapped Market Potential for ISVs</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><strong><img class="alignleft size-full wp-image-555" title="what is ubuntu" src="http://blog.tikier.com/wp-content/uploads/2010/03/ubuntu-logo.jpg" alt="" width="150" height="173" />IBM Lotusphere/Florida, Jan 18, 2010</strong>: Canonical today announced a dedicated support program for Lotus Symphony, the no-charge office productivity alternative which is a core component of IBM Client for Smart Work (ICSW) on Ubuntu. This support is made available to customers by Canonical through the IBM and Canonical partner network. Organisations can now switch to an alternative platform from Microsoft for their business productivity needs with full confidence that the core solution is fully supported.</p>
<p><span id="more-879"></span>The IBM Client for Smart Work, based on IBM productivity and collaboration software, helps organisations save up to 50 percent per seat on software costs versus a Microsoft-based desktop, in addition to avoiding requisite hardware upgrades. The package allows companies to use their existing PCs, lower-cost netbooks and thin clients.</p>
<p>"We are very pleased to put a specific support program in place that IBM and Canonical partners can start to deliver," said Steve George, VP (Sales and Product Management), Corporate Services at Canonical. "With IBM we are slashing the costs to business for their basic productivity suite. Faced with the upgrade costs to Windows 7 many organizations are rightly considering an alternative. Ubuntu and the IBM Client for Smart Work represents that alternative."</p>
<p>The open standards-based core solution comprises of Ubuntu 8.04 LTS Desktop Edition and Lotus Symphony, which includes word processing, spreadsheets, and presentations, fully supported by Canonical at $5.50 per user, per month based on 1000 seat deployment.</p>
<p>Optional solution components include desktop virtualisation and recovery options using VERDE from Virtual Bridges, and a variety of Lotus collaboration capabilities with choice of delivery model: on premise, on the cloud, or using an appliance.</p>
<p>"The economic case for Ubuntu and the IBM Client for Smart Work is unarguable," says Shiv Kumar, EVP of Sales at ZSL, one of the first IBM and Canonical partners to make this solution available. "The addition of support from Canonical at super-competitive pricing means companies have the reassurance of world class support through the entire stack. We are really excited about bringing this option to our new and existing clients and providing them with cost savings and productivity improvements at a stroke."</p>
<p>"We have seen tremendous interest in this solution since we launched it initially in Africa and more recently in the United States," said Bob Sutor, VP Linux and Open Source at IBM. "Canonical's support program for Ubuntu and ICSW offers our partners a great package to bring to their customers and we look forward to more of them signing up to do just that. For customers looking to break the cycle of license fee renewals and upgrade costs for Windows a real alternative is here."</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;t=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+&amp;body=Link: http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A IBM%20Lotusphere%2FFlorida%2C%20Jan%2018%2C%202010%3A%20Canonical%20today%20announced%20a%20dedicated%20support%20program%20for%20Lotus%20Symphony%2C%20the%20no-charge%20office%20productivity%20alternative%20which%20is%20a%20core%20component%20of%20IBM%20Client%20for%20Smart%20Work%20%28ICSW%29%20on%20Ubuntu.%20This%20support%20is%20made%20available%20to%20customers%20by%20Canonical%20through%20the%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+&amp;srcUrl=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;srcTitle=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+&amp;snippet=IBM%20Lotusphere%2FFlorida%2C%20Jan%2018%2C%202010%3A%20Canonical%20today%20announced%20a%20dedicated%20support%20program%20for%20Lotus%20Symphony%2C%20the%20no-charge%20office%20productivity%20alternative%20which%20is%20a%20core%20component%20of%20IBM%20Client%20for%20Smart%20Work%20%28ICSW%29%20on%20Ubuntu.%20This%20support%20is%20made%20available%20to%20customers%20by%20Canonical%20through%20the%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+&amp;body=Link: http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A IBM%20Lotusphere%2FFlorida%2C%20Jan%2018%2C%202010%3A%20Canonical%20today%20announced%20a%20dedicated%20support%20program%20for%20Lotus%20Symphony%2C%20the%20no-charge%20office%20productivity%20alternative%20which%20is%20a%20core%20component%20of%20IBM%20Client%20for%20Smart%20Work%20%28ICSW%29%20on%20Ubuntu.%20This%20support%20is%20made%20available%20to%20customers%20by%20Canonical%20through%20the%20" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;t=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+componen%5B..%5D+-+http://b2l.me/peu62&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2&amp;title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+&amp;desc=IBM%20Lotusphere%2FFlorida%2C%20Jan%2018%2C%202010%3A%20Canonical%20today%20announced%20a%20dedicated%20support%20program%20for%20Lotus%20Symphony%2C%20the%20no-charge%20office%20productivity%20alternative%20which%20is%20a%20core%20component%20of%20IBM%20Client%20for%20Smart%20Work%20%28ICSW%29%20on%20Ubuntu.%20This%20support%20is%20made%20available%20to%20customers%20by%20Canonical%20through%20the%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Canonical+offers+dedicated+support+program+for+Lotus+Symphony%2C+the+core+component+of+IBM+Client+for+Smart+Work+on+Ubuntu+&amp;link=http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu' rel='bookmark' title='Permanent Link: Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu'>Canonical offers dedicated support program for Lotus Symphony, the core component of IBM Client for Smart Work on Ubuntu</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/home-%c2%bb-blogs-%c2%bb-roots-blog-canonical-webinars-to-highlight-untapped-market-potential-for-isvs' rel='bookmark' title='Permanent Link: Home » Blogs » root&#8217;s blog Canonical Webinars to Highlight Untapped Market Potential for ISVs'>Home » Blogs » root&#8217;s blog Canonical Webinars to Highlight Untapped Market Potential for ISVs</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/canonical-webinars-to-highlight-untapped-market-potential-for-isvs' rel='bookmark' title='Permanent Link: Canonical Webinars to Highlight Untapped Market Potential for ISVs'>Canonical Webinars to Highlight Untapped Market Potential for ISVs</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/news/ubuntu/canonical-offers-dedicated-support-program-for-lotus-symphony-the-core-component-of-ibm-client-for-smart-work-on-ubuntu-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canonical announces commercial services for its version control system, Bazaar</title>
		<link>http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2</link>
		<comments>http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:48:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Bazaar]]></category>
		<category><![CDATA[bzr]]></category>
		<category><![CDATA[chase the sun]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Jeffrey Pugh]]></category>
		<category><![CDATA[London]]></category>
		<category><![CDATA[Martin Pool]]></category>
		<category><![CDATA[open source projects]]></category>
		<category><![CDATA[pool project]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=877</guid>
		<description><![CDATA[LONDON, December 10, 2009 – Companies and open source projects interested in using Canonical's popular version control system now have access to a suite of commercial services – Consultancy &#38; Conversion, Training and Support – allowing them to migrate, deploy and manage Bazaar. Used by Ubuntu and thousands of other open source and commercial projects, [...]


Related posts:<ol><li><a href='http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar' rel='bookmark' title='Permanent Link: Canonical announces commercial services for its version control system, Bazaar'>Canonical announces commercial services for its version control system, Bazaar</a></li>
<li><a href='http://blog.tikier.com/news/redhat/why-redhat' rel='bookmark' title='Permanent Link: Why RedHat'>Why RedHat</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/open-source-industry-veteran-matt-asay-joins-canonical-as-chief-operating-officer' rel='bookmark' title='Permanent Link: Open source industry veteran Matt Asay joins Canonical as chief operating officer'>Open source industry veteran Matt Asay joins Canonical as chief operating officer</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><strong><img class="alignleft size-full wp-image-555" title="what is ubuntu" src="http://blog.tikier.com/wp-content/uploads/2010/03/ubuntu-logo.jpg" alt="" width="150" height="173" />LONDON, December 10, 2009</strong> – Companies and open source projects interested in using Canonical's popular version control system now have access to a suite of commercial services – Consultancy &amp; Conversion, Training and Support – allowing them to migrate, deploy and manage Bazaar.</p>
<p><span id="more-877"></span></p>
<p>Used by Ubuntu and thousands of other open source and commercial projects, Bazaar (bzr) is a version control system (vcs) that supports distributed development environments. Many existing version control systems use a centralised model, a particular challenge to globally distributed 'chase the sun' development teams, or environments where there is a frequent need to merge or branch code. Although bzr itself is open source, there is no requirement for commercial projects to make their code publicly available.</p>
<p>Sun Microsystems migrated the code for its MySQL database software a year ago, using bzr conversion and support services. "We wanted to use a tool which suited our distributed contributor model for MySQL, but we needed the reassurance of access to the Bazaar development team through our transition and use of the vcs," said Jeffrey Pugh, vice president of MySQL Engineering, Sun Microsystems. "We have found bzr works really well for our model, and that the bzr support team and developers have been responsive to our requirements."</p>
<p>“The increasingly distributed nature of software development has allowed Bazaar to grow in popularity,” said Martin Pool, project manager at Canonical. “Our Consultancy &amp; Conversion, Training and Support services give new and existing customers piece of mind when setting up such a vital piece of infrastructure.”</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;t=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar&amp;body=Link: http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A LONDON%2C%20December%2010%2C%202009%20%E2%80%93%20Companies%20and%20open%20source%20projects%20interested%20in%20using%20Canonical%27s%20popular%20version%20control%20system%20now%20have%20access%20to%20a%20suite%20of%20commercial%20services%20%E2%80%93%20Consultancy%20%26amp%3B%20Conversion%2C%20Training%20and%20Support%20%E2%80%93%20allowing%20them%20to%20migrate%2C%20deploy%20and%20manage%20Bazaar.%0D%0A%0D%0A%0D%0A%0D%0AUsed" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar&amp;srcUrl=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;srcTitle=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar&amp;snippet=LONDON%2C%20December%2010%2C%202009%20%E2%80%93%20Companies%20and%20open%20source%20projects%20interested%20in%20using%20Canonical%27s%20popular%20version%20control%20system%20now%20have%20access%20to%20a%20suite%20of%20commercial%20services%20%E2%80%93%20Consultancy%20%26amp%3B%20Conversion%2C%20Training%20and%20Support%20%E2%80%93%20allowing%20them%20to%20migrate%2C%20deploy%20and%20manage%20Bazaar.%0D%0A%0D%0A%0D%0A%0D%0AUsed" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar&amp;body=Link: http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2 (sent via shareaholic)%0D%0A%0D%0A----%0D%0A LONDON%2C%20December%2010%2C%202009%20%E2%80%93%20Companies%20and%20open%20source%20projects%20interested%20in%20using%20Canonical%27s%20popular%20version%20control%20system%20now%20have%20access%20to%20a%20suite%20of%20commercial%20services%20%E2%80%93%20Consultancy%20%26amp%3B%20Conversion%2C%20Training%20and%20Support%20%E2%80%93%20allowing%20them%20to%20migrate%2C%20deploy%20and%20manage%20Bazaar.%0D%0A%0D%0A%0D%0A%0D%0AUsed" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;t=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar+-+http://b2l.me/peuzb&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2&amp;title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar&amp;desc=LONDON%2C%20December%2010%2C%202009%20%E2%80%93%20Companies%20and%20open%20source%20projects%20interested%20in%20using%20Canonical%27s%20popular%20version%20control%20system%20now%20have%20access%20to%20a%20suite%20of%20commercial%20services%20%E2%80%93%20Consultancy%20%26amp%3B%20Conversion%2C%20Training%20and%20Support%20%E2%80%93%20allowing%20them%20to%20migrate%2C%20deploy%20and%20manage%20Bazaar.%0D%0A%0D%0A%0D%0A%0D%0AUsed" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Canonical+announces+commercial+services+for+its+version+control+system%2C+Bazaar&amp;link=http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar' rel='bookmark' title='Permanent Link: Canonical announces commercial services for its version control system, Bazaar'>Canonical announces commercial services for its version control system, Bazaar</a></li>
<li><a href='http://blog.tikier.com/news/redhat/why-redhat' rel='bookmark' title='Permanent Link: Why RedHat'>Why RedHat</a></li>
<li><a href='http://blog.tikier.com/news/ubuntu/open-source-industry-veteran-matt-asay-joins-canonical-as-chief-operating-officer' rel='bookmark' title='Permanent Link: Open source industry veteran Matt Asay joins Canonical as chief operating officer'>Open source industry veteran Matt Asay joins Canonical as chief operating officer</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/news/ubuntu/canonical-announces-commercial-services-for-its-version-control-system-bazaar-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fudcon North America 2011 &#8212; bids opening!</title>
		<link>http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening</link>
		<comments>http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:36:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[architecture team]]></category>
		<category><![CDATA[bid]]></category>
		<category><![CDATA[Boston]]></category>
		<category><![CDATA[Chile]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[community architecture]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[fedora project]]></category>
		<category><![CDATA[financial deadlines]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[FUDCon]]></category>
		<category><![CDATA[Honolulu]]></category>
		<category><![CDATA[interested communities]]></category>
		<category><![CDATA[Latin America]]></category>
		<category><![CDATA[North America]]></category>
		<category><![CDATA[North American]]></category>
		<category><![CDATA[Paul W. Frields]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[Santiago]]></category>
		<category><![CDATA[Switzerland]]></category>
		<category><![CDATA[Zurich]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=874</guid>
		<description><![CDATA[Paul W. Frields announced on Monday, April 5 at 21:31:46 UTC 2010," The Fedora Project holds a number of global FUDCon events each year. Typically the Community Architecture team's budget supports one of these large events each Red Hat fiscal quarter (with the fiscal year starting on March 1). This year we have the Latin [...]


Related posts:<ol><li><a href='http://blog.tikier.com/news/fedora-news/whats-the-fedora-project' rel='bookmark' title='Permanent Link: What&#8217;s the Fedora Project'>What&#8217;s the Fedora Project</a></li>
<li><a href='http://blog.tikier.com/news/fedora-news/fedora-unity-fedora-re-spin-20100303-released' rel='bookmark' title='Permanent Link: Fedora Unity Fedora Re-spin 20100303 released'>Fedora Unity Fedora Re-spin 20100303 released</a></li>
<li><a href='http://blog.tikier.com/news/redhat/red-hat-reports-fourth-quarter-and-fiscal-year-2010-results' rel='bookmark' title='Permanent Link: Red Hat Reports Fourth Quarter and Fiscal Year 2010 Results'>Red Hat Reports Fourth Quarter and Fiscal Year 2010 Results</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><img class="alignleft size-full wp-image-526" title="fed1" src="http://blog.tikier.com/wp-content/uploads/2010/03/fed11.png" alt="" width="150" height="222" />Paul W. Frields announced on Monday, April 5 at 21:31:46 UTC 2010," The  Fedora Project holds a number of global FUDCon events each year.  Typically the Community Architecture team's budget supports one of these  large events each Red Hat fiscal quarter (with the fiscal year starting  on March 1). This year we have the Latin American event, FUDCon  Santiago in Chile, in Q2; the event for EMEA, FUDCon  Zurich in Switzerland, in Q3; and a North American FUDCon event in Q4.</p>
<p>In each case, typically the event will happen sometime in the  first two months of the quarter, so that we can ensure all bills are  paid by Red Hat's financial deadlines. That deadline usually comes a  couple weeks before the end of quarter, so the first two months are the  ideal time to actually stage an event. So the North American FUDCon  event will happen in either December 2010 or January 2011.  The bidders  will work with the Community Architecture team to resolve the exact  timing.</p>
<p><span id="more-874"></span>In the past we've often heard from community members that they'd  love to have an event in a warmer clime during the chilly winter months.  We couldn't agree more, and now we have a way to empower our community  to make that happen. FUDCon Honolulu? Maybe not, but we're open to other  possibilities! We want to find a place for the next North American  event that includes:</p>
<ul>
<li> Reasonable travel, room and board costs</li>
<li> Availability of inexpensive or free event space</li>
<li> A little warmer than Boston (we hope!)</li>
<li> Active FOSS/other interested communities that might like to  attend</li>
<li> Consideration of academic schedules for students who want to  attend</li>
</ul>
<ul>
<li> Consideration of holidays for people in North America</li>
<li> One or more organizing Fedora community members with the time  and energy to help prepare</li>
</ul>
<p>We now have a bid process<sup> </sup>that lets interested community members propose  FUDCon in their region, or even backyard. Nothing Olympic style --  simply a way for excited Fedora folks in the locale to help secure event  space, lodging, and other logistical details. We've already kicked this  process off for FUDCon Zurich 2010, and are looking to start this cycle  for North America as well. In the summer, after FUDCon Santiago  concludes, we will kick the same process off for Latin America again for  a 2011 conference.</p>
<p>So here's what you need to do to get the ball rolling:</p>
<ul>
<li> Join the fudcon-planning list and let us know you want to bid.</li>
</ul>
<ul>
<li> Make a wiki page called  [[FUDCon:Bid_for_&lt;Your_Town&gt;_2011]], with the information outlined  on the bid process[3] page.</li>
</ul>
<p>The bid process will be open for a period of approximately 3 weeks.  At that point the FPL and Community Architecture teams, as major</p>
<p>stakeholders in the event, will go through the bids and make a  decision on where we'll locate FUDCon North America. "</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;t=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Fudcon+North+America+2011+--+bids+opening%21&amp;body=Link: http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Paul%20W.%20Frields%20announced%20on%20Monday%2C%20April%205%20at%2021%3A31%3A46%20UTC%202010%2C%22%20The%20%20Fedora%20Project%20holds%20a%20number%20of%20global%20FUDCon%20events%20each%20year.%20%20Typically%20the%20Community%20Architecture%20team%27s%20budget%20supports%20one%20of%20these%20%20large%20events%20each%20Red%20Hat%20fiscal%20quarter%20%28with%20the%20fiscal%20year%20starting%20%20on%20March%201%29.%20T" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21&amp;srcUrl=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;srcTitle=Fudcon+North+America+2011+--+bids+opening%21&amp;snippet=Paul%20W.%20Frields%20announced%20on%20Monday%2C%20April%205%20at%2021%3A31%3A46%20UTC%202010%2C%22%20The%20%20Fedora%20Project%20holds%20a%20number%20of%20global%20FUDCon%20events%20each%20year.%20%20Typically%20the%20Community%20Architecture%20team%27s%20budget%20supports%20one%20of%20these%20%20large%20events%20each%20Red%20Hat%20fiscal%20quarter%20%28with%20the%20fiscal%20year%20starting%20%20on%20March%201%29.%20T" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Fudcon+North+America+2011+--+bids+opening%21&amp;body=Link: http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Paul%20W.%20Frields%20announced%20on%20Monday%2C%20April%205%20at%2021%3A31%3A46%20UTC%202010%2C%22%20The%20%20Fedora%20Project%20holds%20a%20number%20of%20global%20FUDCon%20events%20each%20year.%20%20Typically%20the%20Community%20Architecture%20team%27s%20budget%20supports%20one%20of%20these%20%20large%20events%20each%20Red%20Hat%20fiscal%20quarter%20%28with%20the%20fiscal%20year%20starting%20%20on%20March%201%29.%20T" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;t=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fudcon+North+America+2011+--+bids+opening%21+-+http://b2l.me/pet6b&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening&amp;title=Fudcon+North+America+2011+--+bids+opening%21&amp;desc=Paul%20W.%20Frields%20announced%20on%20Monday%2C%20April%205%20at%2021%3A31%3A46%20UTC%202010%2C%22%20The%20%20Fedora%20Project%20holds%20a%20number%20of%20global%20FUDCon%20events%20each%20year.%20%20Typically%20the%20Community%20Architecture%20team%27s%20budget%20supports%20one%20of%20these%20%20large%20events%20each%20Red%20Hat%20fiscal%20quarter%20%28with%20the%20fiscal%20year%20starting%20%20on%20March%201%29.%20T" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Fudcon+North+America+2011+--+bids+opening%21&amp;link=http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/news/fedora-news/whats-the-fedora-project' rel='bookmark' title='Permanent Link: What&#8217;s the Fedora Project'>What&#8217;s the Fedora Project</a></li>
<li><a href='http://blog.tikier.com/news/fedora-news/fedora-unity-fedora-re-spin-20100303-released' rel='bookmark' title='Permanent Link: Fedora Unity Fedora Re-spin 20100303 released'>Fedora Unity Fedora Re-spin 20100303 released</a></li>
<li><a href='http://blog.tikier.com/news/redhat/red-hat-reports-fourth-quarter-and-fiscal-year-2010-results' rel='bookmark' title='Permanent Link: Red Hat Reports Fourth Quarter and Fiscal Year 2010 Results'>Red Hat Reports Fourth Quarter and Fiscal Year 2010 Results</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/news/fedora-news/fudcon-north-america-2011-bids-opening/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Hat Enterprise Linux 5.5 Expands Technology Innovation Spanning Physical, Virtual and Cloud Environments</title>
		<link>http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments</link>
		<comments>http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:31:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[redhat]]></category>
		<category><![CDATA[Dell PowerEdge]]></category>
		<category><![CDATA[dell poweredge servers]]></category>
		<category><![CDATA[Doug Fisher]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[hat]]></category>
		<category><![CDATA[intel nehalem]]></category>
		<category><![CDATA[Jean Staten]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Margaret Lewis]]></category>
		<category><![CDATA[O Virtualization]]></category>
		<category><![CDATA[open source solutions]]></category>
		<category><![CDATA[Platform]]></category>
		<category><![CDATA[Raleigh]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[red hat inc]]></category>
		<category><![CDATA[red hat network]]></category>
		<category><![CDATA[Sally Stevens]]></category>
		<category><![CDATA[Scott Farrand]]></category>

		<guid isPermaLink="false">http://blog.tikier.com/?p=871</guid>
		<description><![CDATA[Update release features new hardware platform enablement, expanded virtualization capabilities and enhanced interoperability Raleigh, NC - March 30, 2010 - Red Hat, Inc. (NYSE: RHT), the world's leading provider of open source solutions, today announced the availability of the fifth update to the Red Hat Enterprise Linux 5 platform, Red Hat Enterprise Linux 5.5. Adding [...]


Related posts:<ol><li><a href='http://blog.tikier.com/news/redhat/symbian-foundation-builds-cloud-platform-on-red-hat-enterprise-linux' rel='bookmark' title='Permanent Link: Symbian Foundation Builds Cloud Platform on Red Hat Enterprise Linux'>Symbian Foundation Builds Cloud Platform on Red Hat Enterprise Linux</a></li>
<li><a href='http://blog.tikier.com/news/redhat/ibm-launches-development-test-cloud-utilizing-red-hat-technology' rel='bookmark' title='Permanent Link: IBM Launches Development &#038; Test Cloud Utilizing Red Hat Technology'>IBM Launches Development &#038; Test Cloud Utilizing Red Hat Technology</a></li>
<li><a href='http://blog.tikier.com/news/redhat/tokyo-stock-exchange-executes-millisecond-trading-with-new-system-based-on-red-hat-enterprise-linux' rel='bookmark' title='Permanent Link: Tokyo Stock Exchange Executes Millisecond Trading with New System Based on Red Hat Enterprise Linux'>Tokyo Stock Exchange Executes Millisecond Trading with New System Based on Red Hat Enterprise Linux</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[
<p><em><img class="alignleft size-thumbnail wp-image-500" title="red_hat_logo_big" src="http://blog.tikier.com/wp-content/uploads/2010/03/red_hat_logo_big-150x150.jpg" alt="" width="150" height="150" />Update release features new hardware platform enablement,  expanded virtualization capabilities and enhanced interoperability</em></p>
<p><strong>Raleigh, NC - March 30, 2010</strong> - Red Hat, Inc.  (NYSE: RHT), the world's leading provider of open source solutions,  today announced the availability of the fifth update to the Red Hat  Enterprise Linux 5 platform, Red Hat Enterprise Linux 5.5. Adding  features designed to operate across physical, virtual and cloud  deployments, the update offers enhanced virtualization and  interoperability capabilities combined with support for important new  hardware platforms. As with all Red Hat updates, application  compatibility and certification with the Red Hat Enterprise Linux 5  platform is fully maintained, meaning the broad portfolio of certified  applications for Red Hat Enterprise Linux applies to the new update. Red  Hat Enterprise Linux 5.5 is available to subscribing customers via Red  Hat Network today.</p>
<p><span id="more-871"></span>In addition to overall platform enhancements and bug fixes, this  update provides support for new platforms being delivered by several Red  Hat partners, including AMD, Dell, HP, IBM and Intel.  Newly supported  platforms include Intel® Nehalem® EX, AMD Opteron (TM) 6000 Series  (formerly codenamed "Magny Cours") and IBM Power 7. This allows Red Hat  customers to take advantage of some of the industry's most powerful new  servers.</p>
<p>"Red Hat Enterprise Linux and AMD platforms together provide our  customers with compelling datacenter reliability and flexibility," said  Margaret Lewis, director, Software Solutions Marketing at AMD (NYSE:  AMD). "The latest technology enhancements in Red Hat Enterprise Linux  5.5 combined with our new 8- and 12-Core AMD Opteron 6000 Series  platforms offer customers improved performance while still maintaining  low power consumption, helping to lower total cost of ownership."</p>
<p>"Through the combination of Dell PowerEdge servers and Red Hat  Enterprise Linux, customers are offered a scalable, high-performance,  affordable solution," said Sally Stevens, vice president of Enterprise  Platform Marketing at Dell.  "New technology advancements in Red Hat  Enterprise Linux 5.5, coupled with Dell's 11th generation of servers,  give users a robust platform for running their mission-critical  applications on an industry-standard x86 architecture."</p>
<p>"Rising operational costs are driving clients to seek higher  performance technology solutions at a lower cost," said Scott Farrand,  vice president, Infrastructure Software &amp; Blades at HP. "The  combination of Red Hat Enterprise Linux 5.5 on energy-efficient HP  ProLiant servers and HP BladeSystem with Virtual Connect Flex-10  technology provides clients a high-performance, low-cost platform to run   demanding Linux workloads in virtualized environments."</p>
<p>"IBM's new eX5 hardware combined with Red Hat Enterprise Linux 5.5  brings new levels of flexibility and scalability to the enterprise,  particularly with the additional memory capabilities of the new  platform," said Jean Staten Healy, head of IBM's Linux strategy.  "eX5  together with Red Hat Enterprise Linux and Red Hat Enterprise  Virtualization provide a powerful technology foundation for today's  mission-critical infrastructures."</p>
<p>"With today's delivery of new technologies from both Red Hat and  Intel, we are continuing to help define the datacenter of the future,"   said Doug Fisher, vice president of the Software and Services Group and  general manager of the Systems Software Division at Intel Corporation.  "The combination of Red Hat Enterprise Linux and the Intel® Xeon®  processor 7500 and 5600 series delivers powerful performance, energy  efficiency, scalability and reliability across physical and virtual  systems that brings new opportunities for our joint customers."</p>
<p>In the fourth update to the Red Hat Enterprise Linux 5 platform,  delivered in September 2009, Red Hat introduced the Kernel-based Virtual  Machine (KVM) hypervisor alongside the Xen hypervisor. Today's Red Hat  Enterprise Linux 5.5 update provides a number of virtualization  enhancements. Support for the large memory systems of new servers allows  a larger number of virtual machines to be deployed on each physical  server. With greater guest density customers have an opportunity to  achieve higher levels of consolidation and reduce costs. Huge page  support is now automatic and extended to virtual guests, improving the  performance of memory-intensive applications. Support for Single Root  I/O Virtualization (SR-IOV) offers virtual guests an improved ability to  share PCI hardware resources and more efficient access I/O devices. As a  result, Red Hat Enterprise Linux is one of the first operating systems  designed to be capable of hosting a virtual guest that can saturate a 10  Gigabit Ethernet. Further I/O optimizations, which enable easier device  reassignment, can help improve flexibility when migrating virtual  guests across physical systems. In combination, these enhancements aim  to allow large-scale, I/O bound, enterprise applications to be readily  virtualized.</p>
<p>Red Hat Enterprise Linux 5.5 also offers Microsoft Windows 7  interoperability enhancements and extends Active Directory integration,  allowing improved user and group mapping, while simplifying filesystem  management across platforms.</p>
<p>"We believe that Red Hat Enterprise Linux continues to drive the  evolution of the operating platform forward with new technology that  delivers performance, reliability, scalability and affordability results  for our customers," said Tim Burke, vice president, Engineering,  Platform Engineering at Red Hat. "Red Hat Enterprise Linux provides a  powerful foundation for physical, virtual and cloud deployments, and for  many, continues to be the platform of choice for their most demanding  mission-critical workloads."</p>
<p>For more information about Red Hat Enterprise Linux, visit www.redhat.com/rhel.</p>
<p>For more information about Red Hat, visit www.redhat.com. For more news, more  often, visit www.press.redhat.com.</p>
<h3>About Red Hat, Inc.</h3>
<p>Red Hat, the world's leading open source solutions provider and a  component of the S&amp;P 500, is headquartered in Raleigh, NC with over  65 offices spanning the globe. CIOs ranked Red Hat as one of the top  vendors delivering value in Enterprise Software for six consecutive  years in the CIO Insight Magazine Vendor Value survey. Red Hat provides  high-quality, affordable technology with its operating system platform,  Red Hat Enterprise Linux, together with virtualization, applications,  management and Services Oriented Architecture (SOA) solutions, including  Red Hat Enterprise Virtualization and JBoss Enterprise Middleware. Red  Hat also offers support, training and consulting services to its  customers worldwide. Learn more: http://www.redhat.com.</p>
<h3>Forward-Looking Statements</h3>
<p>Certain statements contained in this press release may constitute  "forward-looking statements" within the meaning of the Private  Securities Litigation Reform Act of 1995. Forward-looking statements  provide current expectations of future events based on certain  assumptions and include any statement that does not directly relate to  any historical or current fact. Actual results may differ materially  from those indicated by such forward-looking statements as a result of  various important factors, including: risks related to delays or  reductions in information technology spending, the integration of  acquisitions and the ability to market successfully acquired  technologies and products; the ability of the Company to effectively  compete; the inability to adequately protect Company intellectual  property and the potential for infringement or breach of license claims  of or relating to third party intellectual property; the ability to  deliver and stimulate demand for new products and technological  innovations on a timely basis; risks related to data and information  security vulnerabilities; ineffective management of, and control over,  the Company's growth and international operations; fluctuations in  exchange rates; adverse results in litigation; and changes in and a  dependence on key personnel, as well as other factors contained in our  most recent Quarterly Report on Form 10-Q (copies of which may be  accessed through the Securities and Exchange Commission's website at http://www.sec.gov), including those found  therein under the captions "Risk Factors" and "Management's Discussion  and Analysis of Financial Condition and Results of Operations". In  addition to these factors, actual future performance, outcomes, and  results may differ materially because of more general factors including  (without limitation) general industry and market conditions and growth  rates, economic conditions, and governmental and public policy changes.  The forward-looking statements included in this press release represent  the Company's views as of the date of this press release and these views  could change. However, while the Company may elect to update these  forward-looking statements at some point in the future, the Company  specifically disclaims any obligation to do so. These forward-looking  statements should not be relied upon as representing the Company's views  as of any date subsequent to the date of the press release.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;t=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments&amp;body=Link: http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Update%20release%20features%20new%20hardware%20platform%20enablement%2C%20%20expanded%20virtualization%20capabilities%20and%20enhanced%20interoperability%0D%0A%0D%0ARaleigh%2C%20NC%20-%20March%2030%2C%202010%20-%20Red%20Hat%2C%20Inc.%20%20%28NYSE%3A%20RHT%29%2C%20the%20world%27s%20leading%20provider%20of%20open%20source%20solutions%2C%20%20today%20announced%20the%20availability%20of%20the%20fifth%20update%20to%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments&amp;srcUrl=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;srcTitle=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments&amp;snippet=Update%20release%20features%20new%20hardware%20platform%20enablement%2C%20%20expanded%20virtualization%20capabilities%20and%20enhanced%20interoperability%0D%0A%0D%0ARaleigh%2C%20NC%20-%20March%2030%2C%202010%20-%20Red%20Hat%2C%20Inc.%20%20%28NYSE%3A%20RHT%29%2C%20the%20world%27s%20leading%20provider%20of%20open%20source%20solutions%2C%20%20today%20announced%20the%20availability%20of%20the%20fifth%20update%20to%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments&amp;body=Link: http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Update%20release%20features%20new%20hardware%20platform%20enablement%2C%20%20expanded%20virtualization%20capabilities%20and%20enhanced%20interoperability%0D%0A%0D%0ARaleigh%2C%20NC%20-%20March%2030%2C%202010%20-%20Red%20Hat%2C%20Inc.%20%20%28NYSE%3A%20RHT%29%2C%20the%20world%27s%20leading%20provider%20of%20open%20source%20solutions%2C%20%20today%20announced%20the%20availability%20of%20the%20fifth%20update%20to%20" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;t=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Vi%5B..%5D+-+http://b2l.me/petpt&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments&amp;title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments&amp;desc=Update%20release%20features%20new%20hardware%20platform%20enablement%2C%20%20expanded%20virtualization%20capabilities%20and%20enhanced%20interoperability%0D%0A%0D%0ARaleigh%2C%20NC%20-%20March%2030%2C%202010%20-%20Red%20Hat%2C%20Inc.%20%20%28NYSE%3A%20RHT%29%2C%20the%20world%27s%20leading%20provider%20of%20open%20source%20solutions%2C%20%20today%20announced%20the%20availability%20of%20the%20fifth%20update%20to%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Red+Hat+Enterprise+Linux+5.5+Expands+Technology+Innovation+Spanning+Physical%2C+Virtual+and+Cloud+Environments&amp;link=http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>




<p>Related posts:<ol><li><a href='http://blog.tikier.com/news/redhat/symbian-foundation-builds-cloud-platform-on-red-hat-enterprise-linux' rel='bookmark' title='Permanent Link: Symbian Foundation Builds Cloud Platform on Red Hat Enterprise Linux'>Symbian Foundation Builds Cloud Platform on Red Hat Enterprise Linux</a></li>
<li><a href='http://blog.tikier.com/news/redhat/ibm-launches-development-test-cloud-utilizing-red-hat-technology' rel='bookmark' title='Permanent Link: IBM Launches Development &#038; Test Cloud Utilizing Red Hat Technology'>IBM Launches Development &#038; Test Cloud Utilizing Red Hat Technology</a></li>
<li><a href='http://blog.tikier.com/news/redhat/tokyo-stock-exchange-executes-millisecond-trading-with-new-system-based-on-red-hat-enterprise-linux' rel='bookmark' title='Permanent Link: Tokyo Stock Exchange Executes Millisecond Trading with New System Based on Red Hat Enterprise Linux'>Tokyo Stock Exchange Executes Millisecond Trading with New System Based on Red Hat Enterprise Linux</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tikier.com/news/redhat/red-hat-enterprise-linux-5-5-expands-technology-innovation-spanning-physical-virtual-and-cloud-environments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
