<?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>Andol &#187; Web</title>
	<atom:link href="http://www.andol.info/category/web/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andol.info</link>
	<description>Just value your mind</description>
	<lastBuildDate>Thu, 26 Jan 2012 15:44:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Paging wordpress posts without using plug-ins</title>
		<link>http://www.andol.info/web/1464.htm</link>
		<comments>http://www.andol.info/web/1464.htm#comments</comments>
		<pubDate>Mon, 29 Mar 2010 09:49:34 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Andol]]></category>
		<category><![CDATA[pagenav]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=1464</guid>
		<description><![CDATA[Days ago i saw a post talking about &#8216;paging wordpress posts without using plug-ins&#8216; like pagenav. The way to integrate such codes into themes is easy, but with a little bug.  First put this paging function in the theme&#8217;s functions.php function kriesi_pagination($query_string){ global $posts_per_page, $paged; $my_query = new WP_Query($query_string .&#8221;&#38;posts_per_page=-1&#8243;); $total_posts = $my_query-&#62;post_count; if(empty($paged))$paged = 1; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2010/03/identify-top-level.jpg"><img class="alignnone size-thumbnail wp-image-1466" title="identify-top-level" src="http://www.andol.info/wp-content/uploads/2010/03/identify-top-level-485x190.jpg" alt="" width="485" height="190" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2010/03/identify-top-level.jpg"></a>Days ago i saw a post talking about &#8216;<a href="http://www.wopus.org/wordpress-deepin/2048.html" target="_blank">paging wordpress posts without using plug-ins</a>&#8216; like pagenav. The way to integrate such codes into themes is easy, but with a little bug. <span id="more-1464"></span><br />
First put this paging function in the theme&#8217;s functions.php</p>
<blockquote><p>function kriesi_pagination($query_string){<br />
global $posts_per_page, $paged;<br />
$my_query = new WP_Query($query_string .&#8221;&amp;posts_per_page=-1&#8243;);<br />
$total_posts = $my_query-&gt;post_count;<br />
if(empty($paged))$paged = 1;<br />
$prev = $paged &#8211; 1;<br />
$next = $paged + 1;<br />
$range = 2; // only edit this if you want to show more page-links<br />
$showitems = ($range * 2)+1;</p>
<p>$pages = ceil($total_posts/$posts_per_page);<br />
if(1 != $pages){<br />
echo &#8220;&lt;div class=&#8217;pagination&#8217;&gt;&#8221;;<br />
echo ($paged &gt; 2 &amp;&amp; $paged+$range+1 &gt; $pages &amp;&amp; $showitems &lt; $pages)? &#8220;&lt;a href=&#8217;&#8221;.get_pagenum_link(1).&#8221;&#8216;&gt;最前&lt;/a&gt;&#8221;:&#8221;";<br />
echo ($paged &gt; 1 &amp;&amp; $showitems &lt; $pages)? &#8220;&lt;a href=&#8217;&#8221;.get_pagenum_link($prev).&#8221;&#8216;&gt;上一页&lt;/a&gt;&#8221;:&#8221;";</p>
<p>for ($i=1; $i &lt;= $pages; $i++){<br />
if (1 != $pages &amp;&amp;( !($i &gt;= $paged+$range+1 || $i &lt;= $paged-$range-1) || $pages &lt;= $showitems )){<br />
echo ($paged == $i)? &#8220;&lt;span class=&#8217;current&#8217;&gt;&#8221;.$i.&#8221;&lt;/span&gt;&#8221;:&#8221;&lt;a href=&#8217;&#8221;.get_pagenum_link($i).&#8221;&#8216; class=&#8217;inactive&#8217; &gt;&#8221;.$i.&#8221;&lt;/a&gt;&#8221;;<br />
}<br />
}</p>
<p>echo ($paged &lt; $pages &amp;&amp; $showitems &lt; $pages) ? &#8220;&lt;a href=&#8217;&#8221;.get_pagenum_link($next).&#8221;&#8216;&gt;下一页&lt;/a&gt;&#8221; :&#8221;";<br />
echo ($paged &lt; $pages-1 &amp;&amp; $paged+$range-1 &lt; $pages &amp;&amp; $showitems &lt; $pages) ? &#8220;&lt;a href=&#8217;&#8221;.get_pagenum_link($pages).&#8221;&#8216;&gt;最后&lt;/a&gt;&#8221;:&#8221;";<br />
echo &#8220;&lt;/div&gt;n&#8221;;<br />
}<br />
}</p></blockquote>
<p>Then put this reference code in the place where page navigation is needed to show.</p>
<blockquote><p>&lt;?php kriesi_pagination($query_string); ?&gt;</p></blockquote>
<p>And finally add some styles in the theme&#8217;s style.css file.</p>
<blockquote><p>.pagination{<br />
line-height:23px;<br />
}<br />
.pagination span, .pagination a{<br />
font-size:12px;<br />
margin: 2px 6px 2px 0;<br />
background:#fff;<br />
border:1px solid #e5e5e5;<br />
color:#787878;<br />
padding:2px 5px 2px 5px;<br />
text-decoration:none;<br />
}<br />
.pagination a:hover{<br />
background: #8391A7;<br />
border:1px solid #fff;<br />
color:#fff;<br />
}<br />
.pagination .current{<br />
background: #fff;<br />
border:1px solid #8d8d8d;<br />
color:#393939;<br />
font-size:12px;<br />
padding:2px 5px 2px 5px;<br />
}</p></blockquote>
<p>Here comes a problem. When that is put in a new page to navigate posts, it does not work. And after carefully checking, the problem gets located in the function calling where the  &#8217;query_string&#8217; is used. If it is going to be used in a page with its ID equals 99, then the &#8216;query_string&#8217; should be like this:</p>
<p>kriesi_pagination(&#8220;cat=99&#8243;);</p>
<p>or else, the page navigation would not show up due to the post number is zero.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/1464.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Firefox is IE now</title>
		<link>http://www.andol.info/web/1087.htm</link>
		<comments>http://www.andol.info/web/1087.htm#comments</comments>
		<pubDate>Thu, 16 Jul 2009 12:40:12 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=1087</guid>
		<description><![CDATA[This is an interesting video showing you how to pretend Firefox browser as Internet Explorer. It is simple to install this add on and then select the agent type to keep exploring.]]></description>
			<content:encoded><![CDATA[<p><object width="485" height="375"><param name="movie" value="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" /><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="playerType=embedded&#038;type=id&#038;value=50074419" /><embed src="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" type="application/x-shockwave-flash" wmode="transparent" width="485" height="375" allowFullScreen="true" FlashVars="playerType=embedded&#038;type=id&#038;value=50074419" /></object><br />
This is an interesting video showing you how to pretend Firefox browser as Internet Explorer. It is simple to install this add on and then select the agent type to keep exploring. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/1087.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page Rank recoverd !</title>
		<link>http://www.andol.info/life/1051.htm</link>
		<comments>http://www.andol.info/life/1051.htm#comments</comments>
		<pubDate>Fri, 29 May 2009 07:50:18 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Pagerank]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=1051</guid>
		<description><![CDATA[FOR THE MEMORY OF PR RECOVERY While changing the domain name from andol.info to andol.info, i lost all the page rank datas which was reset to zero. After nearly 2 months&#8217; waiting, finally, the page rank starts to recover. It is back !]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/05/prrecover.jpg"><img class="alignnone size-thumbnail wp-image-1052" title="prrecover" src="http://www.andol.info/wp-content/uploads/2009/05/prrecover-485x82.jpg" alt="prrecover" width="485" height="82" /></a></p>
<p style="text-align: center;"><span style="color: #C00;"><strong>FOR THE MEMORY OF PR RECOVERY</strong></span></p>
<p>While changing the domain name from andol.info to andol.info, i lost all the page rank datas which was reset to zero. After nearly 2 months&#8217; waiting, finally, the page rank starts to recover. It is back !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/life/1051.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usability review for Go.taobao.com</title>
		<link>http://www.andol.info/web/1012.htm</link>
		<comments>http://www.andol.info/web/1012.htm#comments</comments>
		<pubDate>Thu, 23 Apr 2009 14:47:07 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=1012</guid>
		<description><![CDATA[This is the 2nd part of usability evaluation for go.taobao.com. According to the 1st part evaluation, we found some of unfluent to browse the pictures which is probably due to the networking speed. So, in this review, networking was test 5 times destributed in different times in the day and night. One random search word [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb0.jpg"><img class="alignnone size-thumbnail wp-image-1013" title="gtb0" src="http://www.andol.info/wp-content/uploads/2009/04/gtb0-485x125.jpg" alt="gtb0" width="485" height="125" /></a></p>
<p>This is the 2nd part of usability evaluation for <a href="http://go.taobao.com" target="_blank">go.taobao.com</a>. According to the <a href="http://www.andol.info/web/982.htm" target="_blank">1st part evaluation</a>, we found some of unfluent to browse the pictures which is probably due to the networking speed. So, in this review, networking was test 5 times destributed in different times in the day and night. <span id="more-1012"></span></p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb1.jpg"><img class="alignnone size-thumbnail wp-image-1014" title="gtb1" src="http://www.andol.info/wp-content/uploads/2009/04/gtb1-485x125.jpg" alt="gtb1" width="485" height="125" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb1.jpg"></a>One random search word was selected on the page which looks quite hot. And, onece the first page was ready, regular click started at the rate of 1 click one second. Looks quite smooth at the first beginning~</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb2.jpg"><img class="alignnone size-thumbnail wp-image-1015" title="gtb2" src="http://www.andol.info/wp-content/uploads/2009/04/gtb2-485x125.jpg" alt="gtb2" width="485" height="125" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb2.jpg"></a>Oops, looks something happened accidently, the picture displaying was sucked although the small thumbnails were still working.</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb3.jpg"><img class="alignnone size-thumbnail wp-image-1016" title="gtb3" src="http://www.andol.info/wp-content/uploads/2009/04/gtb3-485x125.jpg" alt="gtb3" width="485" height="125" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb3.jpg"></a>Ok, waiting would be the only thing to do&#8230;</p>
<p>Getting into the picture detail entry, new window, detailed page and &#8230; oops, a small thumb&#8217;s missing.</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb4.jpg"><img class="alignnone size-thumbnail wp-image-1017" title="gtb4" src="http://www.andol.info/wp-content/uploads/2009/04/gtb4-485x125.jpg" alt="gtb4" width="485" height="125" /></a></p>
<p>Finally, the pictures caught up with my brouwsing. Wait&#8230; what is this, motel ? i found it when i was searching skirt ? Cool~</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/gtb5.jpg"><img class="alignnone size-thumbnail wp-image-1018" title="gtb5" src="http://www.andol.info/wp-content/uploads/2009/04/gtb5-485x125.jpg" alt="gtb5" width="485" height="125" /></a></p>
<p>Again, similar lagging behind things happened, fortunately, i have understood it now.</p>
<p>So, the review conclusions:</p>
<p><strong>1)  Precise picture matching, need be improved ( at least dont mistook motel to women&#8217;s dress, ;] ).</strong></p>
<p><strong>2) It is better to improve the rapidly picture browsing, don&#8217;t show sucking status in the front of users.</strong></p>
<p><strong>3) Small thumbnails are much faster to be loaded than big ones, why not fill the page with numrous of small pictures ( clear enough ) which would indicate bloody number of pictures.</strong></p>
<p><strong>4) The most important one, fliping from right to left seems not the perfectly effecient way to display information like those thousands of handreds pictures. If it flips fast, it looks blur and the users can not see the contents.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/1012.htm/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Dedicated to Earth day-28 beautiful photographs</title>
		<link>http://www.andol.info/web/1006.htm</link>
		<comments>http://www.andol.info/web/1006.htm#comments</comments>
		<pubDate>Thu, 23 Apr 2009 08:55:42 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=1006</guid>
		<description><![CDATA[Earth from above by pipipink Morning by Krzysztof Browko Goðafoss by Ragnheidur Arngrimsdottir Morning impression by Przemyslaw Wielicki Central Balkan by Vladimir666 Flowing Water &#38; Ice Formations by Doug Roane Morning Sun by Norbert Maier Planet Earth by steler A Reflective Morning by John Parminter Gold Fields by Janusz Wanczyk Sea by jtangen Morning line [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://pipipink.deviantart.com/art/EARTH-FROM-ABOVE-88050920" target="_blank">Earth from above by pipipink</a></strong></p>
<p><a href="http://www.smashingapps.com/wp-content/uploads/2009/04/earth-from-above.jpg" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/earth-from-above.jpg" alt="EARTH FROM ABOVE" width="485" height="333" /></a><span id="more-1006"></span></p>
<p><strong><a href="http://1x.com/photos/nature/24114/" target="_blank">Morning by Krzysztof Browko</a></strong></p>
<p><a href="http://1x.com/photos/nature/24114/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/morning.jpg" alt="Morning" width="450" height="431" /></a></p>
<p><strong><a href="http://1x.com/photos/nature/23881/" target="_blank">Goðafoss by Ragnheidur Arngrimsdottir</a></strong></p>
<p><a href="http://1x.com/photos/nature/23881/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/north-iceland.jpg" alt="North Iceland" width="450" height="295" /></a></p>
<p><strong><a href="http://1x.com/photos/nature/24040/" target="_blank">Morning impression by Przemyslaw Wielicki</a></strong></p>
<p><a href="http://1x.com/photos/nature/24040/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/morning-impression.jpg" alt="Morning impression" width="450" height="308" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/24193/" target="_blank">Central Balkan by Vladimir666</a></strong></p>
<p><a href="http://1x.com/photos/landscape/24193/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/central-balkan.jpg" alt="Central Balkan" width="450" height="300" /></a></p>
<p><strong><a href="http://1x.com/photos/nature/21458/" target="_blank">Flowing Water &amp; Ice Formations by Doug Roane</a></strong></p>
<p><a href="http://1x.com/photos/nature/21458/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/flowing-water-and-ice-formations.jpg" alt="Flowing Water &amp; Ice Formations" width="450" height="300" /></a></p>
<p><strong><a href="http://1x.com/photos/nature/24026/" target="_blank">Morning Sun by Norbert Maier</a></strong></p>
<p><a href="http://1x.com/photos/nature/24026/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/morning-sun.jpg" alt="morning sun" width="450" height="271" /></a></p>
<p><strong><a href="http://steler.deviantart.com/art/Planet-Earth-83900367" target="_blank">Planet Earth by steler</a></strong></p>
<p><a href="http://steler.deviantart.com/art/Planet-Earth-83900367" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/planet-earth.jpg" alt="Planet Earth" width="450" height="610" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/24236/" target="_blank">A Reflective Morning by John Parminter</a></strong></p>
<p><a href="http://1x.com/photos/landscape/24236/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/a-reflective-morning.jpg" alt="A Reflective Morning" width="450" height="283" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23973/" target="_blank">Gold Fields by Janusz Wanczyk</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23973/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/gold-fields.jpg" alt="gold fields" width="450" height="302" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23850/" target="_blank">Sea by jtangen</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23850/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/sea-shore.jpg" alt="Sea" width="450" height="338" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23698/" target="_blank">Morning line by Janusz Wanczyk</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23698/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/morning-line.jpg" alt="Morning line" width="450" height="294" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23713/" target="_blank">Mountain Waves by Alan Czekierda</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23713/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/waves.jpg" alt="Mountain Waves" width="450" height="302" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23866/" target="_blank">Dream about a green valley by Janusz Wanczyk</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23866/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/dream-about-a-green-valley.jpg" alt="Dream about a green valley" width="450" height="279" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23530/" target="_blank">Two valley view by Bergljot</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23530/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/two-valley-view.jpg" alt="Two valley view" width="450" height="300" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23378/" target="_blank">Autumn curve by Janusz Wanczyk</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23378/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/autumn-curve.jpg" alt="Autumn curve" width="450" height="302" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23400/" target="_blank">Lovely Old Lane by Northman</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23400/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/lovely-old-lane.jpg" alt="Lovely Old Lane" width="450" height="392" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23495/" target="_blank">Morning valley by Janusz Wanczyk</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23495/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/morning-valley.jpg" alt="Morning valley" width="450" height="276" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/23179/" target="_blank">Elf’s Land by Alexander Maslarski</a></strong></p>
<p><a href="http://1x.com/photos/landscape/23179/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/elfs-land.jpg" alt="Elf’s Land" width="450" height="298" /></a></p>
<p><strong><a href="http://1x.com/photos/nature/22191/" target="_blank">Thin Ice by Doug Roane</a></strong></p>
<p><a href="http://1x.com/photos/nature/22191/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/thin-ice.jpg" alt="Thin Ice" width="450" height="300" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/22843/" target="_blank">In the mist’s sea by Janusz Wanczyk</a></strong></p>
<p><a href="http://1x.com/photos/landscape/22843/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/in-the-mists-sea.jpg" alt="In the mist’s sea" width="450" height="305" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/22793/" target="_blank">The Sky Goes All the Way Home by Mark Broughton</a></strong></p>
<p><a href="http://www.smashingapps.com/wp-content/uploads/2009/04/the-sky-goes-all-the-way-home.jpg" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/the-sky-goes-all-the-way-home.jpg" alt="The Sky Goes All the Way Home" width="450" height="292" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/22578/" target="_blank">Strolling on the Dolomites by Robert Strahinjic</a></strong></p>
<p><a href="http://1x.com/photos/landscape/22578/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/strolling-on-the-dolomites.jpg" alt="Strolling on the Dolomites" width="450" height="301" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/22481/" target="_blank">Glacier Formation by Axel Gimenez</a></strong></p>
<p><a href="http://1x.com/photos/landscape/22481/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/glacier-formation.jpg" alt="Glacier Formation" width="450" height="300" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/21948/" target="_blank">Sea by Boots</a></strong></p>
<p><strong><a href="http://1x.com/photos/landscape/21776/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/sea-and-stone.jpg" alt="Sea" width="450" height="301" /></a></strong></p>
<p><strong><a href="http://1x.com/photos/landscape/21776/" target="_blank">Pangong Tso by Prateek Dubey</a></strong></p>
<p><a href="http://1x.com/photos/landscape/21776/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/pangong-tso.jpg" alt="Pangong Tso" width="450" height="302" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/21982/" target="_blank">The Other Side by Stefan Bingham</a></strong></p>
<p><a href="http://1x.com/photos/landscape/21982/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/the-other-side.jpg" alt="The Other Side" width="450" height="271" /></a></p>
<p><strong><a href="http://1x.com/photos/landscape/21564/" target="_blank">Seljalandsfoss by Henrik Spranz</a></strong></p>
<p><a href="http://1x.com/photos/landscape/21564/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/seljalandsfoss.jpg" alt="Seljalandsfoss" width="450" height="300" /></a></p>
<p>[From <a rel="external" href="http://www.smashingapps.com/2009/04/22/28-beautiful-and-inspiring-photographs-dedicated-to-earth-day.html">smashingapps.com</a>, all rights reserved by original authors]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/1006.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding &#8216;comment reply&#8217; in wordpress without plugin</title>
		<link>http://www.andol.info/web/1001.htm</link>
		<comments>http://www.andol.info/web/1001.htm#comments</comments>
		<pubDate>Wed, 22 Apr 2009 17:25:52 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=1001</guid>
		<description><![CDATA[There is a comment plugin for wordpress which is called &#8216;WordPress Thread Comment&#8216;  which was develped by &#8216;Author: 偶爱偶家&#8217;. This Plugin is an enhancement for WordPress&#8217;s comment function. It enables users to reply on a exist comment, and the discussion will be displayed threaded or nested. But, i found a new way to get &#8216;reply [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/04/wptrick2.jpg"><img class="alignnone size-medium wp-image-1002" title="wptrick2" src="http://www.andol.info/wp-content/uploads/2009/04/wptrick2-485x225.jpg" alt="wptrick2" width="485" height="225" /></a></p>
<p>There is a comment plugin for wordpress which is called &#8216;<a href="http://wordpress.org/extend/plugins/wordpress-thread-comment/">WordPress Thread Comment</a>&#8216;  which was develped by &#8216;<span class="info-marker">Author:</span> 偶爱偶家&#8217;.</p>
<blockquote><p>This Plugin is an enhancement for WordPress&#8217;s comment function. It enables users to reply on a exist comment, and the discussion will be displayed threaded or nested.</p></blockquote>
<p>But, i found a new way to get &#8216;reply comments&#8217; function working without plugins, it is very simple:<span id="more-1001"></span></p>
<p><strong>First</strong>, check the wordpress version, i hope it would be 2.7.</p>
<p><strong>Second</strong>, download &#8216;comments.php&#8217; from wordpress 2.7&#8242;s default thems folder.</p>
<p><strong>Last</strong>, replace the new &#8216;comments.php&#8217; file as the older one and check the wordpress admin&#8217;s settings/discuss to enable multi thread comment.</p>
<p>Well, get some CSS style to control the display and start to enjoy it !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/1001.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Print Typography Layouts</title>
		<link>http://www.andol.info/web/997.htm</link>
		<comments>http://www.andol.info/web/997.htm#comments</comments>
		<pubDate>Wed, 22 Apr 2009 09:01:46 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=997</guid>
		<description><![CDATA[In print design, typography is one of the more crucial aspects. Typography is essential the practice of organizing, arranging, and modifying type. The typography techniques uesed in print has a direct impact on how the reader is able to receive the image. In print, typography doesn’t have to be plain and boring. It can be beautiful, [...]]]></description>
			<content:encoded><![CDATA[<p>In print design, <strong>typography</strong> is one of the more crucial aspects. Typography is essential the practice of organizing, arranging, and modifying type. The typography techniques uesed in print has a direct impact on how the reader is able to receive the image. In print, typography doesn’t have to be plain and boring. It can be beautiful, creative, and colorful. There are a number of ways to liven up typography, such as creative and original layouts, using color variations, use of fancy fonts, and much more.</p>
<p>This showcase will focus mostly on the layout and organization schemes. Below are about <strong>40 different typographic layouts</strong> used in different fields of print such as brochure design, editorial design, and poster design.</p>
<p><a href="http://media1.smashingmagazine.com/images/creative-print-layouts/realdutch4.jpg"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/realdutch4.jpg" alt="Screenshot" width="485" /></a><span id="more-997"></span></p>
<p><a href="http://www.behance.net/Gallery/Effektive-CVPoster-Mailer/107375">Effektive CV/Poster Mailer</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Effektive-CVPoster-Mailer/107375"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/effektive.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Effektive-CVPoster-Mailer/107375"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/effektive2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Effektive-CVPoster-Mailer/107375"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/effektive3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Effektive-CVPoster-Mailer/107375"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/effektive4.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Effektive-CVPoster-Mailer/107375"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/effektive5.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://beaucoupzero.deviantart.com/art/poster-33497970">Spit Kingdom</a></p>
<p class="showcase"><a href="http://beaucoupzero.deviantart.com/art/poster-33497970"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/poster_by_beaucoupzero.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Sheridan-_-Co-Brochure/87811">Sheridan &amp; Co.</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Sheridan-_-Co-Brochure/87811"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/sheridan.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Sheridan-_-Co-Brochure/87811"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/sheridan_b.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Avant-Garde-Gothic-Typeface-Booklet/95659">Avant Garde Gothic Typeface Booklet</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Avant-Garde-Gothic-Typeface-Booklet/95659"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/avantgarde.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Akimoto-typeface/128695">Akimoto Typeface</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Akimoto-typeface/128695"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/akimoto1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Akimoto-typeface/128695"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/akimoto2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Akimoto-typeface/128695"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/akimoto3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/NTU-Art-_-Design-Prospectus/145409">NTU Art &amp; Design Prospectus</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/NTU-Art-_-Design-Prospectus/145409"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/ntuart1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/NTU-Art-_-Design-Prospectus/145409"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/ntuart2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/NTU-Art-_-Design-Prospectus/145409"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/ntuart3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/NTU-Art-_-Design-Prospectus/145409"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/ntuart4.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.gingermonkeydesign.com/showcase/Design/arnolfini/babe">BABE</a></p>
<p class="showcase"><a href="http://www.gingermonkeydesign.com/showcase/Design/arnolfini/babe"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/BABE.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.xavierencinas.com/#5413">Rizzo + Gobart</a></p>
<p class="showcase"><a href="http://www.xavierencinas.com/#5413"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/rizzo1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.xavierencinas.com/#5413"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/rizzo2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.xavierencinas.com/#5415">Mise au point</a></p>
<p class="showcase"><a href="http://www.xavierencinas.com/#5415"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/mise1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.xavierencinas.com/#5415"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/mise2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.ultra.li/">UsineSonore</a></p>
<p class="showcase"><a href="http://www.ultra.li/"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/usinesonore_prog_1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.ultra.li/"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/usinesonore_prog_2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.graphic-exchange.com/archives/03identity_04.htm">Bionic Systems</a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/archives/03identity_04.htm"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/bionicsystems.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/archives/03identity_04.htm"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/bionicsystems2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.graphic-exchange.com/archives/03identity_04.htm">National Geographic</a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/archives/03identity_04.htm"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/nationalg1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/archives/03identity_04.htm"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/nationalg2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/archives/03identity_04.htm"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/nationalg3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Colorcubic-Promotional-Prints/99110">Colorcubic</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Colorcubic-Promotional-Prints/99110"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/colorcubic.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Kiosk-37/57777">Kiosk 37</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Kiosk-37/57777"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/kiosk37.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Kiosk-37/57777"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/kiosk37_2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/ALPHA_TXT/88749">ALPHA_TXT</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/ALPHA_TXT/88749"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/alphatxt.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/ALPHA_TXT/88749"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/alphatxt2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/ALPHA_TXT/88749"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/alphatxt3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Printed-posters-2009/182321">Posters by Official Classic</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Printed-posters-2009/182321"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/poster1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Printed-posters-2009/182321"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/poster2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Printed-posters-2009/182321"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/poster3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Printed-posters-2009/182321"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/poster4.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://atobgraphics.deviantart.com/art/Design-For-Print-35003057">Poster</a></p>
<p class="showcase"><a href="http://atobgraphics.deviantart.com/art/Design-For-Print-35003057"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/poster5.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://sebdesign.deviantart.com/art/Stel-Christian-Cambas-Poster-66801978">Stel Christian Cambas Poster</a></p>
<p class="showcase"><a href="http://sebdesign.deviantart.com/art/Stel-Christian-Cambas-Poster-66801978"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/Stel_Christian_Cambas_Poster_by_SeBDeSiGN.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://fabianohikaru.deviantart.com/art/Typography-80428966">Typography Poster</a></p>
<p class="showcase"><a href="http://fabianohikaru.deviantart.com/art/Typography-80428966"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/Typography_by_fabianohikaru.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Beck-8-Bit-Variations/87847">Beck 8-Bit Variations</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Beck-8-Bit-Variations/87847"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/beck1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Beck-8-Bit-Variations/87847"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/beck2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Beck-8-Bit-Variations/87847"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/beck3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Children-of-the-idiom/93731">Children of the idiom</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Children-of-the-idiom/93731"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/children3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Children-of-the-idiom/93731"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/children1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Children-of-the-idiom/93731"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/children2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.graphic-exchange.com/02print.htm">Commune</a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/02print.htm"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/commune1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/02print.htm"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/commune2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.graphic-exchange.com/02print.htm"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/commune3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Aesthetic-Mathematics_Work-In-Progress/139003">Aesthetic Mathematics</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Aesthetic-Mathematics_Work-In-Progress/139003"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/aesthetic1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Aesthetic-Mathematics_Work-In-Progress/139003"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/aesthetic2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Whats-The-World___/203153">What’s the World…</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Whats-The-World___/203153"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/theworld.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Whats-The-World___/203153"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/theworld2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Whats-The-World___/203153"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/theworld3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Whats-The-World___/203153"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/theworld4.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Whats-The-World___/203153"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/theworld5.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Oscar_Wilde_Retrospective/135247">Oscar_Wilde_Retrospective</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Oscar_Wilde_Retrospective/135247"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/oscar.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Oscar_Wilde_Retrospective/135247"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/oscar2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Oscar_Wilde_Retrospective/135247"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/oscar3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Oscar_Wilde_Retrospective/135247"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/oscar4.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Oscar_Wilde_Retrospective/135247"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/oscar5.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Play-with-Colors/107689">Play With Colors</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Play-with-Colors/107689"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/playwithcolors.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Play-with-Colors/107689"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/playwithcolors2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Posters/56887">Posters by Pablo Alfieri</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Posters/56887"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/posters1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Posters/56887"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/posters2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/New-Posters/62554">More Posters by Pablo Alfieri</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/New-Posters/62554"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/posters3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/New-Posters/62554"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/posters4.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Snoogle-Poster-99-Dingbats/202044">99 Dingbats</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Snoogle-Poster-99-Dingbats/202044"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/99dingbats.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/No-Lemon-Daydream-Magazine/204425">No Lemon Daydream Magazine</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/No-Lemon-Daydream-Magazine/204425"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/nolemon1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/No-Lemon-Daydream-Magazine/204425"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/nolemon2.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Lazydog/54568">Lazydog</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Lazydog/54568"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/lazydog1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Lazydog/54568"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/lazydog2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Lazydog/54568"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/lazydog3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Lazydog/54568"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/lazydog4.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Real-Dutch-Design-books/117172">Real Dutch Design Books</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Real-Dutch-Design-books/117172"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/realdutch1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Real-Dutch-Design-books/117172"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/realdutch2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Real-Dutch-Design-books/117172"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/realdutch3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Real-Dutch-Design-books/117172"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/realdutch4.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Macro-Micro/102444">Macro Micro</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Macro-Micro/102444"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/macro1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Macro-Micro/102444"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/macro2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Macro-Micro/102444"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/macro3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Marius-Martinussen/158010">Marius Martinussen</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Marius-Martinussen/158010"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/marius.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Marius-Martinussen/158010"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/marius2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Marius-Martinussen/158010"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/marius3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/DADA-Design/154899">DADA Design</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/DADA-Design/154899"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/dada1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/DADA-Design/154899"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/dada2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/DADA-Design/154899"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/dada3.jpg" alt="Screenshot" width="450" /></a></p>
<p><a href="http://www.behance.net/Gallery/Berlin-Cafe-posters/154788">Berlin Cafe Posters</a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Berlin-Cafe-posters/154788"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/berlin1.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Berlin-Cafe-posters/154788"><img src="http://media2.smashingmagazine.com/images/creative-print-layouts/berlin2.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase"><a href="http://www.behance.net/Gallery/Berlin-Cafe-posters/154788"><img src="http://media1.smashingmagazine.com/images/creative-print-layouts/berlin3.jpg" alt="Screenshot" width="450" /></a></p>
<p class="showcase">[From <a href="http://www.smashingmagazine.com/2009/04/21/creative-print-typography-layouts/" target="_blank">smashingmagazine.com</a>, all rights reserved by original authors.]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/997.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taobao image browsing search engine</title>
		<link>http://www.andol.info/web/982.htm</link>
		<comments>http://www.andol.info/web/982.htm#comments</comments>
		<pubDate>Sat, 18 Apr 2009 15:19:29 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=982</guid>
		<description><![CDATA[Before starting the review of Taobao.com&#8217;s new service the image browsing search engine, it looks Taobao is attempting to mostly utilize datas it has accumulated, definitly, that is something like data digging which will be quite nice for customers. Ok, let&#8217;s review it. The main page is quite a little dark with simple search engine [...]]]></description>
			<content:encoded><![CDATA[<p>Before starting the review of Taobao.com&#8217;s new service the <a href="http://go.taobao.com" target="_blank">image browsing search engine</a>, it looks Taobao is attempting to mostly utilize datas it has accumulated, definitly, that is something like data digging which will be quite nice for customers. Ok, let&#8217;s review it.</p>
<p>The main page is quite a little dark with simple search engine like style to lead user easily finding the entance. Some hot search words and pictures, on the left top corner, a even more simpler interface style switch button is there, but not so clear what it is used for until click it. </p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/taobao0.jpg"><img class="alignnone size-medium wp-image-983" title="taobao0" src="http://www.andol.info/wp-content/uploads/2009/04/taobao0-485x234.jpg" alt="taobao0" width="485" height="234" /></a></p>
<p>Typing some words and click search, there comes results page. Looks the images are quite huge and slow to load, during the tests,  i tried several times to reload to stop page getting down, but at last i gave up to go back. <strong>Probably, the web speed would be the first problem.<span id="more-982"></span><br />
</strong></p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/taobao1.jpg"><img class="alignnone size-medium wp-image-984" title="taobao1" src="http://www.andol.info/wp-content/uploads/2009/04/taobao1-485x234.jpg" alt="taobao1" width="485" height="234" /></a></p>
<p>Finally i saw the pictures, fantastic indeed, except bit of slow speed.</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/taobao2.jpg"><img class="alignnone size-medium wp-image-985" title="taobao2" src="http://www.andol.info/wp-content/uploads/2009/04/taobao2-485x234.jpg" alt="taobao2" width="485" height="234" /></a></p>
<p>Browsing the page by click or wheel scrolling, either is good to use, nice work.</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/taobao3.jpg"><img class="alignnone size-medium wp-image-986" title="taobao3" src="http://www.andol.info/wp-content/uploads/2009/04/taobao3-485x234.jpg" alt="taobao3" width="485" height="234" /></a></p>
<p>Oops, got down again. I wonder, why does Taobao sacrify so much waiting time to show such couple of pictures, patient challengable ? It would be nightmare under china&#8217;s web speed environments. </p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/taobao4.jpg"><img class="alignnone size-medium wp-image-987" title="taobao4" src="http://www.andol.info/wp-content/uploads/2009/04/taobao4-485x234.jpg" alt="taobao4" width="485" height="234" /></a></p>
<p>So, i designed an illustration below to compare with the original one: getting smaller pictures which can be enlarged when mouse is over.</p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/taobao5.jpg"><img class="alignnone size-medium wp-image-988" title="taobao5" src="http://www.andol.info/wp-content/uploads/2009/04/taobao5-485x234.jpg" alt="taobao5" width="485" height="234" /></a></p>
<p>Here is just the first sight review, whether it is good to use or not, how easy to use and what exactly the interaction effectiveness it is, all those will come up soon. </p>
<address>[ ps: some of the pictures' ( from go.taobao.com ) copyrights belong to taobao. ]</address>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/982.htm/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress trick of &#8216;more&#8217; tag in page templates</title>
		<link>http://www.andol.info/web/970.htm</link>
		<comments>http://www.andol.info/web/970.htm#comments</comments>
		<pubDate>Fri, 17 Apr 2009 09:22:45 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=970</guid>
		<description><![CDATA[I have a similar problem. On page.php, after the loop I&#8217;m using get_posts to grab and display some Posts that are related to the current Page. Everything is fine except that I&#8217;m getting full content without the more link. Does the more quicktag not work with get_posts on page.php? Here is the solution:  the &#8220;more&#8230;&#8221; does NOT work on Pages by default [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-971" href="http://www.andol.info/web/970.htm/attachment/wptrick"><img class="alignnone size-full wp-image-971" title="wptrick" src="http://www.andol.info/wp-content/uploads/2009/04/wptrick.jpg" alt="wptrick" width="485" height="191" /></a></p>
<blockquote><p>I have a similar problem. On <strong>page.php</strong>, after the loop I&#8217;m using <strong>get_posts</strong> to grab and display some Posts that are related to the current Page.</p>
<p>Everything is fine except that I&#8217;m getting full content without the more link. Does the <strong>more quicktag</strong> not work with get_posts on page.php?</p></blockquote>
<p><span id="more-970"></span></p>
<p>Here is the solution: </p>
<blockquote><p>the &#8220;more&#8230;&#8221; does NOT work on <a href="http://codex.wordpress.org/Pages">Pages</a> by default &#8211; a Page displays just one single entry, so no need for it: there is no &#8220;multi-Page&#8221; view in WP.</p>
<p>According to some older posts in this forum that you could find by searching &#8211; this should address the issue:<br />
<code>&lt;?php $more = 0; ?&gt;</code> if placed before the query.</p></blockquote>
<blockquote><p>After much experimentation, here is what I&#8217;ve learned:</p>
<p>The more quicktag does not seem to work with <code>get_posts()</code> outside the loop even when using $more = 0; or a custom template instead of page.php.</p>
<p>The more quicktag will work with <code>query_posts()</code> outside the loop if you set $more = 0; even if you use page.php.</p>
<p>A note for people switching functions. Use category= with get_posts(). Use cat= with query_posts().</p>
<p>Next challenge: get tags working on my related posts displayed below a page&#8217;s content.
</p></blockquote>
<p>Here&#8217;s my query for posterity:</p>
<pre class="code">&lt;?php if (isset ($relatedcat)) {
// related cat set in custom field
 $query= 'numberposts=99&amp;cat='.
$relatedcat.'&amp;orderby=date&amp;order=ASC';
 query_posts($query); // run the query
 global $more; $more = 0; // allow more quicktag
 while (have_posts()) : the_post(); // the loop
 setup_postdata($post);
?&gt;
&lt;div class="post" &gt;</pre>
<address>[From <a href="http://wordpress.org" target="_blank">wordpress.org</a>, all rights reserved by original ahtors]</address>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/970.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t use flash as site&#8217;s navigator !</title>
		<link>http://www.andol.info/web/958.htm</link>
		<comments>http://www.andol.info/web/958.htm#comments</comments>
		<pubDate>Wed, 15 Apr 2009 17:33:20 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[54xing]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=958</guid>
		<description><![CDATA[It is a strange thing that,  when i was a tutor, i taught students web design but they all interested in making flashing things like blink texts and cool flash effects. As they thought, flashing things attracted people&#8217;s attention, what a pity, they didn&#8217;t notice that flashing also took away the attention belonging to some [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-959" href="http://www.andol.info/web/958.htm/attachment/54xing"><img class="alignnone size-medium wp-image-959" title="54xing" src="http://www.andol.info/wp-content/uploads/2009/04/54xing-485x173.jpg" alt="54xing" width="485" height="173" /></a></p>
<p>It is a strange thing that,  when i was a tutor, i taught students web design but they all interested in making flashing things like blink texts and cool flash effects. As they thought, flashing things attracted people&#8217;s attention, what a pity, they didn&#8217;t notice that flashing also took away the attention belonging to some other important contents. Going further, how long could people&#8217;s attention be, the answer is 1 to 3 minutes at most. Shocking, isn&#8217;t it ?<span id="more-958"></span>There are several pitfalls of using flash things as important components:</p>
<p>1) SEO issues: google cann&#8217;t index the flash as good as normal ones, that is truth, at least until now it is that.</p>
<p>2) Flash player is another issue: nobody could say that every brower is campatible with the flash? The answer is NO.</p>
<p> 3) Some flash effects are not compatible. Like the effect showed in the picture above, it is some kind simulation of Mac&#8217;s Dock. What is it used for? Just show that it&#8217;s cool, funny or efficient? Neither, i think. </p>
<p>In my opinion, just like the picture demonstrated below, clear, simple and accessable navigator plus inspirative design would be useful and helpful to all browsers. </p>
<address>ps: i hope the flash navigator above would become a better one.</address>
<p><a rel="attachment wp-att-960" href="http://www.andol.info/web/958.htm/attachment/54xing2"><img class="alignnone size-full wp-image-960" title="54xing2" src="http://www.andol.info/wp-content/uploads/2009/04/54xing2.jpg" alt="54xing2" width="485" height="165" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/958.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying &#8216;related posts&#8217; without plugin in WordPress</title>
		<link>http://www.andol.info/web/947.htm</link>
		<comments>http://www.andol.info/web/947.htm#comments</comments>
		<pubDate>Wed, 15 Apr 2009 14:27:35 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=947</guid>
		<description><![CDATA[Several days ago, we published a new way to add &#8216;related posts&#8217; function into wordpress without plugins, that works. And accidently  today, in smashingmagzine i found a similar way to update &#8216;related posts&#8217; function: &#60;?php $tags = wp_get_post_tags($post-&#62;ID); if ($tags) { echo &#8216;Related Posts&#8217;; $first_tag = $tags[0]-&#62;term_id; $args=array( &#8216;tag__in&#8217; =&#62; array($first_tag), &#8216;post__not_in&#8217; =&#62; array($post-&#62;ID), &#8216;showposts&#8217;=&#62;5, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-948" href="http://www.andol.info/web/947.htm/attachment/sm4"><img class="alignnone size-medium wp-image-948" title="sm4" src="http://www.andol.info/wp-content/uploads/2009/04/sm4-485x196.jpg" alt="sm4" width="485" height="196" /></a></p>
<p>Several days ago, we published a new way to add &#8216;related posts&#8217; function into wordpress without plugins, that works. And accidently  today, in <a href="http://www.smashingmagazine.com/2009/04/15/10-exceptional-wordpress-hacks/" target="_blank"> smashingmagzine</a> i found a similar way to update &#8216;related posts&#8217; function:</p>
<blockquote class="code"><p>&lt;?php</p>
<p>$tags = wp_get_post_tags($post-&gt;ID);</p>
<p>if ($tags) {   echo &#8216;Related Posts&#8217;;</p>
<p>$first_tag = $tags[0]-&gt;term_id;</p>
<p>$args=array(     &#8216;tag__in&#8217; =&gt; array($first_tag),     &#8216;post__not_in&#8217; =&gt; array($post-&gt;ID),     &#8216;showposts&#8217;=&gt;5,     &#8216;caller_get_posts&#8217;=&gt;1    );</p>
<p>$my_query = new WP_Query($args);</p>
<p>if( $my_query-&gt;have_posts() ) {     while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); ?&gt;</p>
<p>&lt;p&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&#8221;&gt;</p>
<p>&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/p&gt;       &lt;?php     endwhile;   } }</p>
<p>?&gt;</p></blockquote>
<p>So now there are 2 ways to update the &#8216;related posts&#8217; function into your blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/947.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>21 Fantastic Examples Of Brilliant Photography With Humor</title>
		<link>http://www.andol.info/web/930.htm</link>
		<comments>http://www.andol.info/web/930.htm#comments</comments>
		<pubDate>Mon, 13 Apr 2009 09:55:37 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=930</guid>
		<description><![CDATA[[From smashingapps.com, all rights reserved by original authors] Out of Balance by Jeannette Oerlemans Six feet by Lev Tsimring envy by Fulvio Pellegrini Please wait a little by Marc Siewior Turtle and apple by Vedran Vidak Collaboration by ryandws Kung Fu Master by Lina Gunawan Softdrink Addict by Andrei About a dream by Jurga Sunshine [...]]]></description>
			<content:encoded><![CDATA[<p>[From <a href="http://www.smashingapps.com/2009/04/08/21-fantastic-examples-of-brilliant-photography-with-humor.html">smashingapps.com</a>, all rights reserved by original authors]<br />
<a href="http://www.andol.info/wp-content/uploads/2009/04/anatomy-lessons.jpg"><img class="alignnone size-full wp-image-943" title="anatomy-lessons" src="http://www.andol.info/wp-content/uploads/2009/04/anatomy-lessons.jpg" alt="anatomy-lessons" width="485" height="365" /><span id="more-930"></span></a><br />
<strong><a href="http://1x.com/photos/humour/23738/" target="_blank">Out of Balance by Jeannette Oerlemans</a></strong></p>
<p><a href="http://1x.com/photos/humour/23738/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/out-of-balance.jpg" alt="Out of Balance" width="485" height="485" /></a><strong><a href="http://1x.com/photos/humour/22746/" target="_blank">Six feet by Lev Tsimring</a></strong></p>
<p><a href="http://1x.com/photos/humour/22746/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/six-feet.jpg" alt="Six feet" width="485" height="330" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/23891/" target="_blank">envy by Fulvio Pellegrini</a></strong></p>
<p><a href="http://1x.com/photos/humour/23891/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/envy.jpg" alt="envy" width="485" height="701" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/23258/" target="_blank">Please wait a little by Marc Siewior</a></strong></p>
<p><a href="http://1x.com/photos/humour/23258/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/please-wait-a-little.jpg" alt="Please wait a little" width="485" height="283" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/23706/" target="_blank">Turtle and apple by Vedran Vidak</a></strong></p>
<p><a href="http://1x.com/photos/humour/23706/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/turtle-and-apple.jpg" alt="Turtle and apple" width="485" height="365" /></a></p>
<p><strong><a href="http://ryandws.deviantart.com/art/Collaboration-77268765" target="_blank">Collaboration by ryandws</a></strong></p>
<p><a href="http://ryandws.deviantart.com/art/Collaboration-77268765" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/collaboration.jpg" alt="Collaboration" width="485" height="293" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/22451/" target="_blank">Kung Fu Master by Lina Gunawan</a></strong></p>
<p><a href="http://1x.com/photos/humour/22451/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/kung-fu-master.jpg" alt="Kung Fu Master" width="485" height="421" /></a></p>
<p><a href="http://1x.com/photos/humour/22407/" target="_blank">Softdrink Addict by Andrei</a></p>
<p><a href="http://1x.com/photos/humour/22407/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/softdrink-addict.jpg" alt="softdrink addict" width="485" height="369" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/16930/" target="_blank">About a dream by Jurga</a></strong></p>
<p><a href="http://1x.com/photos/humour/16930/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/about-a-dream.jpg" alt="About a dream" width="485" height="727" /></a></p>
<p><strong><a href="http://she-hates-mondays.deviantart.com/art/sunshine-in-a-cup-115587796" target="_blank">Sunshine in a cup by She Hates Monday</a></strong></p>
<p><a href="http://she-hates-mondays.deviantart.com/art/sunshine-in-a-cup-115587796" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/sunshine-in-a-cup.jpg" alt="Sunshine in a cup" width="485" height="646" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/16719/" target="_blank">Tired by Bill Mangold</a></strong></p>
<p><a href="http://1x.com/photos/humour/16719/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/tired.jpg" alt="Tired" width="485" height="290" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/16089/" target="_blank">Teaser by Johan Lind</a></strong></p>
<p><a href="http://1x.com/photos/humour/16089/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/teaser.jpg" alt="Teaser" width="485" height="323" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/15810/" target="_blank">So Hungry by Heath Carney</a></strong></p>
<p><a href="http://1x.com/photos/humour/15810/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/so-hungry.jpg" alt="So Hungry" width="485" height="323" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/15655/" target="_blank">Say, Harold, haven’t we seen her before? by Ursula I Abresch</a></strong></p>
<p><a href="http://1x.com/photos/humour/15655/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/say-harold-have-not-we-seen-her-before.jpg" alt="Say, Harold, haven’t we seen her before?" width="485" height="335" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/15214/" target="_blank">I’ll never talk to you again by Adrifil</a></strong></p>
<p><a href="http://1x.com/photos/humour/15214/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/i-will-never-talk-to-you-again.jpg" alt="I’ll never talk to you again" width="485" height="272" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/14530/" target="_blank">Passionate by Ursula I Abresch</a></strong></p>
<p><a href="http://1x.com/photos/humour/14530/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/passionate.jpg" alt="Passionate" width="484" height="322" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/13027/" target="_blank">You are my best Friend by Jani</a></strong></p>
<p><a href="http://1x.com/photos/humour/13027/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/you-are-my-best-friend.jpg" alt="You are my best Friend" width="485" height="348" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/13000/" target="_blank">Ohhh Nooooo!!! by Mark B Bartosik</a></strong></p>
<p><a href="http://1x.com/photos/humour/13000/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/ohhh-nooooo.jpg" alt="Ohhh Nooooo!!!" width="485" height="323" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/12028/" target="_blank">Anatomy Lessons by Paul van Geldrop</a></strong></p>
<p><a href="http://1x.com/photos/humour/12028/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/anatomy-lessons.jpg" alt="Anatomy Lessons" width="485" height="370" /></a></p>
<p><strong><a href="http://www.flickr.com/photos/sameli/1898511953/" target="_blank">No Birds by Sameli</a></strong></p>
<p><a href="http://www.flickr.com/photos/sameli/1898511953/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/no-birds.jpg" alt="No Birds" width="484" height="537" /></a></p>
<p><strong><a href="http://1x.com/photos/humour/12066/" target="_blank">Bicho by Barbara C.</a></strong></p>
<p><a href="http://1x.com/photos/humour/12066/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/bicho.jpg" alt="Bicho" width="485" height="274" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/930.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>35+ Colorful And Inspiring Examples Of High Definition Wallpapers</title>
		<link>http://www.andol.info/web/927.htm</link>
		<comments>http://www.andol.info/web/927.htm#comments</comments>
		<pubDate>Sun, 12 Apr 2009 13:26:43 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=927</guid>
		<description><![CDATA[[From www.smashingapps.com, all rights reserved by original authors] The Dancing Nebula Infinity Experiment Wall Age Is Beauty Loose Leaf Motion Senses A E R O S T R E A M HD walls for windows Experiment Wall Explo Wall Rainbow Reflux Horsehead Nebula Ever Wondered? Confused Trajects Dusk ONyx Horizon Zebra stripes Blue Interlaced Explode [...]]]></description>
			<content:encoded><![CDATA[<p>[From <a title="smashingapps.com" href="http://www.smashingapps.com/2009/04/12/35-colorful-and-inspiring-examples-of-high-definition-wallpapers.html">www.smashingapps.com</a>, all rights reserved by original authors]<a href="http://www.andol.info/wp-content/uploads/2009/04/hd-walls-for-windows.jpg"></a><a href="http://www.andol.info/wp-content/uploads/2009/04/hd-walls-for-windows.jpg"><img class="alignnone size-full wp-image-941" title="hd-walls-for-windows" src="http://www.andol.info/wp-content/uploads/2009/04/hd-walls-for-windows.jpg" alt="hd-walls-for-windows" width="485" height="365" /></a></p>
<p><a href="http://steja007.deviantart.com/art/HD-wallpapers-part-2-104834273" target="_blank"><span id="more-927"></span></a></p>
<p><strong><a href="http://casperium.deviantart.com/art/The-Dancing-Nebula-WS-116196286" target="_blank">The Dancing Nebula</a></strong></p>
<p><a href="http://casperium.deviantart.com/art/The-Dancing-Nebula-WS-116196286" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/the-dancing-nebula.jpg" alt="The Dancing Nebula" width="485" height="303" /></a></p>
<p><strong><a href="http://morague.deviantart.com/art/Infinity-Widescreen-104393164" target="_blank">Infinity</a></strong></p>
<p><a href="http://morague.deviantart.com/art/Infinity-Widescreen-104393164" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/infinity.jpg" alt="Infinity" width="485" height="303" /></a></p>
<p><strong><a href="http://myhdwallpaper.com/v/2560x1600Wallpapers/Experiment+Wall_3.jpg.html" target="_blank">Experiment Wall</a></strong></p>
<p><a href="http://myhdwallpaper.com/v/2560x1600Wallpapers/Experiment+Wall_3.jpg.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/experiment-wall-3.jpg" alt="Experiment Wall" width="485" height="303" /></a></p>
<p><strong><a href="http://interfacelift.com/wallpaper_beta/details/1866/age_is_beauty.html" target="_blank">Age Is Beauty</a></strong></p>
<p><a href="http://interfacelift.com/wallpaper_beta/details/1866/age_is_beauty.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/age-is-beauty.jpg" alt="Age Is Beauty" width="485" height="364" /></a></p>
<p><strong><a href="http://interfacelift.com/wallpaper_beta/details/1822/loose_leaf.html" target="_blank">Loose Leaf</a></strong></p>
<p><a href="http://interfacelift.com/wallpaper_beta/details/1822/loose_leaf.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/loose-leaf.jpg" alt="Loose Leaf" width="485" height="303" /></a></p>
<p><strong><a href="http://interfacelift.com/wallpaper_beta/details/1838/motion_senses.html" target="_blank">Motion Senses</a></strong></p>
<p><a href="http://interfacelift.com/wallpaper_beta/details/1838/motion_senses.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/motion-senses.jpg" alt="Motion Senses" width="484" height="303" /></a></p>
<p><strong><a href="http://ve1n.deviantart.com/art/A-E-R-O-S-T-R-E-A-M-70590157" target="_blank">A E R O S T R E A M </a></strong></p>
<p><a href="http://ve1n.deviantart.com/art/A-E-R-O-S-T-R-E-A-M-70590157" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/aerostream.jpg" alt="A E R O S T R E A M" width="485" height="303" /></a></p>
<p><strong><a href="http://steja007.deviantart.com/art/HD-wallpapers-part-2-104834273" target="_blank">HD walls for windows</a></strong></p>
<p><a href="http://steja007.deviantart.com/art/HD-wallpapers-part-2-104834273" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/hd-walls-for-windows.jpg" alt="HD walls for windows" width="485" height="365" /></a></p>
<p><strong><a href="http://myhdwallpaper.com/v/2560x1600Wallpapers/Experiment+Wall_1.jpg.html" target="_blank">Experiment Wall</a></strong></p>
<p><a href="http://myhdwallpaper.com/v/2560x1600Wallpapers/Experiment+Wall_1.jpg.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/experiment-wall-1.jpg" alt="Experiment Wall" width="485" height="303" /></a></p>
<p><strong><a href="http://infinite705.deviantart.com/art/Explo-Wall-116125991" target="_blank">Explo Wall</a></strong></p>
<p><a href="http://infinite705.deviantart.com/art/Explo-Wall-116125991" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/explo-wall.jpg" alt="Explo Wall" width="485" height="303" /></a></p>
<p><strong><a href="http://djeric.deviantart.com/art/Rainbow-117325918" target="_blank">Rainbow</a></strong></p>
<p><a href="http://djeric.deviantart.com/art/Rainbow-117325918" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/rainbow.jpg" alt="Rainbow" width="485" height="303" /></a></p>
<p><strong><a href="http://infinite705.deviantart.com/art/Reflux-6-117090470" target="_blank">Reflux</a></strong></p>
<p><a href="http://infinite705.deviantart.com/art/Reflux-6-117090470" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/reflux.jpg" alt="Reflux" width="485" height="303" /></a></p>
<p><strong><a href="http://killer7ben.deviantart.com/art/Horsehead-Nebula-116858694" target="_blank">Horsehead Nebula</a></strong></p>
<p><a href="http://killer7ben.deviantart.com/art/Horsehead-Nebula-116858694" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/horsehead-nebula.jpg" alt="Horsehead Nebula" width="485" height="306" /></a></p>
<p><strong><a href="http://infinite705.deviantart.com/art/Ever-Wondered-116354419" target="_blank">Ever Wondered?</a></strong></p>
<p><a href="http://infinite705.deviantart.com/art/Ever-Wondered-116354419" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/ever-wondered.jpg" alt="Ever Wondered?" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/confused-trajects-wallpapers_w8347.html" target="_blank">Confused Trajects</a></strong></p>
<p><a href="http://wallpaperstock.net/confused-trajects-wallpapers_w8347.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/confused-trajects.jpg" alt="Confused Trajects" width="485" height="303" /></a></p>
<p><strong><a href="http://gopedhead.deviantart.com/art/Dusk-117356060" target="_blank">Dusk </a></strong></p>
<p><a href="http://gopedhead.deviantart.com/art/Dusk-117356060" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/dusk.jpg" alt="Dusk" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/onyx-wallpapers_w12911.html" target="_blank">ONyx</a></strong></p>
<p><a href="http://wallpaperstock.net/onyx-wallpapers_w12911.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/onyx.jpg" alt="ONyx" width="485" height="303" /></a></p>
<p><strong><a href="http://hameed.deviantart.com/art/Horizon-Widescreen-Wallpaper-19060656" target="_blank">Horizon</a></strong></p>
<p><a href="http://hameed.deviantart.com/art/Horizon-Widescreen-Wallpaper-19060656" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/horizon.jpg" alt="Horizon" width="485" height="194" /></a></p>
<p><strong><a href="http://wallpaperstock.net/zebra-stripes-wallpapers_w13062.html" target="_blank">Zebra stripes</a></strong></p>
<p><a href="http://wallpaperstock.net/zebra-stripes-wallpapers_w13062.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/zebra-stripes.jpg" alt="Zebra stripes" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/blue-interlaced-wallpapers_w8403.html" target="_blank">Blue Interlaced</a></strong></p>
<p><a href="http://wallpaperstock.net/blue-interlaced-wallpapers_w8403.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/blue-interlaced.jpg" alt="Blue Interlaced" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/explode-texture-wallpapers_w12356.html" target="_blank">Explode texture</a></strong></p>
<p><a href="http://wallpaperstock.net/explode-texture-wallpapers_w12356.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/explode-texture.jpg" alt="Explode texture" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/apple-color-shades-wallpapers_w9822.html" target="_blank">Apple color shades</a></strong></p>
<p><a href="http://wallpaperstock.net/apple-color-shades-wallpapers_w9822.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/apple-color-shades.jpg" alt="Apple color shades" width="485" height="303" /></a></p>
<p><strong><a href="http://casperium.deviantart.com/art/Epic-107950191" target="_blank">Epic </a></strong></p>
<p><a href="http://casperium.deviantart.com/art/Epic-107950191" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/epic.jpg" alt="Epic" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/leopard-aurora-wallpapers_w8084.html" target="_blank">Leopard Aurora</a></strong></p>
<p><a href="http://wallpaperstock.net/leopard-aurora-wallpapers_w8084.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/leopard-aurora.jpg" alt="Leopard Aurora" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/hologram-reflector-wallpapers_w8361.html" target="_blank">Hologram Reflector</a></strong></p>
<p><a href="http://wallpaperstock.net/hologram-reflector-wallpapers_w8361.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/hologram-reflector.jpg" alt="Hologram Reflector" width="485" height="303" /></a></p>
<p><strong><a href="http://cerisereve.deviantart.com/art/Used-Crayons-72200919" target="_blank">Used Crayons</a></strong></p>
<p><a href="http://cerisereve.deviantart.com/art/Used-Crayons-72200919" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/used-crayons.jpg" alt="Used Crayons" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/ultimate-vista-wallpapers_w5806.html" target="_blank">Ultimate Vista </a></strong></p>
<p><a href="http://wallpaperstock.net/ultimate-vista-wallpapers_w5806.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/ultimate-vista.jpg" alt="Ultimate Vista" width="485" height="303" /></a></p>
<p><strong><a href="http://hemingway81.deviantart.com/art/Last-Stripes-87623496" target="_blank">Last Stripes</a></strong></p>
<p><a href="http://hemingway81.deviantart.com/art/Last-Stripes-87623496" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/last-stripes.jpg" alt="Last Stripes" width="485" height="301" /></a></p>
<p><strong><a href="http://wallpaperstock.net/magma-texture-wallpapers_w12383.html" target="_blank">Magma texture</a></strong></p>
<p><a href="http://wallpaperstock.net/magma-texture-wallpapers_w12383.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/magma-texture.jpg" alt="Magma texture" width="485" height="303" /></a></p>
<p><strong><a href="http://zueuk.deviantart.com/art/Life-Magic-39240151" target="_blank">Life Magic</a></strong></p>
<p><a href="http://zueuk.deviantart.com/art/Life-Magic-39240151" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/life-magic.jpg" alt="Life Magic" width="485" height="303" /></a></p>
<p><strong><a href="http://mgilchuk.deviantart.com/art/Vortex-Apple-UPDATE-76514043" target="_blank">Vortex Apple</a></strong></p>
<p><a href="http://mgilchuk.deviantart.com/art/Vortex-Apple-UPDATE-76514043" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/vortex-apple.jpg" alt="Vortex Apple" width="485" height="173" /></a></p>
<p><strong><a href="http://wallpaperstock.net/bunch-of-light-vectors-wallpapers_w10183.html" target="_blank">Bunch of light vectors</a></strong></p>
<p><a href="http://wallpaperstock.net/bunch-of-light-vectors-wallpapers_w10183.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/bunch-of-light-vectors.jpg" alt="Bunch of light vectors" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/blue-apple-logo-wallpapers_w9293.html" target="_blank">Blue Apple logo</a></strong></p>
<p><a href="http://wallpaperstock.net/blue-apple-logo-wallpapers_w9293.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/blue-apple-logo.jpg" alt="Blue Apple logo" width="485" height="303" /></a></p>
<p><strong><a href="http://wallpaperstock.net/abstract-waves-wallpapers_w8763.html" target="_blank">Abstract waves</a></strong></p>
<p><a href="http://wallpaperstock.net/abstract-waves-wallpapers_w8763.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/abstract-waves.jpg" alt="Abstract waves" width="485" height="303" /></a></p>
<p><strong><a href="http://michaelfaber.deviantart.com/art/not-thinking-straight-35033655" target="_blank">Not thinking straight</a></strong></p>
<p><a href="http://michaelfaber.deviantart.com/art/not-thinking-straight-35033655" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/not-thinking-straight.jpg" alt="not thinking straight" width="485" height="303" /></a></p>
<p><strong><a href="http://celestian-boy.deviantart.com/art/Spirit-Lanterns-90931095" target="_blank">Spirit Lanterns</a></strong></p>
<p><a href="http://celestian-boy.deviantart.com/art/Spirit-Lanterns-90931095" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2009/04/spirit-lanterns.jpg" alt="Spirit Lanterns" width="485" height="303" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/927.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;Related Posts&#8217; hacking in wordpress</title>
		<link>http://www.andol.info/web/919.htm</link>
		<comments>http://www.andol.info/web/919.htm#comments</comments>
		<pubDate>Thu, 09 Apr 2009 16:14:10 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=919</guid>
		<description><![CDATA[When i noticed my blog andol.info lacking some popular functions like &#8216;related posts&#8217;, i decided to do it myself. I googled the &#8216;related posts&#8217; but most of present results are about installing plugins, no code level tips are provided. I dont like using plugins in wordpress bacause huge number of plugins probably slow down the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/04/wp.jpg"><img class="alignnone size-medium wp-image-920" title="wp" src="http://www.andol.info/wp-content/uploads/2009/04/wp-485x181.jpg" alt="wp" width="485" height="181" /></a></p>
<p>When i noticed my blog andol.info lacking some popular functions like &#8216;related posts&#8217;, i decided to do it myself. I googled the &#8216;related posts&#8217; but most of present results are about installing plugins, no code level tips are provided. I dont like using plugins in wordpress bacause huge number of plugins probably slow down the browsing speed. </p>
<p>So i just hacked it myself: adding the 2nd post query-&gt; matching the query conditions-&gt;get result &amp; display &amp; CSS. Some codes are shared below.</p>
<p><span id="more-919"></span></p>
<blockquote class="code"><p>&lt;div id=&#8217;rltpost&#8217;&gt;</p>
<p>&lt;?php</p>
<p>  if(get_the_category()) {</p>
<p>    echo&#8221;&lt;p&gt;&lt;strong&gt;&amp;nbsp;Posts may be of interest to you:&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&#8221;;</p>
<p>    foreach((get_the_category()) as $category) {</p>
<p>      $query2 = new WP_Query(&#8220;cat=&#8221;.$category-&gt;cat_ID.&#8221;&amp;showposts=3&amp;orderby=rand&#8221;);</p>
<p>      while($query2-&gt;have_posts()):</p>
<p>      $query2-&gt;the_post();</p>
<p>?&gt;</p>
<p>      &lt;li&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; title=&#8221;permalink to: &lt;?php the_title() ?&gt;&#8221;&gt;&lt;?php the_title() ?&gt;&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;?php</p>
<p>      endwhile;</p>
<p>    }</p>
<p>    echo&#8221;&lt;/ul&gt;&#8221;;</p>
<p>  }</p>
<p>?&gt;</p>
<p>&lt;/div&gt;</p></blockquote>
<p>Instruction: just copy all the codes above to where you wanna show your &#8216;related posts&#8217; section, and add the CSS style in current theme&#8217;s style.css file, done, enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/919.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Google does better than Yahoo!</title>
		<link>http://www.andol.info/web/904.htm</link>
		<comments>http://www.andol.info/web/904.htm#comments</comments>
		<pubDate>Thu, 09 Apr 2009 09:08:06 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=904</guid>
		<description><![CDATA[1) Google is simple Under the same technology &#38; engineer conditions, Google makes simple products which are easy and fast to use; Yahoo, will make fantastic products too, but, probably, with some complicated functions which users dont need so much but which only confuse users. For example, GMAIL vs YMAIL; GTALK vs YAHOO! MESSAGER; and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/04/yahoo.jpg"><img class="alignnone size-thumbnail wp-image-913" title="yahoo" src="http://www.andol.info/wp-content/uploads/2009/04/yahoo-485x120.jpg" alt="yahoo" width="485" height="120" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2009/04/google.jpg"><img class="alignnone size-thumbnail wp-image-912" title="google" src="http://www.andol.info/wp-content/uploads/2009/04/google-485x120.jpg" alt="google" width="485" height="120" /></a></p>
<p><strong class="color2">1) Google is simple</strong></p>
<p>Under the same technology &amp; engineer conditions, Google makes simple products which are easy and fast to use; Yahoo, will make fantastic products too, but, probably, with some complicated functions which users dont need so much but which only confuse users. For example, GMAIL vs YMAIL; GTALK vs YAHOO! MESSAGER; and GOOGLE SEARCH vs YAHOO! SEARCH. That is the truth, if, one tool is able to archive one tast, the simpler, the better.</p>
<p><span id="more-904"></span></p>
<p><strong class="color2">2) Yahoo! is aged</strong></p>
<p>Just like human being, young people always have more strange ideas than aged ones, so is Yahoo!. Yahoo! was created on the first wave of internet which was populare with news, messages and information. While going to today, the third wave of internet has nearly pasted, Yahoo! still hasnt made imaginable products catering web2.0 users.</p>
<p><strong class="color2">3) Google is creative</strong></p>
<p>On the other side, Google is young and full of creation, especially its talent and energical engineers. They create all kinds of products, whether it is good or not, then, put the products into lab to test the response of usabilities. One by one, there increases the number of Google&#8217;s popular products and attracts users. </p>
<p>Sometimes we dont know what users want, so we have to design all kinds of products according to the clues from web. Once we put the products on market, then, users will choose which ones are good and which ones aren&#8217;t &#8212; that is called rapid developing and fast evolution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/904.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ebay&#8217;s usability issues</title>
		<link>http://www.andol.info/web/885.htm</link>
		<comments>http://www.andol.info/web/885.htm#comments</comments>
		<pubDate>Wed, 08 Apr 2009 16:02:11 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=885</guid>
		<description><![CDATA[&#8220; Do you think that ebay is easy to search items, clear to compare stuffs and effecient to pay the money with feeling of safety?  Really enjoy that? &#8221;   &#8212; Andol Now let me tell you my recent ebay experiences: 1) payment &#38; registration &#38; login It is nearly the common sense that before starting [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-887" href="http://www.andol.info/web/885.htm/attachment/ebayusability"><img class="alignnone size-thumbnail wp-image-887" title="ebayusability" src="http://www.andol.info/wp-content/uploads/2009/04/ebayusability-485x120.jpg" alt="ebayusability" width="485" height="120" /></a></p>
<p><a rel="attachment wp-att-886" href="http://www.andol.info/web/885.htm/attachment/register"><img class="alignnone size-thumbnail wp-image-886" title="register" src="http://www.andol.info/wp-content/uploads/2009/04/register-485x120.jpg" alt="register" width="485" height="120" /></a></p>
<address style="color:#4499BA;">&#8220; Do you think that ebay is easy to search items, clear to compare stuffs and effecient to pay the money with feeling of safety?  Really enjoy that? &#8221;   &#8212; Andol</address>
<p>Now let me tell you my recent ebay experiences:</p>
<p><strong class='color2'>1) payment &amp; registration &amp; login</strong></p>
<p>It is nearly the common sense that before starting deserving the services of a website, signing up is mandatory, absolutely no other choices. Suppose, all users have the choice to purchase some stuffs in eBay, probably the results would be that nobody like the petty registration stuffs. The important thing, if the account is not created for communication, then, it is useless for users. That only benifets the company. </p>
<p><span id="more-885"></span></p>
<p><strong class='color2'>2) items search</strong></p>
<p>No dout, that search is so important that if we lost it we would spend couple of times to find what exactly we want among numrous goods. However, search results&#8217; items&#8217; order is a problem. By price, the seller can publish low goods price plus expensive postage; by date, new stuffs maybe not the best ones; by place, how about a place like NewYork, millions of goods online; or, by combination of these search, do you think that will work out? My answer is NOT POSSIBLE.</p>
<p>Take Bill Gates for example, it is said that, one time, he visited microsoft.com to download a software, ironically, he was not able to find the software in the site although he knew it must be some where. The same thing, The CEO of eBay, maybe, couldnt find the right stuffs neither. </p>
<p><strong class='color2'>3) design for goods&#8217; display</strong></p>
<p>With this problem, just open the eBay site, and you will find its massiveness. People come here only for watching the colorful page? Dont be stupid. When i go to apple.com, eigher i would buy some devices or get some related information of hardware or software. </p>
<p>So, i think that is the first thing, display the propriate things what the users want, and display should be designed to cater the customers&#8217; request.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/885.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page rank updated</title>
		<link>http://www.andol.info/web/901.htm</link>
		<comments>http://www.andol.info/web/901.htm#comments</comments>
		<pubDate>Sun, 05 Apr 2009 11:39:11 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=901</guid>
		<description><![CDATA[New google pagerank updated today, and andol.info&#8217;s rank increased to 2.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/04/pagerankrecord.jpg"><img class="alignnone size-thumbnail wp-image-902" title="pagerankrecord" src="http://www.andol.info/wp-content/uploads/2009/04/pagerankrecord-414x120.jpg" alt="pagerankrecord" width="414" height="120" /></a></p>
<p><span class="color2"><strong>New google pagerank updated today, and andol.info&#8217;s rank increased to 2.</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/901.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New iAndol.com</title>
		<link>http://www.andol.info/web/704.htm</link>
		<comments>http://www.andol.info/web/704.htm#comments</comments>
		<pubDate>Sun, 18 Jan 2009 13:17:52 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[iAndol.com]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[wordpress template]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=704</guid>
		<description><![CDATA[The layout of iAndol.com has been slightly changed. The new design looks more clean and more easier to find the topic. Original template of iAndol.com is called Tree2 which was designed by   Headsetoptions, after adopted, the theme has beem redesigned several times, and we will continue to improve it if necessary.]]></description>
			<content:encoded><![CDATA[<p><a title="iandollayout" href="http://www.andol.info/wp-content/uploads/2009/01/iandollayout.jpg"><img class="alignnone size-full wp-image-705" title="iandollayout" src="http://www.andol.info/wp-content/uploads/2009/01/iandollayout.jpg" alt="iandollayout" width="400" height="390" /></a></p>
<p>The layout of iAndol.com has been slightly changed. The new design looks more clean and more easier to find the topic.</p>
<p>Original template of iAndol.com is called <a href="http://www.mandarinmusing.com/">Tree2</a> which was designed by   <a href="http://www.headsetoptions.org/">Headsetoptions</a>, after adopted, the theme has beem redesigned several times, and we will continue to improve it if necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/704.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PageRank Updated</title>
		<link>http://www.andol.info/web/682.htm</link>
		<comments>http://www.andol.info/web/682.htm#comments</comments>
		<pubDate>Fri, 09 Jan 2009 22:42:24 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Pagerank]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=682</guid>
		<description><![CDATA[Big news, my blog&#8217;s PR is updated to 1 out of 10. It was even no rank at all, but now it is 1, great progress. The PageRank can be checked in PageRank Checker.info]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2009/01/picture-1.png"><img class="alignnone size-full wp-image-683" title="picture-1" src="http://www.andol.info/wp-content/uploads/2009/01/picture-1.png" alt="picture-1" width="400" height="142" /></a></p>
<p>Big news, my blog&#8217;s PR is updated to 1 out of 10. It was even no rank at all, but now it is 1, great progress.</p>
<p>The PageRank can be checked in <a href="http://www.prchecker.info/">PageRank Checker.info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/682.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop motion video, amazing</title>
		<link>http://www.andol.info/web/580.htm</link>
		<comments>http://www.andol.info/web/580.htm#comments</comments>
		<pubDate>Fri, 02 Jan 2009 19:51:45 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=580</guid>
		<description><![CDATA[A SHORT LOVE STORY IN STOP MOTION from Carlos Lascano on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="225" data="http://vimeo.com/moogaloop.swf?clip_id=877053&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=877053&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/877053">A SHORT LOVE STORY IN STOP MOTION</a> from <a href="http://vimeo.com/carloslascano">Carlos Lascano</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/580.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>54XING.COM, Come on</title>
		<link>http://www.andol.info/life/530.htm</link>
		<comments>http://www.andol.info/life/530.htm#comments</comments>
		<pubDate>Fri, 19 Dec 2008 17:27:22 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=530</guid>
		<description><![CDATA[It is a story, big and long story which comes from nearly half year ago. And what presented in the front of you, is the start of story. This is indeen many people&#8217;s dream, it is absolutly many boys and girls&#8217; crystal. 54XING.COM is a company which locates in hangzhou China and the web site [...]]]></description>
			<content:encoded><![CDATA[<p><a title="54xing.com" href="http://www.54xing.com"><img class="alignnone size-full wp-image-531" title="54xingcom-04" src="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-04.jpg" alt="54xingcom-04" width="399" height="82" /></a></p>
<p><a title="54xing.com" href="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-03.jpg"><img class="alignnone size-full wp-image-532" title="54xingcom-03" src="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-03.jpg" alt="54xingcom-03" width="400" height="230" /></a></p>
<p>It is a story, big and long story which comes from nearly half year ago. And what presented in the front of you, is the start of story. This is indeen many people&#8217;s dream, it is absolutly many boys and girls&#8217; crystal.</p>
<p><span id="more-530"></span></p>
<p>54XING.COM is a company which locates in hangzhou China and the web site we see comes from here. The company is consisted with powerful designer, deeply experienced product manager, and many hard working guys. When i was a member of them, i often felt the driven of the mission-do what we want. No matter later i left, the story, the dream is still burning. I admired the product manager Mr. Mu who comes from a huge internet business company in china, because of his interest the same as me, because of the insignt and personality. Some guys in the photo above is familiar to me although some isn&#8217;t. Whatever, dream is the most important thing when young.</p>
<p>Well,there&#8217;s still lot things to do as the sites designed.</p>
<p>Fianlly, I hope this will be a fantastic and brilliant long story, good luck, 54xing.com.</p>
<p><a title="54xing.com" href="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-02.jpg"><img class="alignnone size-full wp-image-533" title="54xingcom-02" src="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-02.jpg" alt="54xingcom-02" width="400" height="230" /></a></p>
<p><a title="54xing.com" href="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-01.jpg"><img class="alignnone size-full wp-image-534" title="54xingcom-01" src="http://www.andol.info/wp-content/uploads/2008/12/54xingcom-01.jpg" alt="54xingcom-01" width="254" height="324" /></a></p>
<p>Related Read: <a href="http://www.andol.info/web/25.htm">What is good logo design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/life/530.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome in out of beta shocker!</title>
		<link>http://www.andol.info/web/497.htm</link>
		<comments>http://www.andol.info/web/497.htm#comments</comments>
		<pubDate>Fri, 12 Dec 2008 12:19:12 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=497</guid>
		<description><![CDATA[[From techradar.com, all rights reserved by orignal author] Google has announced that its web browser, Chrome, has been taken out of beta. The browser came out of nowhere in September, when Google did its usual trick of unleashing products with no build up. So far, Chrome has been used by more than 10 million people [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.andol.info/wp-content/uploads/2008/12/google-chrome21-728-75.jpg' title='gogle chrome no beta'><img class="alignnone size-full wp-image-498" title="google-chrome21-728-75" src="http://www.andol.info/wp-content/uploads/2008/12/google-chrome21-728-75.jpg" alt="google-chrome21-728-75" width="400" height="365" /></a></p>
<p>[From <a href="http://www.techradar.com/news/internet/google-chrome-taken-out-of-beta-493991" target="_blank">techradar.com</a>, all rights reserved by orignal author]</p>
<div class="articleBody">
<blockquote><p>Google has announced that its web browser, Chrome, has been taken out of beta. The browser came out of nowhere in September, when Google did its usual trick of unleashing products with no build up.</p>
<p>So far, Chrome has been used by more than 10 million people worldwide.</p>
<p>As with most software and application manufacturers, the beta stage of Chrome was essential for Google, as it allowed users to give feedback on glitches and problems they found when using the service.</p>
<p>The beta process for Chrome, however, has been a quick one. Other Google features, like Gmail, remain in beta, despite being around since 2004.</p>
<p><strong>Better browser</strong></p>
<p>In a statement, Google&#8217;s Vice President of Product Management, Sundar Pichai, wrote: &#8220;Google Chrome is a better browser today thanks to the many users who sent their feedback, and the many more who enabled automatic crash reports, helping us rapidly diagnose and fix issues.&#8221;</p>
<p>Some of the improved features include: better bookmarking, easier browser switching and security has been upped.</p>
<p>There are still some features missing like form autofill and RSS support but Google promises these will be included in &#8220;the near future&#8221;.</p>
<div class="articleAuthor">By Marc Chacksfield</div>
</blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/497.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google chrome-like or dislike?</title>
		<link>http://www.andol.info/web/447.htm</link>
		<comments>http://www.andol.info/web/447.htm#comments</comments>
		<pubDate>Fri, 05 Dec 2008 09:39:06 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=447</guid>
		<description><![CDATA[Do you like the new Google Chrome? Just admitted, almost all people like it after using it, it is smart, responsing quick and simply and easy-so many merits that hardly can not we dislike it. However, there is a problem while i was surfing the web today, i cited the reason here: [From 'http://searchlightdigital.com', all [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2008/12/dlpage_lg.jpg"><img class="alignnone size-full wp-image-448" title="dlpage_lg" src="http://www.andol.info/wp-content/uploads/2008/12/dlpage_lg.jpg" alt="" width="400" height="325" /></a></p>
<p>Do you like the new <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a>? Just admitted, almost all people like it after using it, it is smart, responsing quick and simply and easy-so many merits that hardly can not we dislike it.</p>
<p>However, there is a problem while i was surfing the web today, i cited the reason here:</p>
<p><span id="more-447"></span></p>
<blockquote><p>[From '<a href="http://searchlightdigital.com/why-i-will-not-be-using-chrome">http://searchlightdigital.com</a>', all rights reserved by original author]</p>
<p>For those of you who enjoy living under rocks, <a title="Chrome" href="http://www.google.com/chrome">Chrome</a> is the new browser created by Google. It is open source and currently only available for Windows, although I have found a <a title="Chrome mac source" href="http://dev.chromium.org/developers/how-tos/build-instructions-os-x">site</a> that says how to build it from source for the Mac. However, despite the hype, I have decided that I will not be using it. In fact, I’m not even going to download it.</p>
<p>Is it because they don’t have a Mac version? Well, whilst it’s annoying that we Mac users have to wait, I’m not so aloof as to hold that against them, and let’s be honest, there’s a whole lot more Windows computers out there than OSX. Also, I could just <a title="Chrome mac source" href="http://dev.chromium.org/developers/how-tos/build-instructions-os-x">compile it myself</a>.</p>
<p>No, the reason I won’t be getting it is their <a title="Chrome terms of service" href="http://www.google.com/chrome/eula.html?hl=en&amp;brand=CHMB&amp;utm_campaign=en&amp;utm_source=en-ha-na-us-sk&amp;utm_medium=ha&amp;utm_term=chrome">terms of service</a>, the fine print of the program. So, what do they say that I am not happy about?</p>
<blockquote><p><em>Section 11.1</em><br />
You retain copyright and any other rights you already hold in Content which you submit, post or display on or through, the Services. By submitting, posting or displaying the content you give Google a perpetual, irrevocable, worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display and distribute any Content which you submit, post or display on or through, the Services. This license is for the sole purpose of enabling Google to display, distribute and promote the Services and may be revoked for certain Services as defined in the Additional Terms of those Services.</p></blockquote>
<p>Converted to English this means that anything I send via Chrome is usable by Google, they don’t own it but they can republish it and use it. Imagine that you are using it to post to a forum or blog, Google gets a copy that they can use. Lets suppose you use it to send a message about a really good idea you’ve just had, Google got a copy too.</p>
<p>It may be a really good browser that’s several times as fast as Safari but in all honesty, I don’t think that I can use it knowing that everything I post Google gets a copy of. I run an <a title="World of Arl Online Game" href="http://woarl.com/">online game</a> that is free at the moment but what if I want to moneytise it? Google probably doesn’t want to compete with me on it, but imagine if they did? The irony is that I used to use a Gmail account and still use it for some things and I never thought to read the ToC on that.</p>
<p>If you want more stuff about Chrome, <a title="PCworld chrome" href="http://www.pcworld.com/article/150585/googles_chrome_7_reasons_for_it_and_7_reasons_against_it.html">PCWorld</a> have a good article that lists 7 pros and cons of Chrome.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/447.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google friend connect-New service!!!</title>
		<link>http://www.andol.info/web/429.htm</link>
		<comments>http://www.andol.info/web/429.htm#comments</comments>
		<pubDate>Tue, 02 Dec 2008 20:07:03 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Interaction]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=429</guid>
		<description><![CDATA[Google launched new service and i got the invitation today. After trying the features in it, i found this product was amazing, easy to use, appropriate functions and no code experiences needed. And the look of this product is easy to costomize, the background color, the border line and the font style. Below are two [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2008/12/picture-1.png"><img class="alignnone size-medium wp-image-430" title="picture-1" src="http://www.andol.info/wp-content/uploads/2008/12/picture-1.png" alt="" width="175" height="71" /></a></p>
<p>Google launched new service and i got the invitation today. After trying the features in it, i found this product was amazing, easy to use, appropriate functions and no code experiences needed. And the look of this product is easy to costomize, the background color, the border line and the font style.</p>
<p>Below are two of the application gadgets, try applications go <a href="http://www.google.com/friendconnect/">google-friend-connect</a>.<br />
<a href="http://www.andol.info/wp-content/uploads/2008/12/picture-2.png"><img class="alignnone size-full wp-image-434" title="picture-2" src="http://www.andol.info/wp-content/uploads/2008/12/picture-2.png" alt="" width="258" height="311" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2008/12/picture-3.png"><img class="alignnone size-full wp-image-435" title="picture-3" src="http://www.andol.info/wp-content/uploads/2008/12/picture-3.png" alt="" width="257" height="209" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/429.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News! Gmail adds themes under settings</title>
		<link>http://www.andol.info/web/397.htm</link>
		<comments>http://www.andol.info/web/397.htm#comments</comments>
		<pubDate>Thu, 20 Nov 2008 17:12:48 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=397</guid>
		<description><![CDATA[Gmail has added many new and nice theme for Gmail users.When i open one of my Gmails,i found that i can change Gmail themes,there are many nice theme in it,very very nice.But not all all Gmail users can change your Gmail themes now,because there are only a few lucky Gmail users get the themes change [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andol.info/wp-content/uploads/2008/11/3044613669_a337518164_o.jpg"><img class="alignnone size-full wp-image-398" title="3044613669_a337518164_o" src="http://www.andol.info/wp-content/uploads/2008/11/3044613669_a337518164_o.jpg" alt="" width="400" height="201" /></a></p>
<p>Gmail has added many new and nice theme for Gmail users.When i open one of my Gmails,i found that i can change Gmail themes,there are many nice theme in it,very very nice.But not all all Gmail users can change your Gmail themes now,because there are only a few lucky Gmail users get the themes change feature.I am very glad that i am the one of them.Thanks,Google!</p>
<p>I don’t often use Gmail,because it doesn’t allow users change themes,i don’t like Gmail’s default theme very much!So maybe this is the main reason for me that i don’t often use Gmail.But i think i will start to use my Gmail again,for i like those beautiful themes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/397.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is &#8216;delete account&#8217; button?</title>
		<link>http://www.andol.info/web/217.htm</link>
		<comments>http://www.andol.info/web/217.htm#comments</comments>
		<pubDate>Tue, 14 Oct 2008 14:08:40 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Interaction]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.andol.info/?p=217</guid>
		<description><![CDATA[Look at three images below: -What can you find? regist? log in or signin? or help? -No. There&#8217;s no &#8216;delete account&#8217; button!!! Well, while i just registed in nectar.com, i&#8217;d like to withdraw my decision, but, i can not find the &#8216;delete account&#8217; button anywhere although i have search turning over the site, i can [...]]]></description>
			<content:encoded><![CDATA[<p>Look at three images below:</p>
<p><a href="http://www.andol.info/wp-content/uploads/2008/10/nectar.jpg"><img class="alignnone size-full wp-image-218" title="nectar" src="http://www.andol.info/wp-content/uploads/2008/10/nectar.jpg" alt="" width="390" height="100" /></a><a href="http://www.andol.info/wp-content/uploads/2008/10/ebayuk.jpg"><br />
</a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2008/10/ebayuk.jpg"><img class="alignnone size-full wp-image-219" title="ebayuk" src="http://www.andol.info/wp-content/uploads/2008/10/ebayuk.jpg" alt="" width="390" height="101" /></a></p>
<p><a href="http://www.andol.info/wp-content/uploads/2008/10/taobao.jpg"><img class="alignnone size-full wp-image-220" title="taobao" src="http://www.andol.info/wp-content/uploads/2008/10/taobao.jpg" alt="" width="390" height="99" /></a></p>
<p>-What can you find? regist? log in or signin? or help?</p>
<p>-No. There&#8217;s no &#8216;delete account&#8217; button!!!</p>
<p>Well, while i just registed in nectar.com, i&#8217;d like to withdraw my decision, but, i can not find the &#8216;delete account&#8217; button anywhere although i have search turning over the site, i can not see anything about delete the account.</p>
<p>Maybe there are not so many people who will use this functionality, though, i think this functionality is important to user.</p>
<p>Reasons of deleteing account:<br />
1. re-regist a new account but the username is occupied by another one;<br />
2. never use the account again, so i will delete it, nothing left;<br />
3. show respect to the user, do what he like, coming or leaving;<br />
4. internet privacy protection;<br />
5. information abuse risk;<br />
&#8230;</p>
<p>Actually, the &#8216;delete button&#8217; added is not so serious as the participant that the user resource would lost. Whatever, if the site&#8217;s service is really not good, no user would stay. Surposing the users can not delete themselv&#8217;s account, they probably just leave the username dead sleeping, that is nothing different with former. If the worst thing that users click this &#8216;delete button&#8217; happened, just take it easy and design a extra work flow to ask why he/she would like to leave.</p>
<p>The reason why users are leaving is most important. If the reason of staying is got, nobody will leave.</p>
<p><a href="http://www.andol.info/wp-content/uploads/2008/10/delete-button.jpg"><img class="alignnone size-full wp-image-222" title="delete-button" src="http://www.andol.info/wp-content/uploads/2008/10/delete-button.jpg" alt="" width="271" height="39" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/217.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Video To Your Website And Build A Video Community At Magnify.Net!</title>
		<link>http://www.andol.info/web/161.htm</link>
		<comments>http://www.andol.info/web/161.htm#comments</comments>
		<pubDate>Thu, 25 Sep 2008 06:07:53 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://andol.info/?p=161</guid>
		<description><![CDATA[[From smashingapps, all rights reserved by original author] Whether you upload, embed, or invite user contributions, Magnify.net’s platform can power your site’s video experience. The magnifyfree product allows you to gather videos from across the web and build your own video channel for free! Complete control of your site name, url, page design and CSS, [...]]]></description>
			<content:encoded><![CDATA[<p>[From <a href="http://www.smashingapps.com/">smashingapps</a>, all rights reserved by original author]</p>
<p><a href="http://www.magnify.net/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/magnify.jpg" alt="magnify" /></a></p>
<p>Whether you upload, embed, or invite user contributions, Magnify.net’s platform can power your site’s video experience. The <span style="color: #800000;"><a href="http://www.magnify.net/options/free/" target="_blank">magnifyfree</a></span> product allows you to gather videos from across the web  			and build your own video channel for free!</p>
<p><a href="http://www.magnify.net/options/free/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/magnify-splash.jpg" alt="magnify splash" /></a></p>
<p>Complete control of your site name, url, page design and CSS, as well as 50% of the advertising impressions delivered to an ad network of your choice.</p>
<p><strong>Features</strong></p>
<ul>
<li>Free webpage builder</li>
<li>Webcam capture</li>
<li>Video discovery from the most popular video sharing site</li>
<li>Ten 50mb uploads per week</li>
<li>“Friending” based social network</li>
<li>50/50 ad inventory share</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/161.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Amazing Firefox Add-Ons That Will Save Your Time</title>
		<link>http://www.andol.info/life/144.htm</link>
		<comments>http://www.andol.info/life/144.htm#comments</comments>
		<pubDate>Tue, 16 Sep 2008 06:13:05 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://andol.info/?p=144</guid>
		<description><![CDATA[[From Smashing Apps, all rights reserved by original author] Firefox is a fastest growing popular web browser. There are lots of ease provided by the firefox and this is the main reason for its popularity. There are lots of free download able extensions and add-ons available on the internet for firefox and there demands are [...]]]></description>
			<content:encoded><![CDATA[<p>[From <a href="http://www.smashingapps.com">Smashing Apps</a>, all rights reserved by original author]<br />
Firefox is a fastest growing popular web browser. There are lots of ease provided by the firefox and this is the main reason for its popularity. There are lots of free download able extensions and add-ons available on the internet for firefox and there demands are increasing every day. In this post, I am listing down 9 Amazing Firefox Add-Ons That Will Save Your Time.</p>
<p>You are welcome to share if you know more amazing firefox add-ons that will save time which our readers/viewers may like.<strong><span style="color: #800000;"><a href="http://www.ideashower.com/ideas/launched/read-it-later/" target="_blank"><br />
Read It Later</a></span></strong></p>
<p><a href="http://www.ideashower.com/ideas/launched/read-it-later/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/read-it-later.jpg" alt="Read it Later" /></a></p>
<p>It lets you save articles and webpages so you can read them later, even when you’re offline. Now the internet is your bitch. <a href="https://addons.mozilla.org/en-US/firefox/addon/7661" target="_blank">Firefox add-on</a><strong><span style="color: #800000;"><a href="http://www.tigerlogic.com/ChunkIt/" target="_blank"><br />
Chunkit</a></span></strong></p>
<p><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/get-chunk-it.jpg" alt="Get Chunk It" width="390" height="275" /></p>
<p>This add-on is so badass, that if search engines made a superhero movie, this would be the Batman. Basically, you get to search any website with sonar vision and see through all the links at once. <span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/8472" target="_blank">Firefox add-on</a></span><strong><span style="color: #800000;"><a href="http://www.dwipal.com/removecookiesextension.htm" target="_blank"><br />
Remove Cookie(s) From Site</a></span></strong></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1595?application=firefox&amp;id=1595" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/remove-cookies.jpg" alt="Remove Cookie(s)" width="392" height="72" /></a><br />
So, you visited a website you’re not too proud of, but you don’t want to delete your cookies or you will lose your progress on Defend Your Castle. Well now you can have your cookie and eat it too. <span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/1595" target="_blank">Firefox add-on</a></span><br />
<span style="color: #800000;"><strong><a href="http://www.yourwebsitevalue.com/" target="_blank"><br />
YourWebsiteValue</a></strong></span></p>
<p><a href="http://www.yourwebsitevalue.com/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/your-website-value.jpg" alt="Your Website Value" width="390" height="95" /></a></p>
<p>This is your childhood cardboard fort of Firefox add-ons. Absolutely useless, but very… very cool. Basically this shows you the estimated worth of most websites. Who knows how accurate and useful it really is, but hey, did you really think your cool fort could actually keep the girls out? <span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/7548" target="_blank">Firefox add-on</a></span><strong><span style="color: #800000;"><a href="http://mathijs.jurresip.nl/tryagain-extension/" target="_blank"><br />
TryAgain</a></span></strong></p>
<p><a href="http://mathijs.jurresip.nl/tryagain-extension/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/try-again.jpg" alt="TryAgain" width="390" height="226" /></a></p>
<p>This is the Drunk Uncle at the bar that won’t stop hitting on the ladies of Firefox add-ons. TryAgain will keep trying to load a webpage when the server is not found, and it won’t stop till it gets what it wants. <span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/2462" target="_blank">Firefox add-on</a></span><strong><span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/2477" target="_blank"><br />
IMDb Preview</a></span></strong></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2477" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/imdb-preview.jpg" alt="IMDb Preview" width="391" height="110" /></a></p>
<p>IMDb suffers from Wikipedia syndrome. How many times have you started on Pee-wee’s Big Adventure and ended up on The Shining? Too many damn times. However, with this add-on you get to preview links on IMDb and see snip-bits of information without leaving the page. Wait, why doesn’t Wiki have this?<strong><span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/3542" target="_blank"><br />
Aging Tabs</a></span></strong></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3542" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/aging-tabs.jpg" alt="Aging Tabs" width="390" height="326" /></a></p>
<p>What’s your record? 20 tabs open at once? Well Aging tabs will help you realize your laziness by making unused tabs fade and change colors with age. Although, it would be cooler if they made the tabs blow up in a fiery explosion instead.<strong><span style="color: #800000;"><a href="http://tmp.garyr.net/" target="_blank"><br />
Tab Mix Plus</a></span></strong></p>
<p><a href="http://tmp.garyr.net/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/tab-mix-plus.jpg" alt="Tab Mix Plus" width="390" height="137" /></a></p>
<p>This is the ultimate tab collection, greatest hits volume, 0.3.6. It has such classics as duplicating tabs, controlling tab focus, tab clicking options, and many of your other favorite hits. And if you download in the next 15 minutes we will throw in “undo closed tabs and windows!” Firefox add-on<strong><span style="color: #800000;"><a href="http://cooliris.com/site/firefox/" target="_blank"><br />
CoolPreviews</a></span></strong></p>
<p><a href="http://cooliris.com/site/firefox/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/09/cool-previews.jpg" alt="CoolPreviews" width="391" height="118" /></a></p>
<p>Preview how a webpage page looks like before you actually click on the link. So now you can see how unorganized, useless, and ugly the website is before you commit your precious time to it. Dating really needs a tool like this. <span style="color: #800000;"><a href="https://addons.mozilla.org/en-US/firefox/addon/2207" target="_blank">Firefox add-on</a></span><span style="color: #800000;"><span style="color: #000000;"><br />
You can also take a look at </span><a href="http://www.walyou.com/blog/2008/08/02/5-must-have-firefox-add-ons-for-social-media-addicts/" target="_blank"><span style="color: #800000;">5 must have firefox add-ons for social media addicts</span></a> </span><span style="color: #000000;">I found interesting on the other website.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/life/144.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photography in work place</title>
		<link>http://www.andol.info/life/121.htm</link>
		<comments>http://www.andol.info/life/121.htm#comments</comments>
		<pubDate>Thu, 11 Sep 2008 10:42:08 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://andol.info/?p=121</guid>
		<description><![CDATA[This is me andol. The photography was took in the work place by my colleague just after supper, as the smile you see, i have good work situation, and of course, i do this job so well that i got lots praise. Ok, this photograpy is not the first one i took in work place, [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_122" class="wp-caption alignright" style="width: 400px"><a href="http://andol.info/wp-content/uploads/2008/09/picture-51.png"><img class="size-full wp-image-122" title="picture-51" src="http://andol.info/wp-content/uploads/2008/09/picture-51.png" alt="i am andol" width="390" height="240" /></a><p class="wp-caption-text"> </p></div>
<p>This is me andol. The photography was took in the work place by my colleague just after supper, as the smile you see, i have good work situation, and of course, i do this job so well that i got lots praise.</p>
<p>Ok, this photograpy is not the first one i took in work place, we have had a lot parties in the past two months and had so much funny. Admittedly, I really really enjoy the present job that i nearly change the oversea plan and stay here.</p>
<p>Althought i decided to go abroad to UK at last, this work team and so many great colleagues and even my master of internet product design and all of these make me somehow reluctant to leave here, i love working with them with passion and pate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/life/121.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful Rain Photography</title>
		<link>http://www.andol.info/web/113.htm</link>
		<comments>http://www.andol.info/web/113.htm#comments</comments>
		<pubDate>Thu, 11 Sep 2008 05:08:34 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://andol.info/?p=113</guid>
		<description><![CDATA[[More photography click here]]]></description>
			<content:encoded><![CDATA[<p><a href="http://andol.info/wp-content/uploads/2008/09/ladybug.jpg"><img class="size-full wp-image-112 alignnone" src="http://andol.info/wp-content/uploads/2008/09/ladybug.jpg" alt="" width="391" height="260" /></a></p>
<p><a href="http://andol.info/wp-content/uploads/2008/09/umbrella.jpg"><img class="alignnone size-full wp-image-114" title="umbrella" src="http://andol.info/wp-content/uploads/2008/09/umbrella.jpg" alt="" width="390" height="392" /></a></p>
<p><a href="http://andol.info/wp-content/uploads/2008/09/torr.jpg"><img class="alignnone size-full wp-image-115" title="torr" src="http://andol.info/wp-content/uploads/2008/09/torr.jpg" alt="" width="390" height="292" /></a></p>
<p><a href="http://andol.info/wp-content/uploads/2008/09/beautiful-night-in-rome.jpg"><img class="alignnone size-full wp-image-116" title="beautiful-night-in-rome" src="http://andol.info/wp-content/uploads/2008/09/beautiful-night-in-rome.jpg" alt="" width="389" height="268" /></a></p>
<p><a href="http://andol.info/wp-content/uploads/2008/09/leaves.jpg"><img class="alignnone size-full wp-image-117" title="leaves" src="http://andol.info/wp-content/uploads/2008/09/leaves.jpg" alt="" width="391" height="267" /></a></p>
<p>[More photography click <a href="http://www.smashingmagazine.com/2008/09/07/35-brilliant-examples-of-rain-photography/">here</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/113.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intern work aggregate</title>
		<link>http://www.andol.info/life/104.htm</link>
		<comments>http://www.andol.info/life/104.htm#comments</comments>
		<pubDate>Tue, 09 Sep 2008 08:16:26 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Andol]]></category>

		<guid isPermaLink="false">http://andol.info/?p=104</guid>
		<description><![CDATA[I am going to leave present intern work, now days are counted down day by day. So before my leave from work, i must aggregate all my these two months experiences and feeling. i&#8217;d like to tell some of my sentiment of work for the last two months&#8217; intern. There are three problems i found, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://andol.info/wp-content/uploads/2008/09/picture-5.png"><img class="alignnone size-thumbnail wp-image-110" title="picture-5" src="http://andol.info/wp-content/uploads/2008/09/picture-5.png" alt="" width="390" height="125" /></a>I am going to leave present intern work, now days are counted down day by day. So before my leave from work, i must aggregate all my these two months experiences and feeling.</p>
<blockquote><p>i&#8217;d like to tell some of my sentiment of work for the last two months&#8217; intern. There are three problems i found, the first is CORE STRATOGY. Dim stratogy is dangerous. The second is team cooperation flow. Working flow is fatal to the team working, one this part, the other one another part and suck like this. The third is speed. I think the internet application development should be develped rapidly and evoluted quickly as the users&#8217; feedback comes back.</p>
<p>Although there are many problems and some difficulties else existed, i beleive this project&#8217;s future is everbright, of course the condition is to integerate all the available resources and clear the employees&#8217; responsibilities and work flow.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/life/104.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS file size increasing curve</title>
		<link>http://www.andol.info/web/46.htm</link>
		<comments>http://www.andol.info/web/46.htm#comments</comments>
		<pubDate>Fri, 22 Aug 2008 12:19:54 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://andol.info/?p=46</guid>
		<description><![CDATA[These days i am doing some CSS&#38;HTML work, editing the css file to make the html content displaying correctly. At the first start, the css file size increased repidly from the first line to more than 200 lines, that was only 4 html page&#8217;s css style lines. I noticed this situation and pay lot attention [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://andol.info/wp-content/uploads/2008/08/picture-11.png"><img class="alignnone size-thumbnail wp-image-52" title="picture-11" src="http://andol.info/wp-content/uploads/2008/08/picture-11-390x120.png" alt="" width="390" height="120" /></a></p>
<p>These days i am doing some CSS&amp;HTML work, editing the css file to make the html content displaying correctly. At the first start, the css file size increased repidly from the first line to more than 200 lines, that was only 4 html page&#8217;s css style lines.</p>
<p>I noticed this situation and pay lot attention to control the css size as less as possible.</p>
<p>However, the thing happend after several html pages later inspired me: the css file size&#8217;s increasing is going down and down, the next dozons html pages consumed totally less than hundred css lines.</p>
<p>So i think that, the css file contained enough code to display the style for the later html page which contributed the size increasing slowly. And if the size increasing progress was recorded as points or short lines, this would be a curve like shape increasing the getting slow growing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/46.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a good logo design?</title>
		<link>http://www.andol.info/web/25.htm</link>
		<comments>http://www.andol.info/web/25.htm#comments</comments>
		<pubDate>Sat, 02 Aug 2008 14:46:55 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[54xing]]></category>
		<category><![CDATA[Logo]]></category>

		<guid isPermaLink="false">http://andol.info/?p=25</guid>
		<description><![CDATA[Last week i designed one logo design for my work company, unlucky, it was not admitted but caused debating about the good logo design and bad logo design standard. So, back to the topic, what logo design is the good design，really simple and easy to recognized logo or little deep meaning with graphical pattern design? [...]]]></description>
			<content:encoded><![CDATA[<p>Last week i designed one logo design for my work company, unlucky, it was not admitted but caused debating about the good logo design and bad logo design standard.<br />
So, back to the topic, what logo design is the good design，really simple and easy to recognized logo or  little deep meaning with graphical pattern design?<br />
i show you my designed logo first:<br />
<a href="http://andol.info/wp-content/uploads/2008/08/picture-13.png">the first design:<br />
<img class="alignnone size-medium wp-image-26" title="logo design" src="http://andol.info/wp-content/uploads/2008/08/picture-13.png" alt="" width="185" height="98" /><br />
</a><a href="http://andol.info/wp-content/uploads/2008/08/picture-14.png">the second design:<br />
<img class="alignnone size-medium wp-image-27" title="logo02" src="http://andol.info/wp-content/uploads/2008/08/picture-14.png" alt="" width="204" height="69" /></a><br />
<a href="http://andol.info/wp-content/uploads/2008/08/picture-15.png">and the modified design:</a><br />
<a href="http://andol.info/wp-content/uploads/2008/08/picture-15.png"><img class="alignnone size-medium wp-image-28" title="modified logo" src="http://andol.info/wp-content/uploads/2008/08/picture-15-300x99.png" alt="" width="300" height="99" /></a><br />
In my opinion, the logo design is absolutely relative with the company&#8217;s spirit and culture which will be the main force to push the corporation&#8217;s development. At the term of logo pattern whether that is easy to be recognized or remembered or know exactly what it says, i do not support so much about the face of the logo.</p>
<p>I designed those two logo plus another modified pattern. It came from the shape of letter &#8220;X&#8221; and what&#8217;s more, looking around, it also looked like a five-angle star which mean the flying start. However, the program manager denied this design thought for this complicated pattern for him and not easy to be recognized by users.</p>
<p>Oh God!!!!!!!!!!!!!!!!</p>
<p>It is really amazing design pattern, right? Simplicity and meanness.</p>
<p>Look the other designer&#8217;s work for this:<br />
<a href="http://andol.info/wp-content/uploads/2008/08/picture-16.png">another work from page designer:<br />
<img class="alignnone size-medium wp-image-29" title="picture-16" src="http://andol.info/wp-content/uploads/2008/08/picture-16.png" alt="" width="185" height="65" /></a></p>
<p>Well, if you were the manager, which one do you prefer, the former or the last?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/25.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting to know Javascript</title>
		<link>http://www.andol.info/web/24.htm</link>
		<comments>http://www.andol.info/web/24.htm#comments</comments>
		<pubDate>Thu, 24 Jul 2008 01:17:20 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[JS]]></category>

		<guid isPermaLink="false">http://andol.info/?p=24</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/6YMn61Dv2nQ&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/6YMn61Dv2nQ&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="400" height="324"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/24.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax is not everything</title>
		<link>http://www.andol.info/web/23.htm</link>
		<comments>http://www.andol.info/web/23.htm#comments</comments>
		<pubDate>Wed, 23 Jul 2008 06:03:04 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://andol.info/?p=23</guid>
		<description><![CDATA[More than 1 year have been passed since GMAIL changed users&#8217; web application, however there are still many sites which are not used this new technology Ajax. It doesn&#8217;t mean Ajax is necessary everywhere, that just represents Ajax should be applied where it should be. 1. Form interaction Form is one kind of slow applications in internet, [...]]]></description>
			<content:encoded><![CDATA[<p>More than 1 year have been passed since GMAIL changed users&#8217; web application, however there are still many sites which are not used this new technology Ajax. It doesn&#8217;t mean Ajax is necessary everywhere, that just represents Ajax should be applied where it should be.</p>
<p>1. Form interaction</p>
<p>Form is one kind of slow applications in internet, try to register a mail account or modify the private profile, all this need form to be filled and then submitted.  But how about Ajax&#8217;s appearances in this? Quickly update after the instant input and response nearly the same time.</p>
<p>2.Deep tree navigator</p>
<p>3. Instant users communication</p>
<p>4.Vote, choice and grade comment</p>
<p>5.Complicated data filter</p>
<p>6.Auto complete</p>
<p>All above are necessary to apply Ajax into the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/23.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Form Design Patterns: Sign-Up Forms</title>
		<link>http://www.andol.info/web/22.htm</link>
		<comments>http://www.andol.info/web/22.htm#comments</comments>
		<pubDate>Sat, 19 Jul 2008 03:50:18 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Interaction]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://andol.info/?p=22</guid>
		<description><![CDATA[[From smashmagzines.com] If you want to maximize the revenue of your service you need to maximize completion rates of your web forms. Unless you have some revolutionary ideas to impress your visitors at first glance, it is not enough to simply enable users to sign up on your site. To make it possible for the service to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.smashingmagazine.com">[From smashmagzines.com]</a></p>
<p><a href="http://88.198.60.17/images/web-form-design-patterns/link-title.gif"><img src="http://88.198.60.17/images/web-form-design-patterns/link-title.gif" alt="Web Form Design Patterns" width="283" height="250" /></a>If you want to maximize the revenue of your service you need to <strong>maximize completion rates</strong> of your web forms. Unless you have some revolutionary ideas to impress your visitors at first glance, it is not enough to simply enable users to sign up on your site. To make it possible for the service to reach a maximal exposure we, designers, need to provide users with a good user experience. We need to invite them, describe to them how the service works, explain to them why they should fill in the form and suggests the benefits they’ll get in return. And, of course, we should also make it extremely easy for them to participate.</p>
<p><span id="more-22"></span></p>
<p>However, designing effective web forms isn’t easy. And it has one simple reason: nobody likes to fill in forms — neither offline nor online. Therefore, as designers, we need to figure out sound design decisions to make the form completion easy, intuitive and painless.</p>
<p>But how exactly can we figure out these decisions? Where should the link to the form be placed in the layout? How should we design it? How should we highlight the labels and how should we align them? How do web form design patterns look like in modern web-sites? These were exactly the questions we’ve asked ourselves. And to get the answers we’ve conducted a <strong>survey</strong>.</p>
<p>Below we present <strong>findings of our survey of current web form design patterns</strong> — the results of an analysis of 100 popular web-sites where web-forms (should) matter. We have decided to start with sign-up forms first. We present the first part of our findings below; the second part of the survey results will be published next week.</p>
<h3>Sign-Up Form Design Survey</h3>
<p>The main objective of the survey was to provide designers and developers with some intuition of how effective web forms are designed in practice; we also wanted to present some guidelines of how a user-friendly web form can be achieved.</p>
<p>We have selected <a href="http://88.198.60.17/images/web-form-design-patterns/urls.html">100 large sites where web-forms (should) matter</a>. To select these sites we have considered Technorati, Alexa as well as popularity in search engines and various rankings. We used this popularity as an indicator for sites where web forms really matter as they directly affect business goals and therefore should have been given a high priority during the design process. In particular, registration forms are crucial for social applications which explains why many of the reviewed forms are from social networking sites.</p>
<p>We have focused on sign-up forms as we wanted to consider further crucial forms (e.g. checkout forms) separately. Aftewards we’ve gone through each and every one sign-up form of the selected sites and analyzed the design approaches implemented in these forms.</p>
<p>We have filled in each of these forms using a special e-mail account and a special user name. To make the survey as comprehensive as possible we have identified <strong>29 different design problems and questions</strong>which may arise when designing web forms.</p>
<p>We have grouped them in categories and attempted to find similarities in design decisions and design ideas. Trying to approach the problem from the usability point of view we have also kept notice of both positive and negative examples to showcase them in this article among our findings.</p>
<p>Please notice that this post is <strong>not about checkout forms</strong> — that’s a topic for another discussion, we may consider them separately in one of the upcoming posts. We would like to thank <a href="http://www.wufoo.com/">Wufoo</a> for providing us with a framework to conduct our survey.</p>
<h3>1. Placement of the forms</h3>
<h4>1.1. How is the link to the sign-up form titled?</h4>
<p>Users know that they are supposed to sign-up, register, join, become a member or create an account which is why they are looking for exactly these phrases when they want to participate. Obviously, users expect that a link with one of these links leads to a sign-up form. Unfortunately, that’s not always the case.</p>
<p class="showcase"><a href="http://88.198.60.17/images/web-form-design-patterns/link-title.gif"><img src="http://88.198.60.17/images/web-form-design-patterns/link-title.gif" alt="Web Form Design Patterns" width="504" height="397" /></a></p>
<p>The most popular title was <strong>“Sign up”</strong> (40%), followed by “Join” (18%), “Register” (18%) and “Create account” (17%). We have observed less large, loud and shiny “start here”-buttons as we’ve seen them over the last years. Apparently, designers try to communicate information rathen than design and emphasize the functionality of the service.</p>
<h4>1.2. Where is the link to the sign-up form placed?</h4>
<p>When users are visiting a site for the first time, they try to figure out what single layout blocks stand for. The eye movements are jumping “all over the place” and users try to understand which areas are more important and where the content he or she is looking for is probably placed. To meet users’ expectations designers need to help users to intuitively anticipate what is required to start using the service.</p>
<p>If the user can’t find the link which leads to a sign-up form, he also won’t be able to sign up for your service. Therefore it is crucial to make the link as visible and as obvious as possible. Where should a designer place the “sign-up”-link to make it more approachable?</p>
<p>According to our survey, the sign-up link</p>
<ul>
<li>is placed in the <strong>header</strong> on 59% of the sites (76% of them have a “sign-up”-link placed at the right upper corner),</li>
<li>has a prominent position on the homepage on 21% of the sites (link or the form itself is placed on the homepage)</li>
<li>is hidden behind the “Login”-link in the header in 9% of the cases (e.g. <a href="http://www.craigslist.org/about/sites.html">Craigslist</a>).</li>
</ul>
<p>Not that surprising is the fact that the sign-up link was rarely placed in the sidebar (7% - <a href="http://www.propeller.com/">Propeller</a>, <a href="http://www.xing.com/">Xing</a>). However, 4% of the sites first offered users to directly use the service and required a registration only when it was required to store the settings.</p>
<h3>2. Design of the forms</h3>
<h4>2.1. Is the sign-up form layout simplified?</h4>
<p>Since the user has clicked on the sign-up-link he is likely to have decided to sign up for the service you are offering. More importantly, he has <em>not</em> clicked on the link to explore further navigation options or attractive blinking advertisements.</p>
<p>Consequently, designers tend to <strong>remove all unnecessary details</strong> and distractions which don’t help the user to complete the form. Often only a logo and the form itself are presented, without any navigation options or additional information. Idea: the user must be able to focus on the task he has to accomplish. Any distractions stand in user’s way and therefore have to be removed.</p>
<p><a href="http://88.198.60.17/images/web-form-design-patterns/page-layout-minimized.jpg"><img src="http://88.198.60.17/images/web-form-design-patterns/page-layout-minimized.jpg" alt="Web Form Design Patterns" width="499" height="359" /></a></p>
<p>Since users want what lies on the other side of a form the process of completing forms should be as obvious and as simple as possible. Hence designers often use “minimized” layouts for sign-up forms. According to our survey, 61% of web forms are simplified compared to the general page layout (e.g. <a href="http://www.movabletype.org/cgi-bin/mtcs/mt-cp.fcgi?__mode=register&amp;blog_id=2&amp;return_to=http%3A%2F%2Fwww.movabletype.org%2F">MovableType</a>,<a href="https://www.livejournal.com/create.bml">Livejournal</a>, <a href="http://www.amazon.com/">Amazon</a>, <a href="http://passport.yandex.ru/passport?mode=register">Yandex.ru</a>).</p>
<p class="showcase"><a href="https://edit.yahoo.com/registration?.intl=us&amp;new=1&amp;.done=http%3A//mail.yahoo.com&amp;.src=ym"><img src="http://88.198.60.17/images/web-form-design-patterns/yahoo.jpg" alt="Web Form Design Patterns" width="494" height="443" /></a></p>
<p>Consider the sign-up form on <a href="https://edit.yahoo.com/registration?.intl=us&amp;new=1&amp;.done=http%3A//mail.yahoo.com&amp;.src=ym">Yahoo</a>. The visitors are provided only with the form which is required to set up an account. There is nothing else; consequently, there are no distractions as well. Notice that the tone and the language are conversational and appealing. That’s simple, easy and user-friendly.</p>
<p class="showcase"><a href="http://www.flixster.com/userAuth.do?displayRegister="><img src="http://88.198.60.17/images/web-form-design-patterns/flixster.jpg" alt="Web Form Design Patterns" width="450" height="419" /></a></p>
<p class="showcase"><a href="http://www.flixster.com/userAuth.do?displayLogin="><img src="http://88.198.60.17/images/web-form-design-patterns/flixster2.jpg" alt="Web Form Design Patterns" width="450" height="167" /></a></p>
<p><a href="http://www.flixster.com/">Flixster</a> is probably our favorite example of an overcrowded form which doesn’t really respect its visitors. The registration page offers every possible navigation option at once. And the login page has outstanding advertisements right next to the login form. That’s not user-friendly. The second busiest web form we’ve seen would be <a href="http://photobucket.com/register/?ref=headerregister">Photobucket</a>.</p>
<h4>2.2. Is any additional information provided?</h4>
<p>Many designers try to encourage visitors to actually fill in the form by presenting additional information such as help, required information or even copyright disclaimer. It differs from sites to sites; however, in most cases benefits of registration are presented next to the form.</p>
<ul>
<li>41% of the forms provide <strong>benefits of the registration</strong><br />
(<a href="http://signups.myspace.com/index.cfm?fuseaction=signup">MySpace</a>, <a href="https://secure.del.icio.us/register">Del.icio.us</a>, <a href="https://www.last.fm/join/">Last.fm</a>, <a href="https://www.linkedin.com/secure/register?trk=hb_join">LinkedIn</a>, <a href="http://digg.com/register/">Digg</a>, <a href="http://www.mister-wong.com/register/">Mister Wong</a>, <a href="http://my.break.com/Member/Authentication/Registration.aspx">Break.com</a>)</li>
<li>28% don’t provide any additional information at all and offer a pure sign-up form<br />
(<a href="http://pownce.com/signup/">Pownce</a>, <a href="http://www.deviantart.com/join/">DeviantArt</a>, <a href="http://www.dailymotion.com/register">Dailymotion</a>)</li>
<li>11% inform the visitors how much time investment is required<br />
(<a href="http://www.threadless.com/join">Threadless</a>, <a href="https://www.newsvine.com/_tools/new/user">Newsvine</a>, <a href="http://wordpress.com/signup/">WordPress</a>)</li>
</ul>
<p>Only few sites mention up front what information is needed during the registration (6%), which steps to follow (8%) or provide some warnings, hints etc. (6%, e.g. <a href="https://signup.37signals.com/basecamp/Basic/signup/new?source=37s%2520home">37signals</a>, <a href="http://www.bloglines.com/register">Bloglines</a>).</p>
<h4>2.3. One-page-form vs. multi-page form</h4>
<p>93% of the forms of the survey turned out to be <strong>one-page-forms</strong>. Apparently, designers try help users to get the signing procedure as quickly and painlessly as possible. Few sites using multi-page forms often try to combine signing-up with exploring users’ preferences.</p>
<p>For instance, <a href="http://www.meebo.com/">Meebo</a> combines a sign-up form with a complete registration and offers users a sign-up wizard in a pop-up window. The form consists of 6 pages where users are lead from setting their account to providing additional details about their preferences.</p>
<p class="showcase"><a href="http://88.198.60.17/images/web-form-design-patterns/meebo.gif"><img src="http://88.198.60.17/images/web-form-design-patterns/meebo.gif" alt="Web Form Design Patterns" width="450" height="290" /></a></p>
<h4>2.4. How are titles of the input fields highlighted?</h4>
<p>62% of the sign-up forms used <strong>bold</strong> to highlight the title of the input field. It’s remarkable that not a single site used italics to achieve the same effect. To make the labels more visible 20% of sign-up forms used color and 18% used plain text.</p>
<p class="showcase"><a href="http://88.198.60.17/images/web-form-design-patterns/labels.jpg"><img src="http://88.198.60.17/images/web-form-design-patterns/labels-small.jpg" alt="Web Form Design Patterns" width="317" height="496" /></a><br />
<em><a href="http://88.198.60.17/images/web-form-design-patterns/labels.jpg">Large version</a></em></p>
<h4>2.5. Label alignment</h4>
<p>To be honest, we have expected a stronger trend toward one of the possible alignments. However, in our opinion no strong trend in the label alignment can be identified.</p>
<ul>
<li><strong>right-aligned</strong> labels are used on 41% of the reviewed sites<br />
(<a href="http://www.youtube.com/signup?next=/">YouTube</a>, <a href="http://de.facebook.com/">Facebook</a>, <a href="https://www.metacafe.com/">Metacafe</a>)</li>
<li>30% of sign-up forms use top-aligned labels<br />
(<a href="http://www.behance.net/Sign_Up">Behance.net</a>, <a href="https://secure.wufoo.com/signup/1/">Wufoo</a>, <a href="http://www.tickspot.com/">Tickspot</a>, <a href="https://www.mixx.com/register%3EMixx%3C/a%3E,%20%3Ca%20href=">DZone</a>)</li>
<li>29% use left-aligned labels<br />
(<a href="http://digg.com/register/">Digg</a>, <a href="http://www.ning.com/">Ning</a>, <a href="http://www.wykop.pl/rejestracja">Wykop.pl</a>, <a href="http://www.43things.com/xs?create=1">43things</a>, <a href="http://www.studivz.net/Registration/Step1">StudiVZ</a>).</li>
</ul>
<p><a href="http://88.198.60.17/images/web-form-design-patterns/alignment.gif"><img src="http://88.198.60.17/images/web-form-design-patterns/alignment.gif" alt="Web Form Design Patterns" width="514" height="541" /></a></p>
<p>According to <a href="http://www.uxmatters.com/MT/archives/000107.php">Matteo Penzo’s label placement research</a> (1996) and <a href="http://www.lukew.com/resources/articles/web_forms.html">Luke Wroblewski’s findings</a>(<a href="http://www.lukew.com/resources/articles/WebForms_LukeW.pdf">pdf</a>), top-aligned labels can dramatically reduce completion times since they require less eye fixations. If you want to achieve the same aim but have a vertical screen real estate constraints, right-aligned labels work better. And in case your form requires people to scan labels to learn what’s required (unfamiliar or advanced data), left-aligned labels work best.</p>
<h4>2.6. How many mandatory fields?</h4>
<p>When conducting a survey we’ve observed a strong trend toward forms with very <strong>few mandatory fields</strong>. Few years ago designers asked visitors to type in their personal information such as first name, last name, address, country and personal interests. Now login, password and password confirmation suffice.</p>
<p><a href="http://88.198.60.17/images/web-form-design-patterns/mandatory.jpg"><img src="http://88.198.60.17/images/web-form-design-patterns/mandatory.jpg" alt="Web Form Design Patterns" width="554" height="214" /></a></p>
<p>We found out that 54% of the forms required the user to fill at most 5 input fields (in 6% of the cases registration wasn’t required at all to start using the service). 34% of the forms use 6-8 input fields, while 12% risk user’s patience with over 9 mandatory input fields.</p>
<h4>2.7. How many optional fields?</h4>
<p>Similarly to above findings one can observe that most sites <strong>avoid optional fields</strong> and ask users to provide the optional information after the registration process is already done. 62% of the forms had no optional fields at all, and 98% of the forms had less than 5 optional fields.</p>
<p><a href="http://88.198.60.17/images/web-form-design-patterns/optional.jpg"><img src="http://88.198.60.17/images/web-form-design-patterns/optional.jpg" alt="Web Form Design Patterns" width="563" height="213" /></a></p>
<h4>2.8. Vertically or horizontally arranged fields?</h4>
<p>In this aspect sign-up forms show a strong trend toward <strong>vertical arrangement of fields</strong> with a clear vertical path to completion. 86% of web-sites have input fields arranged vertically. Apart from that, 15% emphasize a beautiful and engaging visual design which is supposed to attract visitors and make them feel more comfortable when filling in the form.</p>
<p class="showcase"><a href="http://box.net/"><img src="http://88.198.60.17/images/web-form-design-patterns/box.jpg" alt="Web Form Design Patterns" width="355" height="385" /></a></p>
<p><a href="http://box.net/">Box.net</a> offers a simple sign-up form with vertically arranged input fields. When the visitors type in the data their eyes are fixed across the vertical axis at the left to the input field.</p>
<p class="showcase"><a href="http://www.haveamint.com/account/create"><img src="http://88.198.60.17/images/web-form-design-patterns/mint.jpg" alt="Web Form Design Patterns" width="411" height="307" /></a></p>
<p><a href="http://www.haveamint.com/account/create">Mint</a> has a sign-up form with horizontally arranged input fields. When the visitors type in the data they eye needs to jump from one field to the other.</p>
<h4>Further findings</h4>
<ul>
<li>18% have a sign-in form or a link to the sign-in form placed next to it (e.g. YouTube, Reddit, Digg, Lulu, Metacafe);</li>
<li>78% do not use asterisks to highlight required input fields; in most cases neither asterisks nor any other form of highlighting is used.</li>
<li>9% use a progress indicator to show to the users where they currently are and which steps are required to get the registration done.</li>
<li>85% of the sites don’t use legend and fieldset preferring a simple web-form with as few input fields as possible.</li>
<li>fields are usually grouped and divided by whitespace (69%), borders are also used (22%), different background colors are used in 9% of the cases.</li>
</ul>
<h3>Bottom line</h3>
<p>Let’s conclude the first part of the survey results with a brief overview of the main findings of our survey of current web form design patterns. Please keep in mind that we have considered only sign-up forms.</p>
<ul>
<li>the registration link is titled “sign up” (40%) and placed in the right upper corner,</li>
<li>sign-up forms have a simplified layout to avoid distractions for users (61%),</li>
<li>sign-up forms are one-page-forms (93%),</li>
<li>sign up forms attract visitors by explaining the benefits of registration (41%),</li>
<li>titles of the input fields are highlighted bold (62%)</li>
<li>no trend in the label alignment can be identified,</li>
<li>designers tend to use few mandatory fields,</li>
<li>designers tend to use few optional fields,</li>
<li>vertically arranged fields are preferred to horizontally arranged fields (86%).</li>
</ul>
<p>Please stay tuned, we’ll present the second part of our findings next week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/22.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft is dead</title>
		<link>http://www.andol.info/web/20.htm</link>
		<comments>http://www.andol.info/web/20.htm#comments</comments>
		<pubDate>Tue, 15 Jul 2008 13:37:01 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[HCI]]></category>
		<category><![CDATA[Quote]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Interaction]]></category>

		<guid isPermaLink="false">http://andol.info/?p=20</guid>
		<description><![CDATA[  June 25th, 2008 Bill Gates’ web experience: Byzantine, idiotic logic Posted by Michael Krigsman @ 7:03 am   Analyzing IT program management failures with the perfect vision of hindsight often leads the observer through a senseless and convoluted maze of past decisions. Studying the Byzantine and idiotic logic behind many IT failures, one wonders, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blogs.zdnet.com/projectfailures/images/brueghel-tower-of-babel.jpg" alt="" width="400" height="320" /></p>
<blockquote><p> </p>
<h4>June 25th, 2008</h4>
<h1><a title="Permanent Link to Bill Gates’ web experience: Byzantine, idiotic logic" rel="bookmark" href="http://blogs.zdnet.com/projectfailures/?p=855">Bill Gates’ web experience: Byzantine, idiotic logic</a></h1>
<p class="meta">Posted by Michael Krigsman @ 7:03 am</p>
<p class="meta"> </p>
<p>Analyzing IT program management failures with the perfect vision of hindsight often leads the observer through a senseless and convoluted maze of past decisions. Studying the Byzantine and idiotic logic behind many IT failures, one wonders, “How did we get here from there?”</p>
<p>Bill Gates experienced this <a href="http://en.wikipedia.org/wiki/The_Tower_of_Babel_(Brueghel)" target="_blank">Tower of Babel</a> when he tried to download two Microsoft consumer products (MovieMaker and Digital Plus Pack).</p>
<p>The <a href="http://blog.seattlepi.nwsource.com/microsoft/archives/141821.asp" target="_blank">seattlepi.com</a> released an internal Microsoft email where Bill described his experience. The email begins with Bill’s summary, emphasizing how program management, the coordinating entity, has failed:</p>
<blockquote><p>I am quite disappointed at how Windows Usability has been going backwards and the program management groups don’t drive usability issues.</p></blockquote>
<p>Bill then details the complexities that prevented him from downloading the software:</p>
<blockquote><p>I decided to download (Moviemaker) and buy the Digital Plus pack … so I went to Microsoft.com. They have a download place so I went there.</p>
<p>&#8230;</p>
<p><span id="more-20"></span></p></blockquote>
<p> </p>
<p> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/20.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FCKeditor configure &amp; PHP</title>
		<link>http://www.andol.info/web/16.htm</link>
		<comments>http://www.andol.info/web/16.htm#comments</comments>
		<pubDate>Sat, 12 Jul 2008 04:31:02 +0000</pubDate>
		<dc:creator>Andol</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Andol]]></category>

		<guid isPermaLink="false">http://andol.info/?p=16</guid>
		<description><![CDATA[The first thing is that FCKeditor is great software as an important part of interaction in web page. The second is that this editor is hard to download underneath my web environment and narrow band width. The third is that configure of this editor is easy, just search the topic in google, there would be [...]]]></description>
			<content:encoded><![CDATA[<p>The first thing is that FCKeditor is great software as an important part of interaction in web page.</p>
<p>The second is that this editor is hard to download underneath my web environment and narrow band width.</p>
<p>The third is that configure of this editor is easy, just search the topic in <a href="http://www.google.com">google</a>, there would be mountains results about how to set up the editor&#8217;s run environment. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.andol.info/web/16.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

