<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>Vikiworks™ Studio</title>
	
	<link>http://vikiworks.com</link>
	<description>Open, focus, creativity.</description>
	<pubDate>Thu, 11 Jun 2009 15:58:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/vikiworks" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">vikiworks</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Wordpress Image Roll</title>
		<link>http://vikiworks.com/2009/04/25/wordpress-image-roll/</link>
		<comments>http://vikiworks.com/2009/04/25/wordpress-image-roll/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 20:46:06 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[asaph]]></category>

		<category><![CDATA[bookmarks]]></category>

		<category><![CDATA[clone]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[ffffound]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[imgroll]]></category>

		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=640</guid>
		<description><![CDATA[on your blog sidebar or anywhere on your website.

I&#8217;ve been receiving a lot of emails as regards to how I made those &#8216;chicklet&#8217; images on my sidebar, is it comes natively from Wordpress or something? Well, I figured it worth a writeup [a five minutes walk-through] to sharing the good things, isn&#8217;t it?
Before we&#8217;re going [...]]]></description>
			<content:encoded><![CDATA[<h4>on your blog sidebar or anywhere on your website.</h4>
<p><img title="imageroll" src="http://vikiworks.com/wp-content/uploads/2009/04/imageroll.jpg" alt="imageroll" width="500" height="131" /></p>
<p>I&#8217;ve been receiving a lot of emails as regards to how I made those &#8216;chicklet&#8217; images on my sidebar, is it comes natively from Wordpress or something? Well, I figured it worth a writeup [a five minutes walk-through] to sharing the good things, isn&#8217;t it?</p>
<p>Before we&#8217;re going to accomplished something like I did, you&#8217;ll need to <a href="http://www.phoboslab.org/projects/asaph">download Asaph</a> and make it work, it&#8217;s no hassle to set it up, give it a try.</p>
<p>Please <em>note</em> that Asaph isn&#8217;t a plugin for wordpress in anyway, it actually is a micro-blogging system but mainly focus on images like I <a href="http://vikiworks.com/2009/03/10/asaph-setting-up-your-own-ffffound/">introduced it</a> before, they&#8217;re running <strong>separately</strong> on your server and never share a single database&#8230; which means that we need to figure another way out to cooking them. Originally, I was inspired by <a href="http://www.wprecipes.com/how-to-display-any-rss-feed-on-your-wordpress-blog">this recipe</a>,  it allows you to <span style="text-decoration: line-through;">add</span> display any rss feed on your blog by using Wordpress native function - <code>wp_rss</code>. Yeah!</p>
<h4>Call It!</h4>
<p>I assumed that your asaph is up and running, and you already bookmarked a few images, now you need to edit your wordpress theme template. The tricky part is that we&#8217;re going to use <code>wp_rss</code> to call asaph&#8217;s feed, here is the complete codes, you can add where you want the rss content to be displayed (your sidebar or any other page template):</p>
<p><code>&lt;?php // Get RSS Feed<br />
include_once(ABSPATH . WPINC . '/rss.php');<br />
$rss = fetch_rss('<strong>your-asaph-feed</strong>&#8216;);<br />
<strong>$maxitems = 24</strong>;<br />
$items = array_slice($rss-&gt;items, 0, $maxitems);<br />
?&gt;<br />
&lt;ul&gt;<br />
&lt;?php if (empty($items)) echo &#8216;&lt;li&gt;No items&lt;/li&gt;&#8217;;<br />
else<br />
foreach ( $items as $item ) : ?&gt;<br />
&lt;li&gt;&lt;a href=&#8217;&lt;?php echo $item['link']; ?&gt;&#8217;&gt;<br />
&lt;?php echo $item['description']; ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php endforeach; ?&gt;&lt;/ul&gt;</code></p>
<p>where <code>fetch_rss</code> replace it with your actual feed url and <strong>$maxitems </strong>means how many items that you wanted to show, you can change the value you like. That&#8217;s it. yeah, it&#8217;s that simple.</p>
<h4>More tweaks</h4>
<p>since it works now it&#8217;s time for styling it, within CSS tweaks you can give it a nice looking, show your magic. It will be great if use some lightboxed effect, personally I use <a href="http://fancy.klade.lv/">fancybox</a> to visualized it in a better way. good luck!</p>
<p>I&#8217;d like to give a big thank you to my friend <a href="http://rorol.com">benhero</a> who is an amazing ruby code ninja, he helped me on the codes and took me out of the fire <img src='http://vikiworks.com/wp-includes/images/smilies/icon_smile.png' alt=':-)' class='wp-smiley' /> </p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2006/10/20/theme-eyeball/" title="Theme eyeball (October 20, 2006)">Theme eyeball</a></li>
	<li><a href="http://vikiworks.com/2007/05/26/the-conception-of-new-theme/" title="The conception of new theme (May 26, 2007)">The conception of new theme</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
	<li><a href="http://vikiworks.com/2008/04/11/span-your-first-letter/" title="SPAN Your First Letter (April 11, 2008)">SPAN Your First Letter</a></li>
	<li><a href="http://vikiworks.com/2008/03/22/slide-showcase/" title="Slide showcase (March 22, 2008)">Slide showcase</a></li>
	<li><a href="http://vikiworks.com/2007/09/25/pngs-smilies-for-wordpress/" title="PNGs Smilies for Wordpress (September 25, 2007)">PNGs Smilies for Wordpress</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/cz9iHbadmTNZ3Rwq-9jWyyQ835Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/cz9iHbadmTNZ3Rwq-9jWyyQ835Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cz9iHbadmTNZ3Rwq-9jWyyQ835Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/cz9iHbadmTNZ3Rwq-9jWyyQ835Y/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/vikiworks?a=G2HsFPPyBws:sKfFEgvVnqY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=G2HsFPPyBws:sKfFEgvVnqY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=G2HsFPPyBws:sKfFEgvVnqY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=G2HsFPPyBws:sKfFEgvVnqY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=G2HsFPPyBws:sKfFEgvVnqY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/vikiworks?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=G2HsFPPyBws:sKfFEgvVnqY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=G2HsFPPyBws:sKfFEgvVnqY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=G2HsFPPyBws:sKfFEgvVnqY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=G2HsFPPyBws:sKfFEgvVnqY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/G2HsFPPyBws" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2009/04/25/wordpress-image-roll/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asaph, Setting up your own FFFFound</title>
		<link>http://vikiworks.com/2009/03/10/asaph-setting-up-your-own-ffffound/</link>
		<comments>http://vikiworks.com/2009/03/10/asaph-setting-up-your-own-ffffound/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 03:30:43 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[apps]]></category>

		<category><![CDATA[bookmarks]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[freebies]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=604</guid>
		<description><![CDATA[Lately I’ve been playing around with Asaph - a micro blog platform that allows you to post links &#38; images instantly from anywhere in one convenient place, if you&#8217;re a big fan of FFFFound, you&#8217;ll probably been looking for an alter (clone) platform to manipulate your own image bookmarks, then you&#8217;ll gonna love Asaph,  [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I’ve been <a href="http://vikiworks.com/fave/">playing around</a> with <a href="http://www.phoboslab.org/log/2008/03/asaph-microblog-beta">Asaph</a> - a micro blog platform that allows you to post links &amp; images instantly from anywhere in one convenient place, if you&#8217;re a big fan of <a href="http://ffffound.com">FFFFound</a>, you&#8217;ll probably been looking for an alter (clone) platform to manipulate your own image bookmarks, then you&#8217;ll gonna love Asaph,  it’s <em>totally</em> awesome!</p>
<blockquote><p>Asaph is <em>not</em> a full blown blog and it does not aim to be one – it just does this one task, but it’s pretty good at it.</p></blockquote>
<p><img class="alignnone size-full wp-image-605" title="asaph-bookmark" src="http://vikiworks.com/wp-content/uploads/2009/03/asaph-bookmark.jpg" alt="asaph-bookmark" width="500" height="220" /></p>
<p><img class="alignnone size-full wp-image-606" title="favescreen" src="http://vikiworks.com/wp-content/uploads/2009/03/favescreen.jpg" alt="favescreen" width="500" height="291" /></p>
<p>It comes with a <a href="http://www.bookmarklets.com/about/">bookmarklet</a>, click-to-post function that you can easily drag it up to your brower’s (a real browser, not IE) bookmarks bar, within a few mouse clicking you&#8217;ll have your own collection to share with your friends.</p>
<p>Get it up and running will basically require PHP5 enabled on your own server, before to give it a try you can watch a <a href="http://www.vimeo.com/1043287">five minutes screencast</a> to see how it actually works, for more information and download, please check <a href="http://www.phoboslab.org/log/2008/03/asaph-microblog-beta">Asaph project&#8217;s page</a>.</p>
<p>I’m already launched my <a href="http://vikiworks.com/fave/">personal bookmark</a>, you can check it out, perfect!</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2009/04/25/wordpress-image-roll/" title="Wordpress Image Roll (April 25, 2009)">Wordpress Image Roll</a></li>
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2007/05/26/the-conception-of-new-theme/" title="The conception of new theme (May 26, 2007)">The conception of new theme</a></li>
	<li><a href="http://vikiworks.com/2008/07/30/templateworld-web-design-templates/" title="Templateworld, web design templates (July 30, 2008)">Templateworld, web design templates</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/yYFTHpgvakx3HqrkoKg--3TJhg0/0/da"><img src="http://feedads.g.doubleclick.net/~a/yYFTHpgvakx3HqrkoKg--3TJhg0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yYFTHpgvakx3HqrkoKg--3TJhg0/1/da"><img src="http://feedads.g.doubleclick.net/~a/yYFTHpgvakx3HqrkoKg--3TJhg0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/vikiworks?a=qzFVlxBKAXI:8Uwv7Z0V-A8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=qzFVlxBKAXI:8Uwv7Z0V-A8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=qzFVlxBKAXI:8Uwv7Z0V-A8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=qzFVlxBKAXI:8Uwv7Z0V-A8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=qzFVlxBKAXI:8Uwv7Z0V-A8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/vikiworks?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=qzFVlxBKAXI:8Uwv7Z0V-A8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=qzFVlxBKAXI:8Uwv7Z0V-A8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/vikiworks?a=qzFVlxBKAXI:8Uwv7Z0V-A8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/vikiworks?i=qzFVlxBKAXI:8Uwv7Z0V-A8:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/qzFVlxBKAXI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2009/03/10/asaph-setting-up-your-own-ffffound/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Few words on the New Year’ Eve</title>
		<link>http://vikiworks.com/2009/01/24/few-words-on-the-new-year-eve/</link>
		<comments>http://vikiworks.com/2009/01/24/few-words-on-the-new-year-eve/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 18:21:02 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[Ramblings]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=585</guid>
		<description><![CDATA[Well, it’s been a quite long time since my last post. I started this website as an excuse to experiment with design, wordpress and css related stuff, the good news is that I will keep it in that way.
A few months ago I’ve released 2-3 free themes: Resurrection and Infinity and so – I’m glad [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it’s been a quite long time since my last post. I started this website as an excuse to experiment with design, wordpress and css related stuff, the good news is that I will keep it in that way.</p>
<p>A few months ago I’ve released 2-3 free themes: <a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/"><strong>Resurrection</strong></a> and <a href="http://vikiworks.com/2008/08/09/infinity-theme/"><strong>Infinity</strong></a> and so – I’m glad you like them. You guys probably <a href="http://vikiworks.com/2008/08/09/infinity-theme/#comments">complain a lot</a> about the lacking of no widgets, buggy etc. Many people wrote me asking for a little help on such things, I’m terribly sorry that I can’t reply each one of you, but I can promise one thing:</p>
<p>As a vivid Wordpress enthusiast myself, I took a serious consideration on revamp them soon – take them to <strong>premium design</strong> level, and still <strong>free</strong> for everyone.</p>
<h3>Some new features</h3>
<ul>
<li>Widget ready</li>
<li>No plugins required (hopefully)</li>
<li>Some jQuery stuff</li>
</ul>
<h3>Will be improved</h3>
<ul>
<li>Wordpress 2.7 natively compatible</li>
<li>New structure and CSS (grid)</li>
<li>New design elements (background and icons)</li>
<li>Original PSDs included</li>
<li>A easy-to-follow guide</li>
</ul>
<p>I’ll getting started with revamp work as quick as I can (probably starting this weekend), so stay tuned and <strong><em>happy Chinese New Year to all of domestic readers!</em></strong></p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2009/04/25/wordpress-image-roll/" title="Wordpress Image Roll (April 25, 2009)">Wordpress Image Roll</a></li>
	<li><a href="http://vikiworks.com/2007/08/15/wordcamp-2007-beijing/" title="Wordcamp 2007 Beijing (August 15, 2007)">Wordcamp 2007 Beijing</a></li>
	<li><a href="http://vikiworks.com/2007/05/29/whats-wrong-with-chinese-blogger/" title="What&#8217;s wrong with Chinese blogger? (May 29, 2007)">What&#8217;s wrong with Chinese blogger?</a></li>
	<li><a href="http://vikiworks.com/2007/11/03/web-trend-map/" title="Web Trend map (November 3, 2007)">Web Trend map</a></li>
	<li><a href="http://vikiworks.com/2008/06/11/web-templates-dreamtemplate/" title="Web Templates: Dreamtemplate (June 11, 2008)">Web Templates: Dreamtemplate</a></li>
	<li><a href="http://vikiworks.com/2007/06/30/vista-sucks-im-re-installing-my-system-now/" title="Vista sucks! I&#8217;m re-installing my system now. (June 30, 2007)">Vista sucks! I&#8217;m re-installing my system now.</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2007/10/28/unboxing-my-new-sony-laptop/" title="Unboxing my new Sony laptop (October 28, 2007)">Unboxing my new Sony laptop</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/s3rneaODRyxTVi6T-FQh8AbVtaI/0/da"><img src="http://feedads.g.doubleclick.net/~a/s3rneaODRyxTVi6T-FQh8AbVtaI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/s3rneaODRyxTVi6T-FQh8AbVtaI/1/da"><img src="http://feedads.g.doubleclick.net/~a/s3rneaODRyxTVi6T-FQh8AbVtaI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=AaXw4bfc"><img src="http://feeds.feedburner.com/~f/vikiworks?i=AaXw4bfc" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=ZYoDJ8Ke"><img src="http://feeds.feedburner.com/~f/vikiworks?i=ZYoDJ8Ke" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=PFlS5jdo"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=bV2QZZIk"><img src="http://feeds.feedburner.com/~f/vikiworks?i=bV2QZZIk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=mUJ0Dgen"><img src="http://feeds.feedburner.com/~f/vikiworks?i=mUJ0Dgen" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/Xs9hXubN3qk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2009/01/24/few-words-on-the-new-year-eve/feed/</wfw:commentRss>
		</item>
		<item>
		<title>12 Excellent designed Laptop Stickers</title>
		<link>http://vikiworks.com/2008/10/01/12-excellent-designed-laptop-stickers/</link>
		<comments>http://vikiworks.com/2008/10/01/12-excellent-designed-laptop-stickers/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 21:48:58 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[sticker]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=546</guid>
		<description><![CDATA[I&#8217;ve been searching for some high-quality designed stickers for one of my friend. He is not that picky but all he wanted is something related to eastern culture stuff. Right now he probably talking to the maker for a custom design or something&#8230; Anyway here it came up with a tiny laptop sticker collection that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been searching for some high-quality designed stickers for one of my friend. He is not that picky but all he wanted is something related to eastern culture stuff. Right now he probably talking to the maker for a custom design or something&#8230; Anyway here it came up with a tiny laptop sticker collection that I really like them! thought it might be good idea to share with you. Yep, it really make me wanted to&#8230; um. &#8216;personalize&#8217; my own laptop.</p>
<p>Don&#8217;t forget to look around another <a href="http://www.flickr.com/photos/21849348@N05/">excellent collection</a> via Flickr. btw, you can also try to <a href="http://www.digital-rights.net/?p=1223">engrave something</a> on your lid cover.</p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3161/2542977748_914ac3989c.jpg" alt="" width="500" height="334" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3112/2550111649_dd912613ee.jpg" alt="" width="500" height="375" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3002/2693130682_488a5df55e.jpg" alt="" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm3.static.flickr.com/2112/2263646698_219b3630d2.jpg" alt="" width="500" height="375" /></p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/29/35545416_5e4040865c.jpg" alt="" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm2.static.flickr.com/1123/1147298635_7bc490feb3.jpg" alt="" width="500" height="375" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3112/2441452870_bf23f98f1d.jpg" alt="" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm3.static.flickr.com/2115/2516968363_1109465e46.jpg" alt="" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/63/178384326_536e7aa755.jpg" alt="" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm4.static.flickr.com/3206/2348660458_876b42238f.jpg" alt="" width="500" height="334" /></p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/48/148545109_2b2f21aa96.jpg" alt="" width="500" height="375" /></p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/138/341232589_a11db91a61.jpg" alt="" width="500" height="333" /></p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/46/130647005_8c8a0863fa.jpg" alt="" width="500" height="375" /></p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/" title="WP Theme: Vikiworks V5 theme (May 9, 2008)">WP Theme: Vikiworks V5 theme</a></li>
	<li><a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/" title="WP Theme: Resurrection (September 11, 2007)">WP Theme: Resurrection</a></li>
	<li><a href="http://vikiworks.com/2008/08/09/infinity-theme/" title="WP theme: Infinity (August 9, 2008)">WP theme: Infinity</a></li>
	<li><a href="http://vikiworks.com/2009/04/25/wordpress-image-roll/" title="Wordpress Image Roll (April 25, 2009)">Wordpress Image Roll</a></li>
	<li><a href="http://vikiworks.com/2008/06/11/web-templates-dreamtemplate/" title="Web Templates: Dreamtemplate (June 11, 2008)">Web Templates: Dreamtemplate</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2008/07/14/v5-enhanced/" title="V5 Enhanced. (July 14, 2008)">V5 Enhanced.</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/hgJ4zUqro2aP7ILX423zUa2vj_I/0/da"><img src="http://feedads.g.doubleclick.net/~a/hgJ4zUqro2aP7ILX423zUa2vj_I/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hgJ4zUqro2aP7ILX423zUa2vj_I/1/da"><img src="http://feedads.g.doubleclick.net/~a/hgJ4zUqro2aP7ILX423zUa2vj_I/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=KLM7SCut"><img src="http://feeds.feedburner.com/~f/vikiworks?i=KLM7SCut" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=9PvW3atL"><img src="http://feeds.feedburner.com/~f/vikiworks?i=9PvW3atL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=X77wGvMn"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=cKdzTU5l"><img src="http://feeds.feedburner.com/~f/vikiworks?i=cKdzTU5l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=j6u47K8r"><img src="http://feeds.feedburner.com/~f/vikiworks?i=j6u47K8r" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/vZ2L5JEY19U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/10/01/12-excellent-designed-laptop-stickers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Design Studio: Visualscope</title>
		<link>http://vikiworks.com/2008/09/27/design-studio-visualscope/</link>
		<comments>http://vikiworks.com/2008/09/27/design-studio-visualscope/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 17:05:03 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=544</guid>
		<description><![CDATA[I’ve been lately working with some great designers from Visualscope. After we’re both happy with what we’ve done so far, I’d like to take a moment to introduce them and their business scope here.
Visualscope.com is a web design company based in Seattle, US. The core business is developing custom and fully interactive web sites as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.visualscope.com/"><img class="left" title="visualscope-logo" src="http://vikiworks.com/wp-content/uploads/2008/09/visualscope-logo.png" alt="visualscope-logo" width="204" height="66" /></a>I’ve been lately working with some great designers from Visualscope. After we’re both happy with what we’ve done so far, I’d like to take a moment to introduce them and their business scope here.</p>
<p><a href="http://www.visualscope.com/">Visualscope.com</a> is a web design company based in Seattle, US. The core business is developing custom and fully interactive web sites as well as services range from custom web designs, application development, web hosting, CMS, website maintenance and internet online marketing services. Check out the <a href="http://www.visualscope.com/portfolio.html">design portfolio</a> and <a href="http://www.visualscope.com/testimonials.html">case studies</a> by the way.</p>
<blockquote><p>Being environmentally conscious is of paramount importance to us. As a result, we have implemented eco-friendly measures that we hope will make a difference. Some initiatives include allowing all of our core employees to telecommute. By not having a traditional office space, cutting down on transportation reduces greenhouse and emission gases. Paper printing is kept to an absolute minimum and we strive to ensure energy usage is kept at a reasonable level.<br />
<a href="http://www.visualscope.com/about.html">Visualscope Work Philosophy</a></p></blockquote>
<p>If you&#8217;re looking for a local agent to help you on the projects, it&#8217;s worth to call them and have a try out, I&#8217;m sure that with their expertise and highly skilled designers will make your project stand out.</p>
<p><a href="http://www.visualscope.com/portfolio.html"><img class="alignnone size-full wp-image-542" title="visualscope-portfolio" src="http://vikiworks.com/wp-content/uploads/2008/09/visualscope-portfolio.png" alt="" width="500" height="206" /></a></p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/" title="WP Theme: Vikiworks V5 theme (May 9, 2008)">WP Theme: Vikiworks V5 theme</a></li>
	<li><a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/" title="WP Theme: Resurrection (September 11, 2007)">WP Theme: Resurrection</a></li>
	<li><a href="http://vikiworks.com/2008/08/09/infinity-theme/" title="WP theme: Infinity (August 9, 2008)">WP theme: Infinity</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2008/07/14/v5-enhanced/" title="V5 Enhanced. (July 14, 2008)">V5 Enhanced.</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2007/05/26/the-conception-of-new-theme/" title="The conception of new theme (May 26, 2007)">The conception of new theme</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/EYEV4ASM9IgCQwB3EwGAA5chgEA/0/da"><img src="http://feedads.g.doubleclick.net/~a/EYEV4ASM9IgCQwB3EwGAA5chgEA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EYEV4ASM9IgCQwB3EwGAA5chgEA/1/da"><img src="http://feedads.g.doubleclick.net/~a/EYEV4ASM9IgCQwB3EwGAA5chgEA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=lBdOfZwv"><img src="http://feeds.feedburner.com/~f/vikiworks?i=lBdOfZwv" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=j4Xepv5j"><img src="http://feeds.feedburner.com/~f/vikiworks?i=j4Xepv5j" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=iV58htp5"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=ITDlrsab"><img src="http://feeds.feedburner.com/~f/vikiworks?i=ITDlrsab" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=qPgqKLzd"><img src="http://feeds.feedburner.com/~f/vikiworks?i=qPgqKLzd" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/NwBFRzuxpyw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/09/27/design-studio-visualscope/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[Fixed]My email form messed up.</title>
		<link>http://vikiworks.com/2008/09/03/my-email-form-messed-up/</link>
		<comments>http://vikiworks.com/2008/09/03/my-email-form-messed-up/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 19:58:55 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=539</guid>
		<description><![CDATA[Now my contact page is working, it&#8217;s time to thinking about an alter, maybe cForm is a better solution.
No matter you’re concern about the theme issue or offer me any job opportunity, if you don’t get my reply (normally I reply you all), please post here since my contact form plugin doesn’t work nicely.
If you [...]]]></description>
			<content:encoded><![CDATA[<p>Now my contact page is working, it&#8217;s time to thinking about an alter, maybe cForm is a better solution.</p>
<p><span style="text-decoration: line-through;">No matter you’re concern about the theme issue or offer me any job opportunity, if you don’t get my reply (normally I reply you all), please post here since my contact form plugin doesn’t work nicely.</span></p>
<p><span style="text-decoration: line-through;"><strong>If you ever sent me a message after 28 August, your message probably missed. Please do NOT use my contact page! </strong>You can also send me direct message by <a href="http://twitter.com/yichi">follow up my twitter</a>, I’ll keep you posted.<br />
Sorry for this mess!</span></p>

	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/15rAxutugxqEMZ3JExbSQxLPfpU/0/da"><img src="http://feedads.g.doubleclick.net/~a/15rAxutugxqEMZ3JExbSQxLPfpU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/15rAxutugxqEMZ3JExbSQxLPfpU/1/da"><img src="http://feedads.g.doubleclick.net/~a/15rAxutugxqEMZ3JExbSQxLPfpU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=zUxnn9Vr"><img src="http://feeds.feedburner.com/~f/vikiworks?i=zUxnn9Vr" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=OEeJrGHN"><img src="http://feeds.feedburner.com/~f/vikiworks?i=OEeJrGHN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=GXDQ4b5N"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=0sHmK13U"><img src="http://feeds.feedburner.com/~f/vikiworks?i=0sHmK13U" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=OWPYtPlQ"><img src="http://feeds.feedburner.com/~f/vikiworks?i=OWPYtPlQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/ZIZiZwMrKck" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/09/03/my-email-form-messed-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Photosynth, not ready for Mac</title>
		<link>http://vikiworks.com/2008/08/23/microsoft-photosynth-not-ready-for-mac/</link>
		<comments>http://vikiworks.com/2008/08/23/microsoft-photosynth-not-ready-for-mac/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 18:43:04 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Addons]]></category>

		<category><![CDATA[apps]]></category>

		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=536</guid>
		<description><![CDATA[I&#8217;m impressed with Microsoft Photosynth website, the colors, layout are just as good as it is&#8230; it&#8217;s always been excited to try a new thing out&#8230; but wait a sec, it shows off something not attractive anymore after installed some missing plugins (Silverlight maybe?)

Unfortunately, we&#8217;re not cool enough to run on your OS yet. We [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m impressed with Microsoft <a href="http://photosynth.net/">Photosynth</a> website, the colors, layout are just as good as it is&#8230; it&#8217;s always been excited to try a new thing out&#8230; but wait a sec, it shows off something not attractive anymore after installed some missing plugins (<a href="http://silverlight.net/">Silverlight</a> maybe?)</p>
<p><img style="border:0;" title="photosynth-not-ready-for-mac" src="http://vikiworks.com/wp-content/uploads/2008/08/photosynth-not-ready-for-mac.png" alt="" width="500" height="150" /></p>
<blockquote><p>Unfortunately, we&#8217;re not cool enough to run on your OS yet. We really wish we had a version of Photosynth that worked cross platform, but for now it only runs on Windows&#8230;</p></blockquote>
<p>So I thought it might be the browser jammed or something so I&#8217;ve give it another shot with Safari. Oops! The same. I guess eventually die-hard Mac users have to wait for &#8230; arhhh, it&#8217;s always hard to estimate things like this, isn&#8217;t it?</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2008/01/29/safari-where-is-your-go-button/" title="Safari: where is your Go button? (January 29, 2008)">Safari: where is your Go button?</a></li>
	<li><a href="http://vikiworks.com/2007/11/03/photorganizr-another-flickr-style-photo-service/" title="Photorganizr: another flickr style photo service (November 3, 2007)">Photorganizr: another flickr style photo service</a></li>
	<li><a href="http://vikiworks.com/2007/10/28/oops-illustrator-cs3-crashed-while-print-spooler-service-turned-off/" title="Oops! Illustrator CS3 Crashed while Print Spooler service turned off (October 28, 2007)">Oops! Illustrator CS3 Crashed while Print Spooler service turned off</a></li>
	<li><a href="http://vikiworks.com/2007/03/29/norton-antivirus-2007-for-vista/" title="Norton Antivirus 2007 for Vista (March 29, 2007)">Norton Antivirus 2007 for Vista</a></li>
	<li><a href="http://vikiworks.com/2006/12/05/microsoft-released-zune-theme/" title="Microsoft released Zune theme (December 5, 2006)">Microsoft released Zune theme</a></li>
	<li><a href="http://vikiworks.com/2006/11/10/microsoft-firefox/" title="Microsoft Firefox (November 10, 2006)">Microsoft Firefox</a></li>
	<li><a href="http://vikiworks.com/2007/05/30/make-your-vote-for-webware-100/" title="Make your vote for webware 100 (May 30, 2007)">Make your vote for webware 100</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/_bF-V-blor8PxRAEqPZ9Fb5HYIQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/_bF-V-blor8PxRAEqPZ9Fb5HYIQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_bF-V-blor8PxRAEqPZ9Fb5HYIQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/_bF-V-blor8PxRAEqPZ9Fb5HYIQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=dlVx9j69"><img src="http://feeds.feedburner.com/~f/vikiworks?i=dlVx9j69" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=J4Pnw2xL"><img src="http://feeds.feedburner.com/~f/vikiworks?i=J4Pnw2xL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=B9UzuC8E"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=hzKnWZ0b"><img src="http://feeds.feedburner.com/~f/vikiworks?i=hzKnWZ0b" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=kSFH060B"><img src="http://feeds.feedburner.com/~f/vikiworks?i=kSFH060B" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/kRrY5SA_bX0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/08/23/microsoft-photosynth-not-ready-for-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Built2go Turnkey Templates</title>
		<link>http://vikiworks.com/2008/08/20/built2go-turnkey-templates/</link>
		<comments>http://vikiworks.com/2008/08/20/built2go-turnkey-templates/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 17:02:16 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=532</guid>
		<description><![CDATA[If you’re following up my previous templates review, you’ll probably be interested in Built2go.com - an instant turnkey templates website.  Built2Go has all the benefits of a professional website template website, but with the added benefit of powerful turnkey websites powered by php scripts!  So if you want more than a template for your website [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re following up my previous <a href="http://vikiworks.com/tag/reviews/">templates review</a>, you’ll probably be interested in <a href="http://www.built2go.com/">Built2go.com</a> - an instant turnkey templates website.  Built2Go has all the benefits of a professional website template website, but with the added benefit of powerful <a href="http://www.built2go.com/">turnkey websites</a> powered by <a href="http://www.built2go.com/">php scripts</a>!  So if you want more than a template for your website so you can get your site up and running quickly, then you will want to check out built2go.</p>
<p>Here are some features I’d like listed as below for a quick view:</p>
<ul>
<li>Turnkey websites templates</li>
<li>PHP Scripts</li>
<li>Corporate Indentification (CI) included</li>
<li>Banner packs</li>
</ul>
<p><a href="http://vikiworks.com/wp-content/uploads/2008/08/built2go-screen1.jpg"><img class="alignnone size-full wp-image-529" title="built2go" src="http://vikiworks.com/wp-content/uploads/2008/08/built2go-screen1.jpg" alt="" width="500" height="237" /></a></p>
<p>If you are starting up your own <a href="http://www.built2go.com/">home business</a>, built2go.com is the best option for you, because by just downloading and installing one of their packages, you are up and running in just a few minutes, and because built2go turnkey websites let you sell products, sell memberships, sell your own advertising, or show google adsense banners, you can start making a lot of money right away. Some of the instant business types they offer include review websites, rate my photo websites, news portal blogs, classified ads, personal ads, car dealer listings, dating sites, and many more!</p>
<p><a href="http://vikiworks.com/wp-content/uploads/2008/08/built2go-screen2.jpg"><img class="alignnone size-full wp-image-530" title="built2go" src="http://vikiworks.com/wp-content/uploads/2008/08/built2go-screen2.jpg" alt="" width="480" height="194" /></a></p>
<p>Built2go.com also provides various template designs for each type of script, and you can access their entire membership section with hundreds of options for only $69.95. Built2go is great choice for a limited budget and home business project and it’s ready for use instantly, which means the only thing you need to worry about is which template you will download and apply it to your current project.</p>
<p>Besides templates and scripts, member access also includes the benefits of the free coporated Indentification (CI), banners ad packs and more. If you’re struggling with your design and figuring a way out to make it work instantly, now it’s time to <a href="http://www.built2go.com/">visit Built2go</a> as a consideration of your upcoming project.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/" title="WP Theme: Vikiworks V5 theme (May 9, 2008)">WP Theme: Vikiworks V5 theme</a></li>
	<li><a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/" title="WP Theme: Resurrection (September 11, 2007)">WP Theme: Resurrection</a></li>
	<li><a href="http://vikiworks.com/2008/08/09/infinity-theme/" title="WP theme: Infinity (August 9, 2008)">WP theme: Infinity</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2008/07/14/v5-enhanced/" title="V5 Enhanced. (July 14, 2008)">V5 Enhanced.</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2007/05/26/the-conception-of-new-theme/" title="The conception of new theme (May 26, 2007)">The conception of new theme</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/0jruUyf5Gs5EteqfgLIVDhefcIM/0/da"><img src="http://feedads.g.doubleclick.net/~a/0jruUyf5Gs5EteqfgLIVDhefcIM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0jruUyf5Gs5EteqfgLIVDhefcIM/1/da"><img src="http://feedads.g.doubleclick.net/~a/0jruUyf5Gs5EteqfgLIVDhefcIM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=nOcknmP2"><img src="http://feeds.feedburner.com/~f/vikiworks?i=nOcknmP2" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=6Tg1i4s8"><img src="http://feeds.feedburner.com/~f/vikiworks?i=6Tg1i4s8" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=J7CK9zLk"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=kJyHnJzz"><img src="http://feeds.feedburner.com/~f/vikiworks?i=kJyHnJzz" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=OHOelPer"><img src="http://feeds.feedburner.com/~f/vikiworks?i=OHOelPer" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/Bmc8Mo-5i4g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/08/20/built2go-turnkey-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WP theme: Infinity</title>
		<link>http://vikiworks.com/2008/08/09/infinity-theme/</link>
		<comments>http://vikiworks.com/2008/08/09/infinity-theme/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 15:45:35 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[freebies]]></category>

		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=525</guid>
		<description><![CDATA[Updated Aug 18th - Infinity 1.0.1 has been released (get it here or over Smashing Magazine), it is highly recommended that you upgrade at your convenience, especially if you’re need WP page template which was missing in previous version. Enjoy.
Download Now
Get the Infinity theme (v1.0.1, total  8586  downloads)
Change log
V1.0.1 includes:

 WP Page template included
 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Updated Aug 18th - Infinity</strong> 1.0.1 has been released (get it <a href="http://www.vikiworks.com/download-manager.php?id=23">here</a> or over <a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/">Smashing Magazine</a>), it is highly recommended that you upgrade at your convenience, especially if you’re need WP page template which was missing in previous version. Enjoy.</p>
<h3>Download Now</h3>
<p><a href="http://www.vikiworks.com/download-manager.php?id=23">Get the Infinity theme</a> (v1.0.1, total  8586  downloads)</p>
<h3>Change log</h3>
<p>V1.0.1 includes:</p>
<ul>
<li> WP Page template included</li>
<li> Top navigation revamped (now it work with your pages list)</li>
<li>Blogroll links</li>
</ul>
<h3>Installation and Configuration</h3>
<p>It really doesn’t get much easier than this, extract the contents and upload the whole ‘theme’ folder to your wp-content/theme directory, and you can name it whatever you like. Copy all plugin(s) into wp-content/plugins directory and active them via WP admin.</p>
<p>1) Add a page content - Log into WP admin, Write &gt; Page, hit the save and publish and this will reflect on the top navigation menu.</p>
<p>2) Change the del.icio.us Feed - Edit left.php, line #24:<br />
<code>src="http://feeds.delicious.com/v2/js/<strong>yichi</strong>?<strong>count=8</strong>&amp;sort=date&#8221;</code><br />
replace <strong>yichi</strong> with your own delicious id, <strong>count=8</strong> where you can change how many items you like to show.</p>
<p>3) Change the number of display posts in home - simply go wp admin, settings &gt; reading &gt; Blog pages show at most: where enter the number (the default value is 10)</p>
<p>====================================<br />
<a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/"><img class="alignnone size-full wp-image-527" title="preview" src="http://vikiworks.com/wp-content/uploads/2008/08/preview.jpg" alt="" width="467" height="519" /></a></p>
<p>Thanks <a href="http://www.smashingmagazine.com/">Smashing Magazine</a> for featuring and publish <a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/">Infinity theme</a> for wordpress. As you might see that Infinity theme was actually based on my <a href="http://vikiworks.com">current theme</a> layout, please visit Smashing Magazine for a quick preview and download.</p>
<p>Some guide you might need before using this theme:</p>
<h3>Using Custom Field to custmize the post style</h3>
<p>As Infinity theme requires to use the feature of Wordpress <a href="http://codex.wordpress.org/Using_Custom_Fields">custom filed</a>, here I will show you how to enable that magazine cover style by simple add key value to custom filed:</p>
<p>1) Once you&#8217;re about finishing your post and BEFORE you press &#8216;publish&#8217; button, scroll down your page to Custom field, where you can enter a new <strong>keyword</strong> and <strong>value</strong></p>
<p>Key: <strong>thumbnail</strong><br />
Value: <strong>enter your photo path</strong><br />
(you can either upload a image and copy its path directly or link to your flickr album. And for a better result, please sizing your photo to 235*150 pixels), then hit &#8216;Add Custom Field&#8217; button, wordpress will save this field, and you can edit it at later. It&#8217;s that easy!</p>
<p><img class="alignnone size-full wp-image-526" title="custom-field" src="http://vikiworks.com/wp-content/uploads/2008/08/custom-field.jpg" alt="" width="470" height="218" /></p>
<p>2) then publish it and go check the update you&#8217;ve just made, if everything goes fine, your frontpage will show thumbnail style covers.</p>
<p>I hope you all can enjoy this theme as much as I created, any comments and questions about this theme are always welcome, I&#8217;ll try my best to help you out. Since Smashing Magazine publish it yesterday, I already received over 70 emails concerns about this theme, I&#8217;ll reply to all of you asap.</p>
<h3>Updates</h3>
<p>Thanks so much for all encouraging comments, and here I listed a few issues that you might want to modify, meanwhile I&#8217;m working on an update to ensure all these can be fixed.</p>
<p>1) <strong>How can I remove the favicon?</strong><br />
Open header.php and located to line #6, replace that &lt;link rel=&#8221;shortcut icon&#8221;&#8230; url with your own.</p>
<p><span style="text-decoration: line-through;">2) Create a page template<br />
Create an individual page please refer <a href="http://codex.wordpress.org/Pages">http://codex.wordpress.org/Pages</a>, and I will add a page template in the next update.</span></p>
<p>3) How do I edit the twitter<br />
Edit left.php, line #7<br />
http://twitter.com/statuses/user_timeline/***.json?callback=twitterCallback2&amp;count=1<br />
replace *** with your twitter id - count=1 means how many message, change it to 2,3 and so on.</p>
<p>4) Change the RSS<br />
Open header.php, line #34 simply replace the feedburner url with your own RSS feed.</p>
<p><span style="text-decoration: line-through;">5) Change the top menu<br />
The top menu items are designed to modify manually, but you still can replace them with wp page navigation, open header.php and locate line #29<br />
<code><del datetime="2008-08-18T16:41:52+00:00">&lt;ul class=&#8221;topnav&#8221;&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_settings(&#8217;home&#8217;); ?&gt;/&#8221; title=&#8221;Return to Frontpage&#8221;&gt;01. Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;http://vikiworks.com/&#8221; title=&#8221;About&#8221;&gt;02. About Me&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;http://vikiworks.com/&#8221; title=&#8221;Contact&#8221;&gt;03. Contact&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#main-wrapper&#8221; title=&#8221;Contact&#8221;&gt;04. Skip to content&lt;/a&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;rss&#8221;&gt;&lt;a href=&#8221;http://feeds.feedburner.com/vikiworks&#8221; title=&#8221;Subscribe RSS&#8221;&gt;RSS&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</del></code></span></p>
<p><span style="text-decoration: line-through;">repleace blue color highlighted code with<br />
<code><del datetime="2008-08-18T16:41:52+00:00">&lt;?php wp_list_pages(&#8217;title_li=&#8217;); ?&gt;</del></code></span></p>
<p>For details on page navigation, please refer to <a href="http://codex.wordpress.org/wp_list_pages">Wordpress Codex</a>. This theme requires <a href="http://wordpress.org/extend/plugins/wp-pagenavi/">Page navi plugin</a> installed to enable the page navigation, please get one from <a href="http://wordpress.org/extend/plugins/wp-pagenavi/">here</a>.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2006/10/20/theme-eyeball/" title="Theme eyeball (October 20, 2006)">Theme eyeball</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
	<li><a href="http://vikiworks.com/2008/04/11/span-your-first-letter/" title="SPAN Your First Letter (April 11, 2008)">SPAN Your First Letter</a></li>
	<li><a href="http://vikiworks.com/2008/03/22/slide-showcase/" title="Slide showcase (March 22, 2008)">Slide showcase</a></li>
	<li><a href="http://vikiworks.com/2007/09/05/showcases-to-being-inspired/" title="Showcases to being inspired (September 5, 2007)">Showcases to being inspired</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/ei7_5MDK2VuibjlzS5RANDCmrSM/0/da"><img src="http://feedads.g.doubleclick.net/~a/ei7_5MDK2VuibjlzS5RANDCmrSM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ei7_5MDK2VuibjlzS5RANDCmrSM/1/da"><img src="http://feedads.g.doubleclick.net/~a/ei7_5MDK2VuibjlzS5RANDCmrSM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=O8GGknQt"><img src="http://feeds.feedburner.com/~f/vikiworks?i=O8GGknQt" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=bv4Mr47V"><img src="http://feeds.feedburner.com/~f/vikiworks?i=bv4Mr47V" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=TvVcdNJG"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=Qm5Qvc2L"><img src="http://feeds.feedburner.com/~f/vikiworks?i=Qm5Qvc2L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=los5Lku1"><img src="http://feeds.feedburner.com/~f/vikiworks?i=los5Lku1" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/d1U_sZfscI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/08/09/infinity-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Templateworld, web design templates</title>
		<link>http://vikiworks.com/2008/07/30/templateworld-web-design-templates/</link>
		<comments>http://vikiworks.com/2008/07/30/templateworld-web-design-templates/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 17:41:25 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[reviews]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=518</guid>
		<description><![CDATA[
Templateworld, actually it has told the whole story by the name itself. Within over 40 different web 2.0 styled template categories to choose from, instant access enabled once you’re signed up for membership for just $49.95, it definitely can be your major premium resource basement for web site templates design. Go visit the website and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.templateworld.com/"><img class="alignnone size-full wp-image-519" title="templateworld logo" src="http://vikiworks.com/wp-content/uploads/2008/07/tw-logo.png" alt="" width="205" height="55" /></a></p>
<p><a href="http://www.templateworld.com/">Templateworld</a>, actually it has told the whole story by the name itself. Within over 40 different <a href="http://www.templateworld.com/">web 2.0 styled template</a> categories to choose from, instant access enabled once you’re signed up for membership for just $49.95, it definitely can be your major premium resource basement for <a href="http://www.templateworld.com/">web site templates</a> design. Go visit the website and browsing around all the stunning design templates, I’m sure you’ll totally satisfied with the quality and styles. In case you’re interested, lets take a look at few eye candy samples.</p>
<p><a href="http://vikiworks.com/wp-content/uploads/2008/07/tw-sample-template1.jpg"><img class="alignnone size-full wp-image-520" title="template-sample-template" src="http://vikiworks.com/wp-content/uploads/2008/07/tw-sample-template1.jpg" alt="" width="430" height="181" /></a></p>
<p><a href="http://vikiworks.com/wp-content/uploads/2008/07/tw-sample-template3.jpg"><img class="alignnone size-full wp-image-521" title="tw-sample-template3" src="http://vikiworks.com/wp-content/uploads/2008/07/tw-sample-template3.jpg" alt="" width="430" height="167" /></a></p>
<p><strong>Templateworld also features:</strong></p>
<ul>
<li> No per product fees</li>
<li> Easy to use <a href="http://www.templateworld.com/">web design templates</a></li>
<li> Wordpress, Joomla ready-to-use themes</li>
<li> Flash and logotype templates</li>
<li> Maximum compatibility for all modern browsers and platforms</li>
<li> Affiliate program, 30% commission</li>
</ul>
<p>and much more await you to exploring <img src='http://vikiworks.com/wp-includes/images/smilies/icon_smile.png' alt=':)' class='wp-smiley' /> </p>
<p>If you’re looking for <a href="http://www.templateworld.com/">premium quality design</a> for your upcoming project, or maybe you just want your website or blog revamping, I’m sure that you already spent a lot of time, searching on the web, wrote a ton of emails to looking for some offshore designers&#8230; now stop looking around, try templateWorld and bookmark it, get ready to roll out.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2006/11/01/web20-logo-collections/" title="web2.0 logo collections (November 1, 2006)">web2.0 logo collections</a></li>
	<li><a href="http://vikiworks.com/2006/12/02/web20-collection-in-digital-world-from-taiwan/" title="Web2.0 collection in Digital World from Taiwan (December 2, 2006)">Web2.0 collection in Digital World from Taiwan</a></li>
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2006/10/20/theme-eyeball/" title="Theme eyeball (October 20, 2006)">Theme eyeball</a></li>
	<li><a href="http://vikiworks.com/2007/07/28/social-bookmark-iconset-part-2/" title="Social Bookmark Iconset: Part II (July 28, 2007)">Social Bookmark Iconset: Part II</a></li>
	<li><a href="http://vikiworks.com/2007/06/15/social-bookmark-iconset/" title="Social Bookmark Iconset (June 15, 2007)">Social Bookmark Iconset</a></li>
	<li><a href="http://vikiworks.com/2007/09/05/showcases-to-being-inspired/" title="Showcases to being inspired (September 5, 2007)">Showcases to being inspired</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/N1tmS-tbOVgvcNDaqNYZYGZrFZ0/0/da"><img src="http://feedads.g.doubleclick.net/~a/N1tmS-tbOVgvcNDaqNYZYGZrFZ0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/N1tmS-tbOVgvcNDaqNYZYGZrFZ0/1/da"><img src="http://feedads.g.doubleclick.net/~a/N1tmS-tbOVgvcNDaqNYZYGZrFZ0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=CAnOOJr0"><img src="http://feeds.feedburner.com/~f/vikiworks?i=CAnOOJr0" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=JiquDd6R"><img src="http://feeds.feedburner.com/~f/vikiworks?i=JiquDd6R" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=oLum99iE"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=qnL6fKdu"><img src="http://feeds.feedburner.com/~f/vikiworks?i=qnL6fKdu" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=dQSb4lIu"><img src="http://feeds.feedburner.com/~f/vikiworks?i=dQSb4lIu" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/ZkWHDZbMbpQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/07/30/templateworld-web-design-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Boxedart: Pro website templates</title>
		<link>http://vikiworks.com/2008/07/25/boxedart-professional-website-templates/</link>
		<comments>http://vikiworks.com/2008/07/25/boxedart-professional-website-templates/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 19:34:32 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[Essays]]></category>

		<category><![CDATA[Ramblings]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[vector]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=512</guid>
		<description><![CDATA[As designers, we’re looking for some sleek design templates and layouts for a project.  Sometimes the free open source template websites have some good website templates, however the majority of those templates are pretty plain, and often contributed by amateur designers.  When you are in a rush to complete a project and need the best [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.boxedart.com/"><img class="right" title="boxedart-logo" src="http://vikiworks.com/wp-content/uploads/2008/07/boxedart-small-logo.png" alt="" width="135" height="54" /></a>As designers, we’re looking for some sleek design templates and layouts for a project.  Sometimes the free open source template websites have some good <a href="http://www.boxedart.com/">website templates</a>, however the majority of those templates are pretty plain, and often contributed by amateur designers.  When you are in a rush to complete a project and need the best quality, you might not be able to fill your needs with free templates alone.  To resolve this, I have found that using <a href="http://www.boxedart.com/">professional website templates</a> from BoxedArt.com is a great choice.  They provide over 6000 designs for your web projects, and have a very small access fee.</p>
<p>here are listed some sample templates:</p>
<p><a href="http://www.boxedart.com/phpshop/mediaimages/BusinessBlocks550-1.jpg"><img title="boxedart-sample" src="http://vikiworks.com/wp-content/uploads/2008/07/boxedart-sample1.jpg" alt="" width="470" height="153" /></a></p>
<p><a href="http://www.boxedart.com/phpshop/mediaimages/PolishedLook550-1.jpg"><img title="boxedart-sample" src="http://vikiworks.com/wp-content/uploads/2008/07/boxedart-sample2.jpg" alt="" width="470" height="153" /></a></p>
<p>After you join up with BoxedArt, all of your downloads are free, so you do not need to keep paying for designs, so it basically as good as a free template site from the perspective of cost, however all of their templates are designed by professionals only, and they are also validated designs, often enhanced with flash, logos, and more, giving you better choices than going with free templates.  What I like more is that BoxedArt also provides <a href="http://www.boxedart.com/">print templates</a> for stuff like brochures, menus, t-shirts, as well as goodies like mascots and vector icons and dozens of other stuff to use in projects.</p>
<p>I chose to share this because I thought <a href="http://www.boxedart.com/">BoxedArt’s template</a> offer is the most generous of any template site I found anywhere.  What is also very cool is that BoxedArt has limited edition and exclusive templates too, so from their site you could be the only person to use a design if that is important to you.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/08/15/wordcamp-2007-beijing/" title="Wordcamp 2007 Beijing (August 15, 2007)">Wordcamp 2007 Beijing</a></li>
	<li><a href="http://vikiworks.com/2007/05/29/whats-wrong-with-chinese-blogger/" title="What&#8217;s wrong with Chinese blogger? (May 29, 2007)">What&#8217;s wrong with Chinese blogger?</a></li>
	<li><a href="http://vikiworks.com/2006/11/01/web20-logo-collections/" title="web2.0 logo collections (November 1, 2006)">web2.0 logo collections</a></li>
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2007/06/30/vista-sucks-im-re-installing-my-system-now/" title="Vista sucks! I&#8217;m re-installing my system now. (June 30, 2007)">Vista sucks! I&#8217;m re-installing my system now.</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/10/28/unboxing-my-new-sony-laptop/" title="Unboxing my new Sony laptop (October 28, 2007)">Unboxing my new Sony laptop</a></li>
	<li><a href="http://vikiworks.com/2007/06/23/tintin-coming-to-silver-screen/" title="Tintin coming to silver screen (June 23, 2007)">Tintin coming to silver screen</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/GHU1FT2iVd8O0Xtyjx-1VaSbJMY/0/da"><img src="http://feedads.g.doubleclick.net/~a/GHU1FT2iVd8O0Xtyjx-1VaSbJMY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GHU1FT2iVd8O0Xtyjx-1VaSbJMY/1/da"><img src="http://feedads.g.doubleclick.net/~a/GHU1FT2iVd8O0Xtyjx-1VaSbJMY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=ZRLO0Bxd"><img src="http://feeds.feedburner.com/~f/vikiworks?i=ZRLO0Bxd" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=k9utohPH"><img src="http://feeds.feedburner.com/~f/vikiworks?i=k9utohPH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=7agwmMJp"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=TllezG02"><img src="http://feeds.feedburner.com/~f/vikiworks?i=TllezG02" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=Dolq3GLf"><img src="http://feeds.feedburner.com/~f/vikiworks?i=Dolq3GLf" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/Gr00bQJLvi8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/07/25/boxedart-professional-website-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>V5 Enhanced.</title>
		<link>http://vikiworks.com/2008/07/14/v5-enhanced/</link>
		<comments>http://vikiworks.com/2008/07/14/v5-enhanced/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 20:24:45 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[freebies]]></category>

		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=508</guid>
		<description><![CDATA[Recently a talented designer from Munich, Milo has made this BIG updated on V5 theme, improved its stability and compability, add drop down menu and even a redesigned slide showcase&#8230; interests you? grab it now [via Mio's website] you can also get my original V5 theme here.

	
	Vista extra wallpapers
	Vector Logos: download for free!
	Try something new!
	Theme [...]]]></description>
			<content:encoded><![CDATA[<p>Recently a talented designer from Munich, <a href="http://wp.3oneseven.com/">Milo</a> has made this <a href="http://wp.3oneseven.com/">BIG updated</a> on V5 theme, improved its stability and compability, add drop down menu and even a redesigned slide showcase&#8230; interests you? <a href="http://wp.3oneseven.com/10/bullit/">grab it now</a> [via Mio's website] you can also get my original V5 theme <a href="http://vikiworks.com/2008/05/09/vikiworks-v5-theme/">here</a>.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2006/10/20/theme-eyeball/" title="Theme eyeball (October 20, 2006)">Theme eyeball</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
	<li><a href="http://vikiworks.com/2008/04/11/span-your-first-letter/" title="SPAN Your First Letter (April 11, 2008)">SPAN Your First Letter</a></li>
	<li><a href="http://vikiworks.com/2008/03/22/slide-showcase/" title="Slide showcase (March 22, 2008)">Slide showcase</a></li>
	<li><a href="http://vikiworks.com/2007/09/05/showcases-to-being-inspired/" title="Showcases to being inspired (September 5, 2007)">Showcases to being inspired</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/Mf7TlHS-8zQRYhfN3818-bR8ZhE/0/da"><img src="http://feedads.g.doubleclick.net/~a/Mf7TlHS-8zQRYhfN3818-bR8ZhE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Mf7TlHS-8zQRYhfN3818-bR8ZhE/1/da"><img src="http://feedads.g.doubleclick.net/~a/Mf7TlHS-8zQRYhfN3818-bR8ZhE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=Ek9paqy7"><img src="http://feeds.feedburner.com/~f/vikiworks?i=Ek9paqy7" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=HoQgINoU"><img src="http://feeds.feedburner.com/~f/vikiworks?i=HoQgINoU" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=iMFw6TlQ"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=8s4uDF2J"><img src="http://feeds.feedburner.com/~f/vikiworks?i=8s4uDF2J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=FVy9yqru"><img src="http://feeds.feedburner.com/~f/vikiworks?i=FVy9yqru" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/-u719HrgM3Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/07/14/v5-enhanced/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nintendo games on your sidebar</title>
		<link>http://vikiworks.com/2008/07/02/nintendo-games-on-your-sidebar/</link>
		<comments>http://vikiworks.com/2008/07/02/nintendo-games-on-your-sidebar/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 18:40:57 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Addons]]></category>

		<category><![CDATA[apps]]></category>

		<category><![CDATA[freebies]]></category>

		<category><![CDATA[game]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=505</guid>
		<description><![CDATA[FireNes is a Java based NES emulator add-on, it combines over 2,000 Nintendo games that you can easily grab-n-play on your sidebar (Firefox only on both Windows and Mac), you can install this addon via Mozilla web site, then you can access the game list by going to Tools -&#62; FireNes.

After play with it in [...]]]></description>
			<content:encoded><![CDATA[<p>FireNes is a Java based NES emulator add-on, it combines over 2,000 Nintendo games that you can easily grab-n-play on your sidebar (Firefox only on both Windows and Mac), you can <a href="https://addons.mozilla.org/en-US/firefox/addon/7233">install this addon via Mozilla web site</a>, then you can access the game list by going to Tools -&gt; FireNes.</p>
<p><img class="alignnone size-full wp-image-506" title="firenes" src="http://vikiworks.com/wp-content/uploads/2008/07/firenes.png" alt="" width="470" height="163" /></p>
<p>After play with it in a while, some games were a bit sluggish and some completely not loaded&#8230; since they’re old games and at no charge, we can’t expect more. If you’re a super fan of the mushroom guy ‘mario’, you can’t missed it.</p>
<p>Update: for some reasons Wordpress extensions no longer work, here is official link from author, <a href="http://www.firenes.com.ar/firenes-1.0.xpi">get it here</a>.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/" title="WP Theme: Vikiworks V5 theme (May 9, 2008)">WP Theme: Vikiworks V5 theme</a></li>
	<li><a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/" title="WP Theme: Resurrection (September 11, 2007)">WP Theme: Resurrection</a></li>
	<li><a href="http://vikiworks.com/2008/08/09/infinity-theme/" title="WP theme: Infinity (August 9, 2008)">WP theme: Infinity</a></li>
	<li><a href="http://vikiworks.com/2008/06/11/web-templates-dreamtemplate/" title="Web Templates: Dreamtemplate (June 11, 2008)">Web Templates: Dreamtemplate</a></li>
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2008/07/14/v5-enhanced/" title="V5 Enhanced. (July 14, 2008)">V5 Enhanced.</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/5YlvZpvCbCSEVq0lxf9i26rSZTs/0/da"><img src="http://feedads.g.doubleclick.net/~a/5YlvZpvCbCSEVq0lxf9i26rSZTs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5YlvZpvCbCSEVq0lxf9i26rSZTs/1/da"><img src="http://feedads.g.doubleclick.net/~a/5YlvZpvCbCSEVq0lxf9i26rSZTs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=P1I0qRd1"><img src="http://feeds.feedburner.com/~f/vikiworks?i=P1I0qRd1" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=C2ueTGXf"><img src="http://feeds.feedburner.com/~f/vikiworks?i=C2ueTGXf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=DT69Qemy"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=8iZL50yl"><img src="http://feeds.feedburner.com/~f/vikiworks?i=8iZL50yl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=5jkTlwae"><img src="http://feeds.feedburner.com/~f/vikiworks?i=5jkTlwae" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/dlu6ltfrGH8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/07/02/nintendo-games-on-your-sidebar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Don’t panic, 1st Gen Chinese iPhone user</title>
		<link>http://vikiworks.com/2008/06/13/dont-panic-first-generation-chinese-iphone-user/</link>
		<comments>http://vikiworks.com/2008/06/13/dont-panic-first-generation-chinese-iphone-user/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 11:02:47 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=502</guid>
		<description><![CDATA[
At the very first second of Steve Jobs announced iPhone 3G and I was stunned to it&#8217;s priced as low as $199 start, I&#8217;m sure that many of 1st gen iPhone users [especially in China] started to panic&#8230; well, don&#8217;t be!
3G coverage in China = Zero.
Firstly lets just talk about the networking service in China, [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-width: 0px" title="iPhone 3G" src="http://vikiworks.com/wp-content/uploads/2008/06/iphone3g.png" alt="" width="185" height="95" /></p>
<p>At the very first second of <a href="http://www.apple.com/iphone">Steve Jobs announced iPhone 3G</a> and I was stunned to it&#8217;s priced as low as $199 start, I&#8217;m sure that many of 1st gen iPhone users [especially in China] started to panic&#8230; well, don&#8217;t be!</p>
<h3>3G coverage in China = Zero.</h3>
<p>Firstly lets just talk about the networking service in China, from <a href="http://www.businessweek.com/globalbiz/content/mar2007/gb20070316_947183.htm">what I&#8217;ve read</a> that a) we don&#8217;t have 3G coverage yet, while China Mobile (中国移动) struggling with that proprietary TD-SCDMA or whatever, however it still waiting for approval, and I was wondering b) whether the upcoming iPhone 3G will be compatible in China if it&#8217;s unlocked?</p>
<p>This is a significant problem and we can&#8217;t solve it by ourselves unless Apple has made a deal with the operators or government, which I&#8217;m sorry to say, remains an unattainable dream.</p>
<h3>Is it worth?!</h3>
<p>Besides the network issue, lets get back to iPhone 3G itself, I was expected to spending money on <span style="text-decoration: line-through;">something</span> some improved features that I could use, once again, it failed me!</p>
<ul>
<li>It coated with some plastics instead of Aluminum</li>
<li>It <span style="text-decoration: line-through;">came with</span> retained 2.0 mega pixels camera (which I hate it)</li>
<li>Still no video record capability?</li>
<li>No <a href="http://gizmodo.com/5014767/iphone-3gs-new-sim-ejector-tool-makes-it-instant-must+buy">SIM card eject tool</a></li>
</ul>
<p><img class="alignnone size-full wp-image-504" title="iPhone 3G - Will I buy it?" src="http://vikiworks.com/wp-content/uploads/2008/06/willubuyit.png" alt="" width="470" height="210" /></p>
<p>&#8230;</p>
<p>Will I buy it instantly? The anwser is NO! So far I’m happy with my 1st gen iPhone so I’ll probably stick with it. What about you?</p>

	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/tjY9V4l40da5aiM2UOSytAMVnj0/0/da"><img src="http://feedads.g.doubleclick.net/~a/tjY9V4l40da5aiM2UOSytAMVnj0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tjY9V4l40da5aiM2UOSytAMVnj0/1/da"><img src="http://feedads.g.doubleclick.net/~a/tjY9V4l40da5aiM2UOSytAMVnj0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=79MEqcg6"><img src="http://feeds.feedburner.com/~f/vikiworks?i=79MEqcg6" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=1xlwPad5"><img src="http://feeds.feedburner.com/~f/vikiworks?i=1xlwPad5" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=d0EyPc3V"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=kCkEQz7f"><img src="http://feeds.feedburner.com/~f/vikiworks?i=kCkEQz7f" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=txf5xEo2"><img src="http://feeds.feedburner.com/~f/vikiworks?i=txf5xEo2" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/9ifpjCyFFBI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/06/13/dont-panic-first-generation-chinese-iphone-user/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Templates: Dreamtemplate</title>
		<link>http://vikiworks.com/2008/06/11/web-templates-dreamtemplate/</link>
		<comments>http://vikiworks.com/2008/06/11/web-templates-dreamtemplate/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 09:05:22 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[freebies]]></category>

		<category><![CDATA[reviews]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=499</guid>
		<description><![CDATA[
From time to time, we’re searching for a vary kinds of web templates (both free &#38; paid) for personal and business uses, within spend a few bucks and mouse clicks you’ll saving time and money to achieve the very first step of your online goal by presenting people a well-designed, customizable front face.
Dreamtemplate is one [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Dreamtemplate" src="http://vikiworks.com/wp-content/uploads/2008/06/dt1.png" alt="Dreamtemplate" width="470" height="151" /></p>
<p>From time to time, we’re searching for a vary kinds of <a href="http://www.dreamtemplate.com">web templates</a> (both free &amp; paid) for personal and business uses, within spend a few bucks and mouse clicks you’ll saving time and money to achieve the very first step of your online goal by presenting people a well-designed, customizable front face.</p>
<p><a href="http://www.dreamtemplate.com">Dreamtemplate</a> is one of the dedicated templates provider, with over $2,000,000+ worth of website templates available for download, is that pretty cool? They also has a bunch of well-designed teamplates are abusolutely FREE, <a href="http://www.dreamtemplate.com">check these out</a>! Trust me, you don’t want to missed it!</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2006/11/01/web20-logo-collections/" title="web2.0 logo collections (November 1, 2006)">web2.0 logo collections</a></li>
	<li><a href="http://vikiworks.com/2006/12/02/web20-collection-in-digital-world-from-taiwan/" title="Web2.0 collection in Digital World from Taiwan (December 2, 2006)">Web2.0 collection in Digital World from Taiwan</a></li>
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2006/10/20/theme-eyeball/" title="Theme eyeball (October 20, 2006)">Theme eyeball</a></li>
	<li><a href="http://vikiworks.com/2007/09/05/showcases-to-being-inspired/" title="Showcases to being inspired (September 5, 2007)">Showcases to being inspired</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/CkLjeRNe8brMZNWDBthd0KYp4XM/0/da"><img src="http://feedads.g.doubleclick.net/~a/CkLjeRNe8brMZNWDBthd0KYp4XM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/CkLjeRNe8brMZNWDBthd0KYp4XM/1/da"><img src="http://feedads.g.doubleclick.net/~a/CkLjeRNe8brMZNWDBthd0KYp4XM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=WRFVA36h"><img src="http://feeds.feedburner.com/~f/vikiworks?i=WRFVA36h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=IeX4LgaP"><img src="http://feeds.feedburner.com/~f/vikiworks?i=IeX4LgaP" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=RxRIJLkw"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=MwqB1XcN"><img src="http://feeds.feedburner.com/~f/vikiworks?i=MwqB1XcN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=R0NHsM1B"><img src="http://feeds.feedburner.com/~f/vikiworks?i=R0NHsM1B" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/LRU9_szRf9k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/06/11/web-templates-dreamtemplate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twinkle. Wishlist.</title>
		<link>http://vikiworks.com/2008/05/30/twinkle-wishlist/</link>
		<comments>http://vikiworks.com/2008/05/30/twinkle-wishlist/#comments</comments>
		<pubDate>Fri, 30 May 2008 19:53:42 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=493</guid>
		<description><![CDATA[Twinkle came up as the first native twitter client for the iPhone, it featured Locate-Me that enables you to find any twinkle users are closing to you with a simply tap, you&#8217;ll get a lot more fun with it (twitter + geo stuff) - however it sometime work sucks, it just jacked up and revealed [...]]]></description>
			<content:encoded><![CDATA[<p><img class="floatright" style="border-width: 0px" title="twinkle" src="http://vikiworks.com/wp-content/uploads/2008/05/twinkle-icon.png" border="0" alt="" width="60" height="60" />Twinkle came up as the first native twitter client for the iPhone, it featured Locate-Me that enables you to find any twinkle users are closing to you with a simply tap, you&#8217;ll get a lot more fun with it (twitter + geo stuff) - however it sometime work sucks, it just jacked up and revealed absolutely wrong!!</p>
<p>Here listed items (wishlist) are what I want to add or get improved on the next release:</p>
<ol>
<li>More skins (current gray one is great, however I want something different)</li>
<li>Searching (a MUST!!!)</li>
<li>Buddy list (easily to browsing around)</li>
<li>Always run in background (uncless I log off manually)</li>
<li>Use iPhone&#8217;s photo album</li>
<li>LocatedMe with map+dropin enabled (Sounds cool?)</li>
</ol>
<p>Twinkle is really worth a try if you&#8217;re on iPhone, the current version is 0.75 (<a href="http://twitter.com/justiphoneblog">via twitter</a>), I hope it can suprise me on the next release - sounds like it should be comes out any moment!</p>

	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/uMzz-TNxq-yixQRocYSNUKHnazM/0/da"><img src="http://feedads.g.doubleclick.net/~a/uMzz-TNxq-yixQRocYSNUKHnazM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/uMzz-TNxq-yixQRocYSNUKHnazM/1/da"><img src="http://feedads.g.doubleclick.net/~a/uMzz-TNxq-yixQRocYSNUKHnazM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=70aKUU1L"><img src="http://feeds.feedburner.com/~f/vikiworks?i=70aKUU1L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=pVH5NWnD"><img src="http://feeds.feedburner.com/~f/vikiworks?i=pVH5NWnD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=3RYn8Q6h"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=k8NVYvmt"><img src="http://feeds.feedburner.com/~f/vikiworks?i=k8NVYvmt" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=OzetAlDc"><img src="http://feeds.feedburner.com/~f/vikiworks?i=OzetAlDc" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/XkybVRru1FU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/05/30/twinkle-wishlist/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Three Days of National Mourning</title>
		<link>http://vikiworks.com/2008/05/18/three-days-of-national-mourning/</link>
		<comments>http://vikiworks.com/2008/05/18/three-days-of-national-mourning/#comments</comments>
		<pubDate>Sun, 18 May 2008 22:41:52 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=491</guid>
		<description><![CDATA[
19日至21日为全国哀悼日, 深切哀悼四川汶川地震遇难者!
Three days of national mourning was declared by China, for the earthquake victims. In efforts to rescue the victims from the debris have turned bleak on Sunday. It has been stated that more than 50,000 people might have been killed in the ghastly earthquake and about 2,20,000 people suffered injuries during the incident.
The three-day [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vikiworks.com/wp-content/uploads/2008/05/mourning.jpg"><img class="alignnone size-full wp-image-492" title="mourning" src="http://vikiworks.com/wp-content/uploads/2008/05/mourning.jpg" alt="" width="470" height="268" /></a></p>
<p>19日至21日为全国哀悼日, 深切哀悼四川汶川地震遇难者!</p>
<p>Three days of national mourning was declared by China, for the earthquake victims. In efforts to rescue the victims from the debris have turned bleak on Sunday. It has been stated that more than 50,000 people might have been killed in the ghastly earthquake and about 2,20,000 people suffered injuries during the incident.</p>
<p>The three-day mourning period will commence from Monday and a three-minute silence will be observed across the country at 2.28 PM (local time) the time at which the earthquake originally stuck.</p>

	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/QHZYef3ApLqdvJ0td_LbxMoO9AI/0/da"><img src="http://feedads.g.doubleclick.net/~a/QHZYef3ApLqdvJ0td_LbxMoO9AI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QHZYef3ApLqdvJ0td_LbxMoO9AI/1/da"><img src="http://feedads.g.doubleclick.net/~a/QHZYef3ApLqdvJ0td_LbxMoO9AI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=PiaaY7Dm"><img src="http://feeds.feedburner.com/~f/vikiworks?i=PiaaY7Dm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=9LuoW7pk"><img src="http://feeds.feedburner.com/~f/vikiworks?i=9LuoW7pk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=ksXqPLa8"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=n0zmyZjm"><img src="http://feeds.feedburner.com/~f/vikiworks?i=n0zmyZjm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=xrBFOgyK"><img src="http://feeds.feedburner.com/~f/vikiworks?i=xrBFOgyK" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/6rNuyYlpMcY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/05/18/three-days-of-national-mourning/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WP Theme: Vikiworks V5 theme</title>
		<link>http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/</link>
		<comments>http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/#comments</comments>
		<pubDate>Fri, 09 May 2008 18:44:26 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Work]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[freebies]]></category>

		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=487</guid>
		<description><![CDATA[First of all, a big thankyou to everyone who took part in supporting me to release another Wordpress theme, special thanks to ququhu who brought us a revised design and it work with IE8 (details in Chinese here).
V5 theme was actually based on my previous theme, if you&#8217;re following my resurrection theme you&#8217;ll know that [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, a big thankyou to everyone who took part in supporting me to release another Wordpress theme, special thanks to <a href="http://twitter.com/ququhu">ququhu </a>who brought us a revised design and it work with IE8 (details in Chinese <a href="http://design.ququhu.com/archives/30">here</a>).</p>
<p><a href="http://www.vikiworks.com/download-manager.php?id=21">V5 theme</a> was actually based on my previous theme, if you&#8217;re following my <a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/">resurrection theme</a> you&#8217;ll know that making a theme wasn&#8217;t easy for me, after spent sometime and a few rounds fighting with codes, removed any improper stuff now here it comes. Take a look at this snapshot below:</p>
<p><a href="http://vikiworks.com/wp-content/uploads/2008/05/v5snap.jpg"><img class="alignnone size-full wp-image-488" title="v5snap" src="http://vikiworks.com/wp-content/uploads/2008/05/v5snap.jpg" alt="V5 theme snapshot" width="470" height="442" /></a></p>
<p><a href="http://www.vikiworks.com/download-manager.php?id=21"><img style="border: 0;" src="http://vikiworks.com/download/dl.png" alt="Get It Now" width="176" height="45" /></a></p>
<p>Approx. 900KB (total  21055  downloads)<br />
<a href="http://www.vikiworks.com/download-manager.php?id=22">Bonus PSDs pack</a> Approx. 2MB (total  5463  downloads)</p>
<h3>Changed log</h3>
<ul>- 15 July, 2008 Fixed the Flickr issue (on IE6/7)</ul>
<h3>Some features included</h3>
<ul>- An easy to navigate slideshow<br />
- Flickr and delicious enabled<br />
<strong>- PSD format source file</strong><br />
- Work with WP 2.5</ul>
<p>To avoid getting any errors, please make sure that you have the following plugin(s) installed before activate this theme:</p>
<ul>-  <a href="http://eightface.com/wordpress/flickrrss/">Flickr RSS</a><br />
- <a href="http://del.icio.us">Del.icio.us JS</a><br />
- <a href="http://blog.jodies.de/archiv/2004/11/13/recent-comments/">Get recent comments</a><br />
- <a href="http://wordpress.org/extend/plugins/simple-tags">Simple tags</a><br />
- <a href="http://alexking.org/projects/wordpress">Twitter tools</a><br />
- <a href="http://lesterchan.net/portfolio/programming.php">WP-Pagenavi</a><br />
- <a href="http://zeo.unic.net.my/notes/lightbox2-for-wordpress/">WP lightbox 2</a> (Optional)</ul>
<p>If you like/hate it, please let me know. I&#8217;m actually thinking of something simple and clean that can be suitable for the most bloggers, any comments are welcome.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2006/10/20/theme-eyeball/" title="Theme eyeball (October 20, 2006)">Theme eyeball</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
	<li><a href="http://vikiworks.com/2008/04/11/span-your-first-letter/" title="SPAN Your First Letter (April 11, 2008)">SPAN Your First Letter</a></li>
	<li><a href="http://vikiworks.com/2008/03/22/slide-showcase/" title="Slide showcase (March 22, 2008)">Slide showcase</a></li>
	<li><a href="http://vikiworks.com/2007/09/05/showcases-to-being-inspired/" title="Showcases to being inspired (September 5, 2007)">Showcases to being inspired</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/51lHSt1_IrhP1628Gv_UR4_OLLg/0/da"><img src="http://feedads.g.doubleclick.net/~a/51lHSt1_IrhP1628Gv_UR4_OLLg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/51lHSt1_IrhP1628Gv_UR4_OLLg/1/da"><img src="http://feedads.g.doubleclick.net/~a/51lHSt1_IrhP1628Gv_UR4_OLLg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=FkRCIKc4"><img src="http://feeds.feedburner.com/~f/vikiworks?i=FkRCIKc4" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=GRR2OIiZ"><img src="http://feeds.feedburner.com/~f/vikiworks?i=GRR2OIiZ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=yqmpTnDG"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=jlOFpKjF"><img src="http://feeds.feedburner.com/~f/vikiworks?i=jlOFpKjF" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=ph65XeS3"><img src="http://feeds.feedburner.com/~f/vikiworks?i=ph65XeS3" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/Q-PPGs2dccs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SPAN Your First Letter</title>
		<link>http://vikiworks.com/2008/04/11/span-your-first-letter/</link>
		<comments>http://vikiworks.com/2008/04/11/span-your-first-letter/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 11:12:32 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Xhtml+CSS]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=484</guid>
		<description><![CDATA[The &#60;span&#62; tag is a tag that groupings of inline content within the content of a page. It can apply to a custom style to a piece of text (a single letter/word and short phrase) within a structural markup tag.
Here is a tiny sample will show how to decorate the first letter of text, make [...]]]></description>
			<content:encoded><![CDATA[<p>The &lt;span&gt; tag is a tag that groupings of inline content within the content of a page. It can apply to a custom style to a piece of text (a single letter/word and short phrase) within a structural markup tag.</p>
<p>Here is a tiny sample will show how to decorate the first letter of text, make it bigger and stand out by simply using &lt;span&gt; tag. First lets take a look at the following:</p>
<p><span class="capi">L</span><span style="color: #333333;">orem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam.Mauris semper, velit semper laoreet dictum.</span></p>
<p>The first letter has defined with large size and improved readlibility. Lets see how easy to make it work, add the following codes to your CSS style file:</p>
<p><code>.bigletter {color:#333;display:inline;float:left;font:3.6em Georgia,arial;text-transform:uppercase;margin:0.07em 0.14em 0 0;}</code></p>
<p>Now use &lt;span&gt; tag to define the text to make it work, the markup as following:</p>
<p><code>&lt;span class="bigletter"&gt;L&lt;/span&gt;orem ipsum dolor sit... ...</code></p>
<p>It&#8217;s done, pretty easy. I&#8217;ll keep sharing more tricks down the road.</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2008/05/09/wp-theme-vikiworks-v5-theme/" title="WP Theme: Vikiworks V5 theme (May 9, 2008)">WP Theme: Vikiworks V5 theme</a></li>
	<li><a href="http://vikiworks.com/2007/09/11/wp-theme-resurrection/" title="WP Theme: Resurrection (September 11, 2007)">WP Theme: Resurrection</a></li>
	<li><a href="http://vikiworks.com/2008/08/09/infinity-theme/" title="WP theme: Infinity (August 9, 2008)">WP theme: Infinity</a></li>
	<li><a href="http://vikiworks.com/2009/04/25/wordpress-image-roll/" title="Wordpress Image Roll (April 25, 2009)">Wordpress Image Roll</a></li>
	<li><a href="http://vikiworks.com/2007/05/08/web-app-like-greader-skin/" title="Web app-like gReader skin (May 8, 2007)">Web app-like gReader skin</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2008/07/14/v5-enhanced/" title="V5 Enhanced. (July 14, 2008)">V5 Enhanced.</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/GbaWFzgxbU66q8IerTtSWTeDUTE/0/da"><img src="http://feedads.g.doubleclick.net/~a/GbaWFzgxbU66q8IerTtSWTeDUTE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GbaWFzgxbU66q8IerTtSWTeDUTE/1/da"><img src="http://feedads.g.doubleclick.net/~a/GbaWFzgxbU66q8IerTtSWTeDUTE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=X0GBDYF2"><img src="http://feeds.feedburner.com/~f/vikiworks?i=X0GBDYF2" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=IvEjMYP5"><img src="http://feeds.feedburner.com/~f/vikiworks?i=IvEjMYP5" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=kR2zsWyL"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=jasKSe4B"><img src="http://feeds.feedburner.com/~f/vikiworks?i=jasKSe4B" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=lvBYOouZ"><img src="http://feeds.feedburner.com/~f/vikiworks?i=lvBYOouZ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/BbiqgLZNVCc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/04/11/span-your-first-letter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DSLR lens Icon</title>
		<link>http://vikiworks.com/2008/04/05/dslr-lens-icon/</link>
		<comments>http://vikiworks.com/2008/04/05/dslr-lens-icon/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 07:40:33 +0000</pubDate>
		<dc:creator>yichi</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[freebies]]></category>

		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://vikiworks.com/?p=480</guid>
		<description><![CDATA[Just got my new Nikon 18-200VR lens for my camera this weekend, it looks solid and flexible, supposed to be one of the best traveling lens ever. Personally I&#8217;m a very much Nikon guy&#8230; hey, Nikon, pay me!!

Downloaded:  3782  times.
I have spent a couple of hours to imitate it with Photoshop, now here [...]]]></description>
			<content:encoded><![CDATA[<p>Just got my new <a href="http://www.kenrockwell.com/nikon/18200.htm">Nikon 18-200VR</a> lens for my camera this weekend, it looks solid and flexible, supposed to be one of the best traveling lens ever. Personally I&#8217;m a very much Nikon guy&#8230; hey, Nikon, pay me!!</p>
<p><a href="http://www.vikiworks.com/download-manager.php?id=20"><img style="border-width: 0px" title="Nikon 18-200VR lens" src="http://vikiworks.com/wp-content/uploads/2008/04/18200vr.png" alt="Nikon 18-200VR lens" width="293" height="147" /></a><br />
Downloaded:  3782  times.</p>
<p>I have spent a couple of hours to imitate it with Photoshop, now here is the final icon, pretty cool uh? If you&#8217;re also an amateur or fans, <a href="http://www.vikiworks.com/download-manager.php?id=20">grab it and enjoy</a>&#8230;</p>
<p>Imitation tools:<br />
Adobe Photoshop<br />
Diet coke<br />
A pack of cigarettes&#8230;</p>

	<ul class="st-related-posts">
	<li><a href="http://vikiworks.com/2007/03/09/vista-extra-wallpapers/" title="Vista extra wallpapers (March 9, 2007)">Vista extra wallpapers</a></li>
	<li><a href="http://vikiworks.com/2006/11/07/vikieggin-theme/" title="viki.eggin theme (November 7, 2006)">viki.eggin theme</a></li>
	<li><a href="http://vikiworks.com/2007/10/10/vector-logos-download-for-free/" title="Vector Logos: download for free! (October 10, 2007)">Vector Logos: download for free!</a></li>
	<li><a href="http://vikiworks.com/2007/11/11/try-something-new/" title="Try something new! (November 11, 2007)">Try something new!</a></li>
	<li><a href="http://vikiworks.com/2007/05/26/the-conception-of-new-theme/" title="The conception of new theme (May 26, 2007)">The conception of new theme</a></li>
	<li><a href="http://vikiworks.com/2008/07/30/templateworld-web-design-templates/" title="Templateworld, web design templates (July 30, 2008)">Templateworld, web design templates</a></li>
	<li><a href="http://vikiworks.com/2007/08/06/styled-button-with-sliding-doors/" title="Styled button with sliding doors (August 6, 2007)">Styled button with sliding doors</a></li>
	<li><a href="http://vikiworks.com/2008/04/11/span-your-first-letter/" title="SPAN Your First Letter (April 11, 2008)">SPAN Your First Letter</a></li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/GKVfZhd8CGBCFrwawEUpKN8g0ZI/0/da"><img src="http://feedads.g.doubleclick.net/~a/GKVfZhd8CGBCFrwawEUpKN8g0ZI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GKVfZhd8CGBCFrwawEUpKN8g0ZI/1/da"><img src="http://feedads.g.doubleclick.net/~a/GKVfZhd8CGBCFrwawEUpKN8g0ZI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/vikiworks?a=wwzvTBc1"><img src="http://feeds.feedburner.com/~f/vikiworks?i=wwzvTBc1" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=A2obgGR0"><img src="http://feeds.feedburner.com/~f/vikiworks?i=A2obgGR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=pv86Mfy4"><img src="http://feeds.feedburner.com/~f/vikiworks?d=52" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=qh1lHQdd"><img src="http://feeds.feedburner.com/~f/vikiworks?i=qh1lHQdd" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/vikiworks?a=vTCKwpvE"><img src="http://feeds.feedburner.com/~f/vikiworks?i=vTCKwpvE" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/vikiworks/~4/5RVefaYL99w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vikiworks.com/2008/04/05/dslr-lens-icon/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
