<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Doing &#38; Done &#187; example</title>
	<atom:link href="http://doing.liduan.com/tag/example/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Tue, 03 Aug 2010 04:11:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>php upload file, File input (or “upload”&#8230;</title>
		<link>http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/</link>
		<comments>http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:56:30 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/</guid>
		<description><![CDATA[php upload file, File input (or “upload”) in HTML forms, Uploading multiple files, PHP &#8211; File Upload]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quackit.com/php/tutorial/php_upload_file.cfm">php upload file</a>, <a href="http://www.cs.tut.fi/~jkorpela/forms/file.html">File input (or “upload”) in HTML forms</a>, <a href="http://us2.php.net/manual/en/features.file-upload.multiple.php">Uploading multiple files</a>, <a href="http://www.tizag.com/phpT/fileupload.php">PHP &#8211; File Upload</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/07/23/php-upload-file-file-input-or-%e2%80%9cupload%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 good topic about mozilla extension dev&#8230;</title>
		<link>http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/</link>
		<comments>http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 13:06:34 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[firefox extension]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/</guid>
		<description><![CDATA[3 good topic about mozilla extension development. 
Getting started with extension development
Building a Thunderbird extension
How to develop a Firefox extension]]></description>
			<content:encoded><![CDATA[<p>3 good topic about mozilla extension development. </p>
<p><a title='Getting started with extension development' href='http://kb.mozillazine.org/Getting_started_with_extension_development'>Getting started with extension development</a></p>
<p><a title='Building a Thunderbird extension' href='https://developer.mozilla.org/en/Building_a_Thunderbird_extension'>Building a Thunderbird extension</a></p>
<p><a title='How to develop a Firefox extension' href='http://robertnyman.com/2009/01/24/how-to-develop-a-firefox-extension/'>How to develop a Firefox extension</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/07/16/3-good-topic-about-mozilla-extension-dev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>format &#8216;12345&#8242; to &#8216;12,345&#8242;  javasc &#8230;</title>
		<link>http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/</link>
		<comments>http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 10:55:16 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/</guid>
		<description><![CDATA[format &#8216;12345&#8242; to &#8216;12,345&#8242;
javascript:
string.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, function(s){return s+","})

ruby:
string.gsub(/(\d)(?=(\d\d\d)+(?!\d))/) { &#124;match&#124; match + ',' }

DecimalFormat class also can be used.]]></description>
			<content:encoded><![CDATA[<p>format &#8216;12345&#8242; to &#8216;12,345&#8242;</p>
<p>javascript:<br />
<code>string.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, function(s){return s+","})<br />
</code></p>
<p>ruby:<br />
<code>string.gsub(/(\d)(?=(\d\d\d)+(?!\d))/) { |match| match + ',' }<br />
</code></p>
<p>DecimalFormat class also can be used.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/07/01/format-12345-to-12345javasc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some sources about silverlight 3D progra &#8230;</title>
		<link>http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/</link>
		<comments>http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/#comments</comments>
		<pubDate>Tue, 19 May 2009 17:33:08 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/</guid>
		<description><![CDATA[some sources about silverlight 3D programming:
Flash 10 vs Silverlight 3: Perspective 3D
Silverlight 3D demo
Silverlight 3 – Perspective 3d Transforms
Getting Silverlight to Go 3D
3D Textured Silverlight and Silverlight 3D Engine
Perspective 3D in Silverlight 3
Flash vs Silverlight: 3D Image Space]]></description>
			<content:encoded><![CDATA[<p>some sources about silverlight 3D programming:</p>
<h2><a title="Permanent Link to Flash 10 vs Silverlight 3: Perspective 3D" rel="bookmark" href="http://www.shinedraw.com/3d-illusion/flash-10-vs-silverlight-3-perspective-3d/">Flash 10 vs Silverlight 3: Perspective 3D</a></h2>
<h2><a title="Silverlight 3D demo " href="http://metalinkltd.com/?p=114" target="_blank">Silverlight 3D demo</a></h2>
<h5 class="posthead pageTitle"><a title="Silverlight 3 – Perspective 3d Transforms " href="http://community.irritatedvowel.com/blogs/pete_browns_blog/archive/2009/03/18/Silverlight-3-_1320_-Perspective-3d-Transforms-_1320_-PlaneProjection.aspx" target="_blank">Silverlight 3 – Perspective 3d Transforms</a></h5>
<h2><a id="viewpost.ascx_TitleUrl" href="http://franksworld.com/blog/archive/2008/07/30/11092.aspx">Getting Silverlight to Go 3D</a></h2>
<h2><a title="Permanent Link: 3D Textured Silverlight and Silverlight 3D Engine" rel="bookmark" href="http://drawlogic.com/2007/07/15/3d-textured-silverlight/">3D Textured Silverlight and Silverlight 3D Engine</a></h2>
<h1 id="ctl00_cphMiddle_cphSubHeader_hdrItem_h1Title" class="title"><a title="Perspective 3D in Silverlight 3" href="http://www.silverlightshow.net/items/Perspective-3D-in-Silverlight-3.aspx" target="_blank">Perspective 3D in Silverlight 3</a></h1>
<h2><a title="Permanent Link to Flash vs Silverlight: 3D Image Space" rel="bookmark" href="http://www.shinedraw.com/3d-illusion/flash-vs-silverlight-3d-image-space/">Flash vs Silverlight: 3D Image Space</a></h2>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/05/19/some-sources-about-silverlight-3d-progra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using python get friend timeline in twit &#8230;</title>
		<link>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/</link>
		<comments>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/#comments</comments>
		<pubDate>Fri, 01 May 2009 20:53:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/</guid>
		<description><![CDATA[using python get friend timeline in twitter. following tools should be used:
python-twitter
python-simplejson
first install python-simplejson, if in ubuntu, just using command as follows
$apt-get install python-simplejson
then, downloading python-twitter , unpackage it. then using command
  $ python setup.py build
  $ python setup.py install
then, open python.
&#62;&#62;&#62; import twitter
&#62;&#62;&#62; api = twitter.Api(&#8220;username&#8221;, &#8220;passworld&#8221;)
&#62;&#62;&#62; posts = api.GetFriendsTimeline(&#8216;username&#8217;)
&#62;&#62;&#62; print [post.text in post [...]]]></description>
			<content:encoded><![CDATA[<p>using python get friend timeline in twitter. following tools should be used:</p>
<p><a title="python-twitter" href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a></p>
<p>python-simplejson</p>
<p>first install python-simplejson, if in ubuntu, just using command as follows</p>
<p>$apt-get install python-simplejson</p>
<p>then, downloading <a title="python-twitter" href="http://code.google.com/p/python-twitter/" target="_blank">python-twitter</a> , unpackage it. then using command</p>
<pre><span class="pln">  $ python setup</span><span class="pun">.</span><span class="pln">py build
  $ python setup</span><span class="pun">.</span><span class="pln">py install</span></pre>
<p>then, open python.</p>
<p>&gt;&gt;&gt; import twitter</p>
<p>&gt;&gt;&gt; api = twitter.Api(&#8220;username&#8221;, &#8220;passworld&#8221;)</p>
<p>&gt;&gt;&gt; posts = api.GetFriendsTimeline(&#8216;username&#8217;)</p>
<p>&gt;&gt;&gt; print [post.text in post as posts ];</p>
<p>for the file, the script should be liked:<br />
<code><br />
import twitter<br />
class mytwitter():</p>
<p>def __init__(self):<br />
  self._config = None</p>
<p>def main():<br />
  api = twitter.Api('username', 'passworld')<br />
  posts = api.GetFriendsTimeline('username')<br />
  for post in posts:<br />
    print post.text.encode('utf-8')</p>
<p>if __name__ == "__main__":<br />
  main()<br />
</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/05/01/using-python-get-friend-timeline-in-twit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a popual ruby on rails, part1 and part2.</title>
		<link>http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/</link>
		<comments>http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 20:53:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/</guid>
		<description><![CDATA[a popual ruby on rails, part1 and part2. there is other tutorial based on rails 2.1. basicly, grammer has some changes between 2.0, 2.1 and 2.2.]]></description>
			<content:encoded><![CDATA[<p>a popual ruby on rails, <a title="a popual ruby on rails" href="http://www.onlamp.com/lpt/a/5546" target="_blank">part1</a> and <a title="a popual ruby on rails" href="http://www.onlamp.com/lpt/a/5641" target="_blank">part2</a>. there is <a title="ruby on rails 2.1 tutorial" href="http://www.tutorialspoint.com/ruby-on-rails-2.1/index.htm" target="_blank">other tutorial based on rails 2.1</a>. basicly, grammer has some changes between 2.0, 2.1 and 2.2.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/06/a-popual-ruby-on-rails-part1-and-part2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>very simple CMS system build by php. it  &#8230;</title>
		<link>http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/</link>
		<comments>http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 14:32:38 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/</guid>
		<description><![CDATA[very simple CMS system build by php. it provides support for mysql database, but not support template.]]></description>
			<content:encoded><![CDATA[<p><a title="very simple CMS system" href="http://css-tricks.com/php-for-beginners-building-your-first-simple-cms/" target="_blank">very simple CMS system</a> build by php. it provides support for mysql database, but not support template.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/06/very-simple-cms-system-build-by-php-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rewrite mod tutorial with some examples.</title>
		<link>http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/</link>
		<comments>http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 11:45:56 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/</guid>
		<description><![CDATA[rewrite mod tutorial with some examples.]]></description>
			<content:encoded><![CDATA[<p><a href="http://u21.me/21" target="_blank">rewrite mod tutorial with some examples</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/05/rewrite-mod-tutorial-with-some-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using c read each char and covert to lon &#8230;</title>
		<link>http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/</link>
		<comments>http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 17:12:20 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/</guid>
		<description><![CDATA[using c read each char and covert to long int:
while(*buffer != &#8216;\n&#8217;);
{
read(fileName, buffer, 1);
printf(&#8221; Byte: %s&#8221;, buffer);
}
good way.]]></description>
			<content:encoded><![CDATA[<p>using <a href="http://www.experts-exchange.com/Programming/Languages/C/Q_20769218.html">c read each char and covert to long int</a>:</p>
<p>while(*buffer != &#8216;\n&#8217;);<br />
{<br />
read(fileName, buffer, 1);<br />
printf(&#8221; Byte: %s&#8221;, buffer);<br />
}</p>
<p>good way.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/02/using-c-read-each-char-and-covert-to-lon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facebook and adobe will partner to build &#8230;</title>
		<link>http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/</link>
		<comments>http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 17:37:08 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/</guid>
		<description><![CDATA[facebook and adobe will partner to build a new development tools. it will have more helpful in the facebook application development. official adobe development website provides a overview for new flash facebook development platform(include video).
currently, adobe official facebook api client is version 3. it is avaliable at google code, include doc and example.]]></description>
			<content:encoded><![CDATA[<p><a title="facebook and adobe will partner to build a new development tools" href="http://www.networkworld.com/news/2009/033109-adobe-facebook-partner-to-create.html" target="_self">facebook and adobe will partner to build a new development tools</a>. it will have more helpful in the facebook application development. official adobe development website provides <a title="a overview for new flash facebook development platform" href="http://www.adobe.com/devnet/facebook/" target="_blank">a overview for new flash facebook development platform</a>(include video).</p>
<p>currently, adobe official facebook api client is version 3. <a title="adobe official facebook api client" href="http://code.google.com/p/facebook-actionscript-api/" target="_blank">it is avaliable at google code</a>, include <a title="adobe official facebook api client document" href="http://facebook-actionscript-api.googlecode.com/svn/release/current/docs/index.html">doc </a>and <a title="adobe official facebook api client program example" href="http://code.google.com/p/facebook-actionscript-api/downloads/list" target="_blank">example</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/31/facebook-and-adobe-will-partner-to-build/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>degrafa is a graph library based on the  &#8230;</title>
		<link>http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/</link>
		<comments>http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:42:35 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[degrafa]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flex 2]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/</guid>
		<description><![CDATA[degrafa is a graph library based on the flex. it is compatible with flex 2 and 3. it also support other graph library, example of papervision3D(3D graph and animation library). there is a example that visual map based on the degrafa, pv3D and yahoo map.]]></description>
			<content:encoded><![CDATA[<p><a title="degrafa" href="http://www.degrafa.org/index.html">degrafa </a>is a graph library based on the flex. it is compatible with flex 2 and 3. it also support other graph library, example of papervision3D(3D graph and animation library). <a href="http://www.pathf.com/blogs/2008/08/papervision3d-20-great-white-in-flex-3-part-ii-iii-combined-with-source-code/">there is a example</a> that visual map based on the degrafa, pv3D and yahoo map.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/27/degrafa-is-a-graph-library-based-on-the/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some effect of the vbox in flex 3.
Clip &#8230;</title>
		<link>http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/</link>
		<comments>http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:16:25 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vbox]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/</guid>
		<description><![CDATA[some effect of the vbox in flex 3.
Clipping a Flex container’s content using the clipContent property
Changing a VBox container’s background size in Flex
Changing a VBox container’s background alpha in Flex
Changing a VBox container’s background image attachment in Flex
Setting the vertical gap between items in a Flex VBox container
Setting a Flex container’s vertical scroll policy
Toggling a [...]]]></description>
			<content:encoded><![CDATA[<p>some effect of the vbox in flex 3.</p>
<h3 class="entry-title"><a title="Permanent Link to &quot;Clipping a Flex container's content using the clipContent property&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/02/02/clipping-a-flex-containers-content-using-the-clipcontent-property/">Clipping a Flex container’s content using the clipContent property</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Changing a VBox container's background size in Flex&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/05/changing-a-vbox-containers-background-size-in-flex/">Changing a VBox container’s background size in Flex</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Changing a VBox container's background alpha in Flex&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/05/changing-a-vbox-containers-background-alpha-in-flex/">Changing a VBox container’s background alpha in Flex</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Changing a VBox container's background image attachment in Flex&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/05/changing-a-vbox-containers-background-image-attachment-in-flex/">Changing a VBox container’s background image attachment in Flex</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Setting the vertical gap between items in a Flex VBox container&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/03/setting-the-vertical-gap-between-items-in-a-flex-vbox-container/">Setting the vertical gap between items in a Flex VBox container</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Setting a Flex container's vertical scroll policy&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/11/09/setting-a-flex-containers-vertical-scroll-policy/">Setting a Flex container’s vertical scroll policy</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Toggling a Flex container's visibility using states&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/08/24/toggling-a-flex-containers-visibility-using-states/">Toggling a Flex container’s visibility using states</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Toggling a Flex container's visibility&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/08/23/toggling-a-flex-containers-visibility/">Toggling a Flex container’s visibility</a></h3>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/27/some-effect-of-the-vbox-in-flex-3clip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C / ANSI-C examples (example source code &#8230;</title>
		<link>http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/</link>
		<comments>http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 11:47:11 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/</guid>
		<description><![CDATA[C / ANSI-C examples (example source code) Organized by topic]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.java2s.com/Code/C/CatalogC.htm">C / ANSI-C examples</a> (example source code) Organized by topic</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/20/c-ansi-c-examples-example-source-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>some sources for developing web server b &#8230;</title>
		<link>http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/</link>
		<comments>http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 14:51:39 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[http server]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/</guid>
		<description><![CDATA[some sources for developing web server by c.
1. a simple httpd called tiny httpd.
2. &#8220;Illustrated Guide to HTTP&#8221; is a book for devemoping web server.]]></description>
			<content:encoded><![CDATA[<p>some sources for <a title="developing web server by c" href="http://stackoverflow.com/questions/176409/how-to-build-a-simple-http-server-in-c" target="_blank">developing web server by c</a>.</p>
<p>1. a simple httpd called <a title="tiny httpd" href="http://tinyhttpd.sourceforge.net/">tiny httpd</a>.</p>
<p>2. &#8220;<a title="Illustrated Guide to HTTP" href="http://www.manning.com/hethmon/" target="_blank">Illustrated Guide to HTTP</a>&#8221; is a book for devemoping web server.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/14/some-sources-for-developing-web-server-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>somethings can be using in showing stren &#8230;</title>
		<link>http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/</link>
		<comments>http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 13:03:24 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[spring graph]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/</guid>
		<description><![CDATA[somethings can be using in showing strength in the flex spring graph.
1. show different colour for the node of spring graph.
2. show different edge of each node of the spring graph.
3. show different size of nodes in the spring graph.]]></description>
			<content:encoded><![CDATA[<p>somethings can be using in showing strength in the flex spring graph.</p>
<p>1. <a title="show different colour" href="http://www.cs.vu.nl/~eliens/media/@mx-graph-philosopher.html" target="_blank">show different colour</a> for the node of spring graph.</p>
<p>2. <a title="show different edge" href="http://www.12noobs.com/2008/04/18/dynamic-graph-visualization-in-flex-ruby-and-amazon-sqs-part-1-flex/" target="_blank">show different edge</a> of each node of the spring graph.</p>
<p>3. <a title="show different size of nodes" href="http://www.rubenswieringa.com/blog/interactive-mindmap">show different size of nodes</a> in the spring graph.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/14/somethings-can-be-using-in-showing-stren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://doing.liduan.com/2009/03/10/294/</link>
		<comments>http://doing.liduan.com/2009/03/10/294/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 13:52:20 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/10/294/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/JL25MjpEK30&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JL25MjpEK30&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/10/294/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typical Java Commands. using command jav &#8230;</title>
		<link>http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/</link>
		<comments>http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 12:46:52 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/</guid>
		<description><![CDATA[Typical Java Commands. using command java javac and jar to do java development work.]]></description>
			<content:encoded><![CDATA[<p><a title="Typical Java Commands. using command java javac and jar to do java development work." href="http://www.vipan.com/htdocs/javahelp.html" target="_blank">Typical Java Commands</a>. using command java javac and jar to do java development work.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/10/typical-java-commands-using-command-jav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The mx.controls package contains the Fle &#8230;</title>
		<link>http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/</link>
		<comments>http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 12:38:05 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/</guid>
		<description><![CDATA[The mx.controls package contains the Flex user-interface controls, e.g. textinput, label and textarea]]></description>
			<content:encoded><![CDATA[<p>The mx.controls package contains the <a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/package-detail.html" target="_blank">Flex user-interface controls</a>, e.g. textinput, label and textarea</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/09/the-mxcontrols-package-contains-the-fle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flex app communicate with java via socke &#8230;</title>
		<link>http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/</link>
		<comments>http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 12:35:11 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[socket server]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/</guid>
		<description><![CDATA[flex app communicate with java via socket server. actionscript/flex program can send socket to a server. that means flex can communicate with other language or program without xml.]]></description>
			<content:encoded><![CDATA[<p><a title="Building a Flash socket server with Java in five minutes" href="http://giantflyingsaucer.com/blog/?p=205" target="_blank">flex app communicate with java via socket server</a>. actionscript/flex program can send socket to a server. that means flex can communicate with other language or program without xml.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/09/flex-app-communicate-with-java-via-socke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some good effect example for hide and sh &#8230;</title>
		<link>http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/</link>
		<comments>http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 14:13:53 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/</guid>
		<description><![CDATA[some good effect example for hide and show panel of flex 3. simple code and tutorial.]]></description>
			<content:encoded><![CDATA[<p><a title="some good effect example for hide and show panel" href="http://blog.flexexamples.com/tag/hideeffect/" target="_blank">some good effect example for hide and show panel</a> of flex 3. simple code and tutorial.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/07/some-good-effect-example-for-hide-and-sh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using rdesktop can remote control window &#8230;</title>
		<link>http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/</link>
		<comments>http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 14:55:28 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[rdesktop]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/</guid>
		<description><![CDATA[using rdesktop can remote control windows computer by using unix.example:
$rdesktop -f &#60;ip address&#62;
-f is mean full screen.]]></description>
			<content:encoded><![CDATA[<p>using rdesktop can remote control windows computer by using unix.example:</p>
<p>$rdesktop -f &lt;ip address&gt;</p>
<p>-f is mean full screen.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/06/using-rdesktop-can-remote-control-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http://www.adobe.com/devnet/flex/samples &#8230;</title>
		<link>http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/</link>
		<comments>http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 14:35:54 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/</guid>
		<description><![CDATA[http://www.adobe.com/devnet/flex/samples/fig_panzoom/  simple zoom in/out map by flex.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.adobe.com/devnet/flex/samples/fig_panzoom/ " rel="nofollow">http://www.adobe.com/devnet/flex/samples/fig_panzoom/ </a> simple zoom in/out map by flex.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/05/httpwwwadobecomdevnetflexsamples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google maps provide api for flash client &#8230;</title>
		<link>http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/</link>
		<comments>http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:50:01 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/</guid>
		<description><![CDATA[google maps provide api for flash client. a tutorial for using google maps api by flex sdk.  other one tutorial for installing and using google maps in flex.]]></description>
			<content:encoded><![CDATA[<p><a title="google maps provide api for flash client" href="http://code.google.com/apis/maps/documentation/flash/">google maps provide api for flash client</a>. a tutorial for <a title="http://code.google.com/apis/maps/documentation/flash/" href="http://code.google.com/apis/maps/documentation/flash/tutorial-flex.html" target="_blank">using google maps api by flex sdk</a>.  other one tutorial for <a title="installing and using google maps in flex" href="http://scriptplayground.com/tutorials/as/Installing-and-Using-Google-Maps-in-Flex/">installing and using google maps in flex</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/04/google-maps-provide-api-for-flash-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make a visual earth based on the google  &#8230;</title>
		<link>http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/</link>
		<comments>http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:43:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[google earth]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/</guid>
		<description><![CDATA[make a visual earth based on the google earth by flex. it only supports ie, firefox and chrome. becouse it require google earth plug-in. resources.]]></description>
			<content:encoded><![CDATA[<p><a title="make a visual earth based on the google earth by flex" href="http://coolestflex.blogspot.com/2008/06/google-earth-with-flex-ie-firefox-on.html" target="_blank">make a visual earth based on the google earth by flex</a>. it only supports ie, firefox and chrome. becouse it require google earth plug-in. <a href="http://cynergysystems.com/blogs/page/andrewtrice?entry=google_eath_flex_source_code" target="_blank">resources</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/03/04/make-a-visual-earth-based-on-the-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a simple tutorial for kde4 widget develo &#8230;</title>
		<link>http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/</link>
		<comments>http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 13:54:23 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[kde widget]]></category>
		<category><![CDATA[kde4]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/</guid>
		<description><![CDATA[a simple tutorial for kde4 widget development.]]></description>
			<content:encoded><![CDATA[<p>a <a title="simple tutorial" href="http://techbase.kde.org/Development/Tutorials/Plasma/GettingStarted" target="_blank">simple tutorial</a> for kde4 widget development.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/27/a-simple-tutorial-for-kde4-widget-develo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some good tutorial for flex list:
Makin &#8230;</title>
		<link>http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/</link>
		<comments>http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 19:20:20 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/</guid>
		<description><![CDATA[some good tutorial for flex list:
Making a horizontal list with clickable images as members
Flex &#8211; overriding scrollToIndex in HorizontalList to animate scrolling
Setting alternating colors on a Flex HorizontalList control
Creating a simple image gallery with the Flex HorizontalList control
The TileList control displays a number of items laid out in tiles.]]></description>
			<content:encoded><![CDATA[<p>some good tutorial for flex list:</p>
<h2><a href="http://stackoverflow.com/questions/425191/making-a-horizontal-list-with-clickable-images-as-members">Making a horizontal list with clickable images as members</a></h2>
<h1><a href="http://blog.appdivision.com/2009/02/24/flex-overriding-scrolltoindex-in-horizontallist-to-animate-scrolling/">Flex &#8211; overriding scrollToIndex in HorizontalList to animate scrolling</a></h1>
<h3 class="entry-title"><a title="Permanent Link to &quot;Setting alternating colors on a Flex HorizontalList control&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/01/04/setting-alternating-colors-on-a-flex-horizontallist-control/">Setting alternating colors on a Flex HorizontalList control</a></h3>
<h3 class="entry-title"><a title="Permanent Link to &quot;Creating a simple image gallery with the Flex HorizontalList control&quot;" rel="bookmark" href="http://blog.flexexamples.com/2008/02/15/creating-a-simple-image-gallery-with-the-flex-horizontallist-control/">Creating a simple image gallery with the Flex HorizontalList control</a></h3>
<p><a title="The TileList control displays a number of items laid out in tiles." href="http://learn.adobe.com/wiki/display/Flex/TileList" target="_blank">The TileList control displays a number of items laid out in tiles.</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/25/some-good-tutorial-for-flex-listmakin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some flex client for online map api is h &#8230;</title>
		<link>http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/</link>
		<comments>http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 19:36:48 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graphic location]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/</guid>
		<description><![CDATA[some flex client for online map api is helpful for geographic locations application.]]></description>
			<content:encoded><![CDATA[<p><a title="some flex client for online map api" href="http://coolestflex.blogspot.com/2008/06/geocode-with-papervision3d-and-adobe.html" target="_blank">some flex client for online map api</a> is helpful for geographic locations application.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/17/some-flex-client-for-online-map-api-is-h/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I found this website using very nice 3d  &#8230;</title>
		<link>http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/</link>
		<comments>http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 19:16:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/</guid>
		<description><![CDATA[I found this website using very nice 3d visualization effect. but it can&#8217;t provice the sources. from here.]]></description>
			<content:encoded><![CDATA[<p>I found <a href="http://wk.com/#/search/client/Electronic%20Arts/">this website</a> using very nice 3d visualization effect. but it can&#8217;t provice the sources. <a href="http://www.actionscript.org/forums/showthread.php3?t=191387">from here</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/17/i-found-this-website-using-very-nice-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using flex sdk to build a swc file by an &#8230;</title>
		<link>http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/</link>
		<comments>http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 20:12:17 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[swc]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/</guid>
		<description><![CDATA[using flex sdk to build a swc file by ant.]]></description>
			<content:encoded><![CDATA[<p><a title="using flex sdk to build a swc file by ant" href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&amp;productId=2&amp;postId=11309">using flex sdk to build a swc file by ant</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/16/using-flex-sdk-to-build-a-swc-file-by-an/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>simple start 3D by papervision3D engine, &#8230;</title>
		<link>http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/</link>
		<comments>http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 14:57:36 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[papervision3D]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/</guid>
		<description><![CDATA[simple start 3D by papervision3D engine, there is a tutorial for it. ]]></description>
			<content:encoded><![CDATA[<p><a title="simple start 3D by papervision3D engine, there is a tutorial for it. " href="http://papervision2.com/tutorial-list/" target="_blank">simple start 3D by papervision3D engine, there is a tutorial for it. </a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/16/simple-start-3d-by-papervision3d-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some resources about papervision3D:

	 &#8230;</title>
		<link>http://doing.liduan.com/2009/02/13/some-resources-about-papervision3d/</link>
		<comments>http://doing.liduan.com/2009/02/13/some-resources-about-papervision3d/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 13:42:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[papervision3D]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/13/some-resources-about-papervision3d/</guid>
		<description><![CDATA[some resources about papervision3D:


23 Papervision3D Primitives (17 new ones)


Getting Started with Papervision GW

flex 3 cook book provide very good example for papervision programming.
Geocoding,  work with yahoo map, dome.

Papervision3d Tutorials in Flex 3

]]></description>
			<content:encoded><![CDATA[<p>some resources about papervision3D:</p>
<ol>
<li>
<h2><a title="Permalink for : 23 Papervision3D Primitives (17 new ones)" href="http://professionalpapervision.wordpress.com/2009/02/11/23-papervision3d-primitives-17-new-ones/">23 Papervision3D Primitives (17 new ones)</a></h2>
</li>
<li>
<h2><a title="Permalink for : Getting Started with Papervision GW" href="http://algorithmist.wordpress.com/2008/08/21/getting-started-with-papervision-gw/">Getting Started with Papervision GW</a></h2>
</li>
<li><a title="flex 3 cook book" href="http://code.google.com/p/flex3cookbook1/">flex 3 cook book</a> provide very good example for papervision programming.</li>
<li><a title="geocoding" href="http://osflash.org/pipermail/papervision3d_osflash.org/2008-June/022834.html" target="_blank">Geocoding</a>,  work with yahoo map, <a title="Geocoding dome" href="http://nkuflc.org/Geocoding/">dome</a>.</li>
<li>
<h2><a title="Permanent Link to Papervision3d Tutorials in Flex 3" rel="bookmark" href="http://www.flexhacks.org/wordpress/?p=50">Papervision3d Tutorials in Flex 3</a></h2>
</li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/13/some-resources-about-papervision3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>there is provides other flex facebook ap &#8230;</title>
		<link>http://doing.liduan.com/2009/01/28/there-is-provides-other-flex-facebook-ap/</link>
		<comments>http://doing.liduan.com/2009/01/28/there-is-provides-other-flex-facebook-ap/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 20:06:02 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[facebook app]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/28/there-is-provides-other-flex-facebook-ap/</guid>
		<description><![CDATA[there is provides other flex facebook application example and code, but it is desktop application.]]></description>
			<content:encoded><![CDATA[<p>there is provides other <a title="flex facebook application example and code" href="http://hybridhacking.com/tutorials/building-facebook-applications-with-flex" target="_blank">flex facebook application example and code</a>, but it is desktop application.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/28/there-is-provides-other-flex-facebook-ap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>non-official actionscript 3 facebook api &#8230;</title>
		<link>http://doing.liduan.com/2009/01/28/non-official-actionscript-3-facebook-api/</link>
		<comments>http://doing.liduan.com/2009/01/28/non-official-actionscript-3-facebook-api/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 18:22:25 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[facebook app]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/28/non-official-actionscript-3-facebook-api/</guid>
		<description><![CDATA[non-official actionscript 3 facebook api can be download at google code. there is a HelloWorld example facebook example, but I can&#8217;t start it. And, there is a tutuorial for createing a facebook application by actionsctipt 3 api.]]></description>
			<content:encoded><![CDATA[<p>non-official actionscript 3 facebook api can be download at <a title="actionsctipt 3 facebook " href="http://code.google.com/p/facebook-actionscript-api/">google code</a>. there is a HelloWorld example facebook example, but I can&#8217;t start it. And, there is a tutuorial for <a title="createing a facebook application by actionsctipt 3 api" href="http://pbking.com/blog/?p=21" target="_blank">createing a facebook application by actionsctipt 3 api</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/28/non-official-actionscript-3-facebook-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>papervision3D is based on flex 3, it als &#8230;</title>
		<link>http://doing.liduan.com/2009/01/26/papervision3d-is-based-on-flex-3-it-als/</link>
		<comments>http://doing.liduan.com/2009/01/26/papervision3d-is-based-on-flex-3-it-als/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 18:54:40 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/26/papervision3d-is-based-on-flex-3-it-als/</guid>
		<description><![CDATA[papervision3D is based on flex 3, it also can integrate with flex3 mxml format. see here an example. other example is use to enable papervistion 3D effect for flex. it provide sources downlaod.]]></description>
			<content:encoded><![CDATA[<p>papervision3D is based on flex 3, it also can integrate with flex3 mxml format. see <a title="Papervision3D integration in a project MXML" href="http://www.flex-info.fr/en/integration-de-papervision3d-dans-un-projet-mxml/20080216/" target="_blank">here </a>an example. other example is use to <a title="enable papervistion 3D effect for flex" href="http://www.tink.ws/blog/papervision3d-effects-for-flex-source/" target="_blank">enable papervistion 3D effect for flex</a>. it provide <a title="sources download" href="http://liquidnight.de/2008/06/10/papervision3d-effect-classes-for-great-white/" target="_blank">sources downlaod</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/26/papervision3d-is-based-on-flex-3-it-als/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>papervision 3D is a realtime flash 3D en &#8230;</title>
		<link>http://doing.liduan.com/2009/01/24/papervision-3d-is-a-realtime-flash-3d-en/</link>
		<comments>http://doing.liduan.com/2009/01/24/papervision-3d-is-a-realtime-flash-3d-en/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 19:43:47 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flex 2]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/24/papervision-3d-is-a-realtime-flash-3d-en/</guid>
		<description><![CDATA[papervision 3D is a realtime flash 3D engine, the most import is it support flex 2. there are two examples for demo. other 3D form example can be found at here.]]></description>
			<content:encoded><![CDATA[<p><a title="papervision 3D is a realtime flash 3D engine" href="http://code.google.com/p/papervision3d/" target="_blank">papervision 3D is a realtime flash 3D engine</a>, the most import is it support flex 2. there are <a title="2 example for papervistion 3D" href="http://www.unitzeroone.com/blog/2006/12/12/papervision-3dflex-2-example-flex-makes-its-first-pv3d-steps/" target="_blank">two examples</a> for demo. other 3D form example can be found at <a title="3D form example" href="http://www.dgrigg.com/post.cfm/04/19/2007/Source-code-for-3d-flex-form">here</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/24/papervision-3d-is-a-realtime-flash-3d-en/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flex 4 support two new 3D model, Matrix3 &#8230;</title>
		<link>http://doing.liduan.com/2009/01/24/flex-4-support-two-new-3d-model-matrix3/</link>
		<comments>http://doing.liduan.com/2009/01/24/flex-4-support-two-new-3d-model-matrix3/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 14:40:53 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flex 4]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/24/flex-4-support-two-new-3d-model-matrix3/</guid>
		<description><![CDATA[flex 4(Gumbo) support two new 3D model, Matrix3D and FxRotate3D. but they need to be supported by flash player 10.]]></description>
			<content:encoded><![CDATA[<p>flex 4(Gumbo) support two new 3D model, <a title="Matrix 3D" href="http://polygeek.com/1508_flex_flash-10-3d-examples-of-rotating-components" target="_blank">Matrix3D</a> and <a title="FxRotate 3D in flex 4" href="http://blog.flexexamples.com/2008/10/25/incrementally-3d-rotating-objects-in-flex-using-the-fxrotate3d-in-flex/">FxRotate3D</a>. but they need to be supported by flash player 10.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/24/flex-4-support-two-new-3d-model-matrix3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>swc file is an archive for flex or actio &#8230;</title>
		<link>http://doing.liduan.com/2009/01/23/swc-file-is-an-archive-for-flex-or-actio/</link>
		<comments>http://doing.liduan.com/2009/01/23/swc-file-is-an-archive-for-flex-or-actio/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 19:44:18 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/23/swc-file-is-an-archive-for-flex-or-actio/</guid>
		<description><![CDATA[swc file is an archive for flex or actionscript components and other assets. using one or more swc files in the flex project can by following command:
mxmlc -library-path+=path\SwcFileName_1.swc,path\SwcFileName_2.swc FlexAppName.mxml]]></description>
			<content:encoded><![CDATA[<p>swc file is an archive for flex or actionscript components and other assets. using one or more swc files in the flex project can by following command:<br />
<code>mxmlc -library-path+=path\SwcFileName_1.swc,path\SwcFileName_2.swc FlexAppName.mxml</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/23/swc-file-is-an-archive-for-flex-or-actio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using SpringGraph for any flex project:  &#8230;</title>
		<link>http://doing.liduan.com/2009/01/23/using-springgraph-for-any-flex-project/</link>
		<comments>http://doing.liduan.com/2009/01/23/using-springgraph-for-any-flex-project/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 19:39:56 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[spring graph]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/23/using-springgraph-for-any-flex-project/</guid>
		<description><![CDATA[using SpringGraph for any flex project:
SpringGraph is a 2D data visualization API based on the flex 2. I have used flex 3 sdk to demo the example of spring graph.
first of all, a package should be downloaded for using SpringGraph at developer blog. Extracting the package, copy ./SpringGraph/bin/SpringGraph.swc to the directory named simple.
The package provides [...]]]></description>
			<content:encoded><![CDATA[<p>using SpringGraph for any flex project:</p>
<p>SpringGraph is a 2D data visualization API based on the flex 2. I have used flex 3 sdk to demo the example of spring graph.</p>
<p>first of all, a <a title="springgraph packare" href="http://mark-shepherd.com/SpringGraph/download/springgraph.zip" target="_blank">package</a> should be downloaded for using SpringGraph at <a title="spring graph developer blog" href="http://flexed.wordpress.com/2006/11/20/mark-shepard-a-flex-component-for-graph-visualization/" target="_blank">developer blog</a>. Extracting the package, copy <code>./SpringGraph/bin/SpringGraph.swc</code> to the directory named simple.</p>
<p>The package provides five examples for testing SpringGraph. going into simple <strong>SpringGraphDemo</strong>. using command to compile the mxml file, like:<br />
<code>mxmlc -library-path+=../SpringGraph.swc SpringGraphDemo.mxml</code></p>
<p>than using a flash player open SpringGraphDemo.swf. the interface should like <a title="Spring Graph Component Tester" href="http://mark-shepherd.com/SpringGraph/SpringGraphDemo/bin/SpringGraphDemo.html" target="_blank">this example</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/23/using-springgraph-for-any-flex-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kap Lab is a partner of adobe working fo &#8230;</title>
		<link>http://doing.liduan.com/2009/01/23/kap-lab-is-a-partner-of-adobe-working-fo/</link>
		<comments>http://doing.liduan.com/2009/01/23/kap-lab-is-a-partner-of-adobe-working-fo/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 13:03:23 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[spring graph]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/23/kap-lab-is-a-partner-of-adobe-working-fo/</guid>
		<description><![CDATA[Kap Lab is a partner of adobe working for flex application research. the home page of kap lab provides some good examples of data visualization.]]></description>
			<content:encoded><![CDATA[<p>Kap Lab is a partner of adobe working for flex application research. the home page of kap lab provides some <a title="kap lab provides some good example of data visualization." href="http://lab.kapit.fr/display/kaplabhome/Home" target="_blank">good examples</a> of data visualization.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/23/kap-lab-is-a-partner-of-adobe-working-fo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sound wave visualization is main functio &#8230;</title>
		<link>http://doing.liduan.com/2009/01/23/sound-wave-visualization-is-main-functio/</link>
		<comments>http://doing.liduan.com/2009/01/23/sound-wave-visualization-is-main-functio/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:53:10 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[sound wave]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/23/sound-wave-visualization-is-main-functio/</guid>
		<description><![CDATA[sound wave visualization is main function of Visualization Explorer. it is developed by Ben Stucki on the flex 2. try a simple demo.]]></description>
			<content:encoded><![CDATA[<p>sound wave visualization is main function of Visualization Explorer. it is developed by <a title="Ben Stucki's Blog" href="http://blog.benstucki.net/" target="_blank">Ben Stucki</a> on the flex 2. try a <a title="sound wave visualization simple demo" href="http://www.onflex.org/ted/2006/06/flex-components-visualization-explorer.php" target="_blank">simple demo</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/23/sound-wave-visualization-is-main-functio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>public class SpringGraph is supported by &#8230;</title>
		<link>http://doing.liduan.com/2009/01/23/public-class-springgraph-is-supported-by/</link>
		<comments>http://doing.liduan.com/2009/01/23/public-class-springgraph-is-supported-by/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:37:46 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[spring graph]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/23/public-class-springgraph-is-supported-by/</guid>
		<description><![CDATA[public class SpringGraph is supported by flex sdk. it is using for creating 2D spring graph for data visualization. a personal blog provides some examples for class SrpingGraph and its&#8217; subClass Roamer.]]></description>
			<content:encoded><![CDATA[<p>public class <a title="flex api support a public class springgraph" href="http://mark-shepherd.com/SpringGraph/docs/springgraph-asdoc/com/adobe/flex/extras/controls/springgraph/SpringGraph.html">SpringGraph</a> is supported by flex sdk. it is using for creating 2D spring graph for data visualization. a personal blog provides <a title="some example demo for class SrpingGraph and its' subClass Roamer" href="http://mark-shepherd.com/blog/springgraph-flex-component/">some examples</a> for class SrpingGraph and its&#8217; subClass <a title="An extension to SpringGraph that restricts the visible items to a subset of the full graph" href="http://mark-shepherd.com/SpringGraph/docs/springgraph-asdoc/com/adobe/flex/extras/controls/springgraph/Roamer.html" target="_blank">Roamer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/23/public-class-springgraph-is-supported-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternativa is a platform based on flash &#8230;</title>
		<link>http://doing.liduan.com/2009/01/07/alternativa-is-a-platform-based-on-flash/</link>
		<comments>http://doing.liduan.com/2009/01/07/alternativa-is-a-platform-based-on-flash/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 13:28:29 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[Alternativa]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[game]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/07/alternativa-is-a-platform-based-on-flash/</guid>
		<description><![CDATA[Alternativa is a platform based on flash. It provide a good solution for multiuser browser projects. but it is not a opensources project. The whole platform includes three parts:

3D &#8211; Alternativa3D is a 3D actionscript engine.
GUI &#8211; AlternativaGUI provides simple API for building windows based user interface.
core &#8211; AlternativaCore is server system that provides support [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Alternativa is a platform based on flash" href="http://alternativaplatform.com/en/">Alternativa </a>is a platform based on flash. It provide a good solution for multiuser browser projects. but it is not a opensources project. The whole platform includes three parts:</p>
<ul>
<li>3D &#8211; <a title="Alternativa3D is a 3D actionscript engine" href="http://alternativaplatform.com/en/alternativa3d/" target="_self">Alternativa3D </a>is a 3D actionscript engine.</li>
<li>GUI &#8211; <a title="AlternativaGUI provides simple API for building windows based user interface." href="http://alternativaplatform.com/en/alternativagui/" target="_blank">AlternativaGUI </a>provides simple API for building windows based user interface.</li>
<li>core &#8211; <a title="AlternativaCore is server system that provides support for online multiuser media service" href="http://alternativaplatform.com/en/alternativacore/" target="_blank">AlternativaCore </a>is server system that provides support for online multiuser media service.</li>
</ul>
<p>the development <a title="alternativa platform development blog" href="http://blog.alternativaplatform.com/en/" target="_blank">blog </a>and <a title="alternativa platform development documentation" href="http://docs.alternativaplatform.com/dashboard.action" target="_blank">documentation </a>is avaliable. there are some good example demo in the blog.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/07/alternativa-is-a-platform-based-on-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most of images search engine using tradi &#8230;</title>
		<link>http://doing.liduan.com/2008/12/31/most-of-images-search-engine-using-tradi/</link>
		<comments>http://doing.liduan.com/2008/12/31/most-of-images-search-engine-using-tradi/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 14:01:35 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[CBIR]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/31/most-of-images-search-engine-using-tradi/</guid>
		<description><![CDATA[Most of images search engine using traditional and common methods. CBIR &#8211; content based image retrieval is search search images by image&#8217;s intermediate features, such as colour. there are some papers about CBIR. imgSeek is a application based on CBIR. isk-deamon is a standalone server based on CBIR.]]></description>
			<content:encoded><![CDATA[<p>Most of images search engine using <a title="Most of images search engine using traditional and common methods" href="http://en.wikipedia.org/wiki/Image_retrieval">traditional and common methods</a>. CBIR &#8211; <a title="CBIR - content based image retrieval is search search images by image's intermediate features, such as colour." href="http://en.wikipedia.org/wiki/CBIR">content based image retrieval </a>is search <a title="content based image retrieval is search search images by image's intermediate features, such as colour." href="http://cis.jhu.edu/~bruno/intermediate-features.pdf">search images by image&#8217;s intermediate features</a>, such as colour. there are <a title="some papers about CBIR" href="http://infolab.stanford.edu/~wangz/project/imsearch/review/JOUR/">some papers about CBIR</a>. <a title="imgSeek is a application based on CBIR" href="http://www.imgseek.net/index.html">imgSeek</a> is a application based on CBIR. <a title="isk deamon is a standalone server based on CBIR" href="http://server.imgseek.net/">isk-deamon</a> is a standalone server based on CBIR.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/31/most-of-images-search-engine-using-tradi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>writing 30 game scripts by php, part 1,  &#8230;</title>
		<link>http://doing.liduan.com/2008/12/29/writing-30-game-scripts-by-php-part-1/</link>
		<comments>http://doing.liduan.com/2008/12/29/writing-30-game-scripts-by-php-part-1/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 18:00:46 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/29/writing-30-game-scripts-by-php-part-1/</guid>
		<description><![CDATA[writing 30 game scripts by php, part 1, part 2 and part 3. include code demo.]]></description>
			<content:encoded><![CDATA[<p>writing 30 game scripts by php, <a title="writing 30 game scripts by php, part 1 php basic" href="http://www.ibm.com/developerworks/opensource/library/os-php-gamescripts1/">part 1</a>, <a title="writing 30 game scripts by php, part 2 Developing 10 intermediate scripts" href="http://www.ibm.com/developerworks/opensource/library/os-php-gamescripts2/index.html?S_TACT=105AGX44&amp;S_CMP=EDU">part 2</a> and <a title="30 game scripts you can write in PHP, Part 3: Creating 10 advanced scripts" href="http://www.ibm.com/developerworks/opensource/library/os-php-gamescripts3/index.html?S_TACT=105AGX44&amp;S_CMP=EDU">part 3</a>. include <a title="writing 30 game scripts by php code demo" href="http://chaoticneutral.net/3d10/3d10-die-roller.php">code demo</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/29/writing-30-game-scripts-by-php-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create A 3D Product Viewer in Flex 3, si &#8230;</title>
		<link>http://doing.liduan.com/2008/12/23/create-a-3d-product-viewer-in-flex-3-si/</link>
		<comments>http://doing.liduan.com/2008/12/23/create-a-3d-product-viewer-in-flex-3-si/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 13:06:24 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/23/create-a-3d-product-viewer-in-flex-3-si/</guid>
		<description><![CDATA[Create A 3D Product Viewer in Flex 3, simplily&#160; tutorial 3D graph programming by flex.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sitepoint.com/article/create-3d-product-viewer-flex-3/">Create A 3D Product Viewer in Flex 3</a>, simplily&nbsp; tutorial 3D graph programming by flex.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/23/create-a-3d-product-viewer-in-flex-3-si/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tutorials for flex 3D programming, first &#8230;</title>
		<link>http://doing.liduan.com/2008/12/22/tutorials-for-flex-3d-programming-first/</link>
		<comments>http://doing.liduan.com/2008/12/22/tutorials-for-flex-3d-programming-first/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 15:05:15 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/22/tutorials-for-flex-3d-programming-first/</guid>
		<description><![CDATA[tutorials for flex 3D programming, first one is Incrementally 3D rotating objects in Flex using the FxRotate3D in Flex, provide source code online view. second one is Transforming components in 3D with Flash 10/Flex 3.2, also provide code. last one is tutorial for Getting Started with Adobe Flex and Away3D]]></description>
			<content:encoded><![CDATA[<p>tutorials for flex 3D programming, first one is <a title="Incrementally 3D rotating objects in Flex using the FxRotate3D in Flex" href="http://blog.flexexamples.com/2008/10/25/incrementally-3d-rotating-objects-in-flex-using-the-fxrotate3d-in-flex/">Incrementally 3D rotating objects in Flex using the FxRotate3D in Flex<a>, provide <a title="Incrementally 3D rotating objects in Flex using the FxRotate3D in Flex sources code" href="http://blog.flexexamples.com/wp-content/uploads/FxRotate3D_yBy_test/bin/srcview/index.html">source code online view. second one is <a title="Transforming components in 3D with Flash 10/Flex 3.2" href="http://polygeek.com/1508_flex_flash-10-3d-examples-of-rotating-components">Transforming components in 3D with Flash 10/Flex 3.2</a>, also provide <a title="Transforming components in 3D with Flash 10/Flex 3.2 code" href="http://polygeek.com/flex/1508_Flash10_3Dexamples/srcview-regular/index.html">code</a>. last one is <a title="Getting Started with Adobe Flex and Away3D" href="http://blog.paranoidferret.com/index.php/2008/03/28/getting-started-with-adobe-flex-and-away3d/">tutorial for Getting Started with Adobe Flex and Away3D</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/22/tutorials-for-flex-3d-programming-first/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D data visualisation with flex. using a &#8230;</title>
		<link>http://doing.liduan.com/2008/12/22/3d-data-visualisation-with-flex-using-a/</link>
		<comments>http://doing.liduan.com/2008/12/22/3d-data-visualisation-with-flex-using-a/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 14:53:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/22/3d-data-visualisation-with-flex-using-a/</guid>
		<description><![CDATA[3D data visualisation with flex. using a Cone Trees graph.]]></description>
			<content:encoded><![CDATA[<p><a href="http://algorithmist.wordpress.com/2007/10/08/flex-3d-data-visualization-with-papervision/" title="Flex 3D Data Visualisation with Papervision">3D data visualisation with flex</a>. using a <a href="http://www.inf.ethz.ch/personal/lombardo/archives/da/node9.html" title="cone tree graph">Cone Trees graph</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/22/3d-data-visualisation-with-flex-using-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how Flex application can interact with P &#8230;</title>
		<link>http://doing.liduan.com/2008/12/22/how-flex-application-can-interact-with-p/</link>
		<comments>http://doing.liduan.com/2008/12/22/how-flex-application-can-interact-with-p/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 14:48:50 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/22/how-flex-application-can-interact-with-p/</guid>
		<description><![CDATA[how Flex application can interact with PHP on the server-side. include sources code and demo]]></description>
			<content:encoded><![CDATA[<p><a title="how Flex application can interact with PHP on the server-side." href="http://www.flexer.info/2007/11/19/flex-and-php-party-in-the-front-business-in-the-back/">how Flex application can interact with PHP on the server-side. include <a href="http://devzone.zend.com/content/mashuptimes.zip" title="how Flex application can interact with PHP on the server-side sources code">sources code and <a title="how Flex application can interact with PHP on the server-side demo" href="http://dougmccune.com/flex/zomgzrss/">demo</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/22/how-flex-application-can-interact-with-p/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flex/actionscript 3 engine for 3D: 1. s &#8230;</title>
		<link>http://doing.liduan.com/2008/12/22/flexactionscript-3-engine-for-3d1-s/</link>
		<comments>http://doing.liduan.com/2008/12/22/flexactionscript-3-engine-for-3d1-s/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 14:44:24 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/22/flexactionscript-3-engine-for-3d1-s/</guid>
		<description><![CDATA[flex/actionscript 3 engine for 3D:
1. sandy 3d engine with examples
2. jp Sharikura 3D Library
3. Alternativa 3D API with a good example]]></description>
			<content:encoded><![CDATA[<p>flex/actionscript 3 engine for 3D:<br />
1. <a title="sandy 3d engine with examples" href="http://www.flexer.info/2007/11/14/sandy-3d-engine-in-actionscript/">sandy 3d engine with examples<br />
2. </a><a title="jp Sharikura 3D Library" href="http://www.flexer.info/2008/06/27/roxik-sharikura-3d-library/">jp Sharikura 3D Library<br />
3. </a><a title="Alternativa 3D API with a good example" href="http://www.flexer.info/2007/10/26/framework-spotlight/">Alternativa 3D API with a good example</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/22/flexactionscript-3-engine-for-3d1-s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a example of facebook api programming by &#8230;</title>
		<link>http://doing.liduan.com/2008/12/20/a-example-of-facebook-api-programming-by/</link>
		<comments>http://doing.liduan.com/2008/12/20/a-example-of-facebook-api-programming-by/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 22:09:28 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/20/a-example-of-facebook-api-programming-by/</guid>
		<description><![CDATA[a example of facebook api programming by flex. Implement a Facebook photo album using the Flex SDK. the facebook as3 client should be used.]]></description>
			<content:encoded><![CDATA[<p>a example of facebook api programming by flex. <a title="a example of facebook api programming by flex. Implement a Facebook photo album using the Flex SDK. " href="http://www.ibm.com/developerworks/edu/wa-dw-wa-facebookflex.html?S_TACT=105AGX52&#038;S_CMP=tec-csdn">Implement a Facebook photo album using the Flex SDK</a>. <a title="the facebook as3 client should be used." href="http://code.google.com/p/facebook-actionscript-api/downloads/list">the facebook as3 client should be used.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/20/a-example-of-facebook-api-programming-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>animation by opengl programming
1. http &#8230;</title>
		<link>http://doing.liduan.com/2008/12/16/animation-by-opengl-programming1-http/</link>
		<comments>http://doing.liduan.com/2008/12/16/animation-by-opengl-programming1-http/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 09:26:34 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/16/animation-by-opengl-programming1-http/</guid>
		<description><![CDATA[animation by opengl programming
1. http://www.gamedev.net/reference/articles/article1681.asp
2. http://www.3dcodingtutorial.com/Basic-OpenGL-functions/Simple-animation.html
3. http://www.linuxfocus.org/English/January1998/article17.html
4. http://www.gamedev.net/reference/list.asp?categoryid=31]]></description>
			<content:encoded><![CDATA[<p>animation by opengl programming<br />
1. <a href="http://www.gamedev.net/reference/articles/article1681.asp" rel="nofollow">http://www.gamedev.net/reference/articles/article1681.asp</a></p>
<p>2. <a href="http://www.3dcodingtutorial.com/Basic-OpenGL-functions/Simple-animation.html" rel="nofollow">http://www.3dcodingtutorial.com/Basic-OpenGL-functions/Simple-animation.html</a></p>
<p>3. <a href="http://www.linuxfocus.org/English/January1998/article17.html" rel="nofollow">http://www.linuxfocus.org/English/January1998/article17.html</a></p>
<p>4. <a href="http://www.gamedev.net/reference/list.asp?categoryid=31" rel="nofollow">http://www.gamedev.net/reference/list.asp?categoryid=31</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/16/animation-by-opengl-programming1-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zoom in and zoom out in the opengl proje &#8230;</title>
		<link>http://doing.liduan.com/2008/12/16/zoom-in-and-zoom-out-in-the-opengl-proje/</link>
		<comments>http://doing.liduan.com/2008/12/16/zoom-in-and-zoom-out-in-the-opengl-proje/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 06:57:03 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/16/zoom-in-and-zoom-out-in-the-opengl-proje/</guid>
		<description><![CDATA[zoom in and zoom out in the opengl project.
OpenGL 3D Navigation glRotatef, glTranslatef, gluLookAt EP_OpenGL_005,   Zoom in openGL]]></description>
			<content:encoded><![CDATA[<p>zoom in and zoom out in the opengl project.<br />
<a title="OpenGL 3D Navigation glRotatef, glTranslatef, gluLookAt EP_OpenGL_005" href="http://www.codeproject.com/KB/openGL/OpenGL3DNavigation.aspx">OpenGL 3D Navigation glRotatef, glTranslatef, gluLookAt EP_OpenGL_005</a>,  <a title="Zoom in openGL" href="http://www.gamedev.net/community/forums/topic.asp?topic_id=390115&amp;whichpage=1%EF%BF%BDL"> Zoom in openGL</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/16/zoom-in-and-zoom-out-in-the-opengl-proje/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blendermania Tutorial List include a lot &#8230;</title>
		<link>http://doing.liduan.com/2008/12/14/blendermania-tutorial-list-include-a-lot/</link>
		<comments>http://doing.liduan.com/2008/12/14/blendermania-tutorial-list-include-a-lot/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 18:14:58 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/14/blendermania-tutorial-list-include-a-lot/</guid>
		<description><![CDATA[Blendermania Tutorial List include a lot of helpful tutorial of blender.]]></description>
			<content:encoded><![CDATA[<p><a title="Blendermania Tutorial List include a lot of helpful tutorial of blender." href="http://www.ingiebee.com/Blendermania/tutorial_list.html">Blendermania Tutorial List include a lot of helpful tutorial of blender.</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/14/blendermania-tutorial-list-include-a-lot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>two example for 3D openGL programming.
 &#8230;</title>
		<link>http://doing.liduan.com/2008/12/13/two-example-for-3d-opengl-programming/</link>
		<comments>http://doing.liduan.com/2008/12/13/two-example-for-3d-opengl-programming/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 17:44:18 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/13/two-example-for-3d-opengl-programming/</guid>
		<description><![CDATA[two example for 3D openGL programming.
Example: movingLight.c, Luminous opengl  Objects Example]]></description>
			<content:encoded><![CDATA[<p>two example for 3D <a title="openGL" href="http://www.opengl.org">openGL </a>programming.<br />
<a title="lighting example" href="http://profs.sci.univr.it/~colombar/html_openGL_tutorial/en/09lighting_027.html">Example: movingLight.c</a>, <a title="Luminous opengl  Objects Example" href="http://pheatt.emporia.edu/courses/2003/cs410s03/interestingExamples/luminousobjects/luminousobjects.htm">Luminous opengl  Objects Example</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/13/two-example-for-3d-opengl-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using split convert string to array. and &#8230;</title>
		<link>http://doing.liduan.com/2008/12/11/using-split-convert-string-to-array-and/</link>
		<comments>http://doing.liduan.com/2008/12/11/using-split-convert-string-to-array-and/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 16:03:52 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/11/using-split-convert-string-to-array-and/</guid>
		<description><![CDATA[using split convert string to array. and a Perl functions tutorial.]]></description>
			<content:encoded><![CDATA[<p>using <a title="using split convert string to array." href="http://www.comp.leeds.ac.uk/Perl/split.html">split</a> convert string to array. and a <a title="Perl functions tutorial" href="http://ist.marshall.edu/ist334/perl_functions.html">Perl functions </a>tutorial.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/11/using-split-convert-string-to-array-and/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some sources of perl programming:
Perl &#8230;</title>
		<link>http://doing.liduan.com/2008/12/09/some-sources-of-perl-programmingperl/</link>
		<comments>http://doing.liduan.com/2008/12/09/some-sources-of-perl-programmingperl/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 15:20:32 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/09/some-sources-of-perl-programmingperl/</guid>
		<description><![CDATA[some sources of perl programming:
Perl&#8217;s Special Variables
Reading STDERR from a Program
Perl File Handling: open, read, write and close files
Using Perl to Manage Plist Files, Part 2]]></description>
			<content:encoded><![CDATA[<p>some sources of perl programming:<br />
<a title="Perl's Special Variables" href="http://affy.blogspot.com/p5be/ch12.htm">Perl&#8217;s Special Variables</a><br />
<a title="Reading STDERR from a Program<br />
" href="http://www.unix.com.ua/orelly/perl3/cookbook/ch16_08.htm">Reading STDERR from a Program</a><br />
<a title="Perl File Handling: open, read, write and close files" href="http://www.perlfect.com/articles/perlfile.shtml">Perl File Handling: open, read, write and close files</a><br />
<a title="Using Perl to Manage Plist Files, Part 2" href="http://oreilly.com/pub/a/mac/2005/08/02/plist.html">Using Perl to Manage Plist Files, Part 2</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/09/some-sources-of-perl-programmingperl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>free twofish software downlaod:
1. 3d2f &#8230;</title>
		<link>http://doing.liduan.com/2008/12/06/free-twofish-software-downlaod1-3d2f/</link>
		<comments>http://doing.liduan.com/2008/12/06/free-twofish-software-downlaod1-3d2f/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 16:25:53 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blow fish]]></category>
		<category><![CDATA[cipher]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[two fish]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/06/free-twofish-software-downlaod1-3d2f/</guid>
		<description><![CDATA[free twofish software downlaod:
1. 3d2f.com &#8211; free twofish download
2. sharewareconnection.com  -Software Listing: Twofish
3. filesland.com &#8211; Free Twofish Software]]></description>
			<content:encoded><![CDATA[<p>free twofish software downlaod:<br />
<a title=" 3d2f.com - free twofish download" href="http://3d2f.com/tags/twofish/">1. 3d2f.com &#8211; free twofish download</a><br />
<a title="sharewareconnection.com  -Software Listing: Twofish" href="http://www.sharewareconnection.com/titles/twofish.htm">2. sharewareconnection.com  -Software Listing: Twofish</a><br />
<a title="filesland.com - Free Twofish Software" href="http://www.filesland.com/free/twofish.html">3. filesland.com &#8211; Free Twofish Software</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/06/free-twofish-software-downlaod1-3d2f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some useful tutorial for operation files &#8230;</title>
		<link>http://doing.liduan.com/2008/12/04/some-useful-tutorial-for-operation-files/</link>
		<comments>http://doing.liduan.com/2008/12/04/some-useful-tutorial-for-operation-files/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 17:43:07 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/04/some-useful-tutorial-for-operation-files/</guid>
		<description><![CDATA[some useful tutorial for operation files by perl:
Creation a file by perl with example
file flag type of perl
writing, deleting line of file and deleting the file by perl]]></description>
			<content:encoded><![CDATA[<p>some useful tutorial for operation files by perl:<br />
<a title="Creation a file by perl with example" href="http://www.tizag.com/perlT/perlfilecreate.php">Creation a file by perl with example</a><br />
<a title="file flag type of perl" href="http://www.tutorialspoint.com/perl/perl_sysopen.htm">file flag type of perl</a><br />
<a title="writing, deleting line of file and deleting the file by perl" href="http://www.pageresource.com/cgirec/ptut16.htm">writing, deleting line of file and deleting the file by perl</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/04/some-useful-tutorial-for-operation-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>very good blow fish Encryption Algorithm &#8230;</title>
		<link>http://doing.liduan.com/2008/12/03/very-good-blow-fish-encryption-algorithm/</link>
		<comments>http://doing.liduan.com/2008/12/03/very-good-blow-fish-encryption-algorithm/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 22:20:02 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blow fish]]></category>
		<category><![CDATA[cipher]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/12/03/very-good-blow-fish-encryption-algorithm/</guid>
		<description><![CDATA[very good blow fish Encryption Algorithm with a GUI application example]]></description>
			<content:encoded><![CDATA[<p><a title="very good blow fish Encryption Algorithm with a GUI application example" href="http://www.angelfire.com/moon/dmp/">very good blow fish Encryption Algorithm</a> with <a title="very good blow fish Encryption Algorithm with a GUI application example" href="http://www.angelfire.com/moon/dmp/SecuritySystem.zip">a GUI application example</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/12/03/very-good-blow-fish-encryption-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some example of spring graph. springgrap &#8230;</title>
		<link>http://doing.liduan.com/2008/11/25/some-example-of-spring-graph-springgrap/</link>
		<comments>http://doing.liduan.com/2008/11/25/some-example-of-spring-graph-springgrap/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 16:05:31 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[spring graph]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/25/some-example-of-spring-graph-springgrap/</guid>
		<description><![CDATA[some example of spring graph. springgraph is developed by perl. other one is
A Flex component for graph visualization]]></description>
			<content:encoded><![CDATA[<p>some example of spring graph. <a title="Can now generate 3D graphs springgraph" href="http://www.chaosreigns.com/code/springgraph/">springgraph</a> is developed by perl. other one is<br />
<a title="<br />
A Flex component for graph visualization" href="http://mark-shepherd.com/blog/2006/11/17/a-flex-component-for-graph-visualization/">A Flex component for graph visualization</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/25/some-example-of-spring-graph-springgrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flex game example</title>
		<link>http://doing.liduan.com/2008/11/24/flex-game-example/</link>
		<comments>http://doing.liduan.com/2008/11/24/flex-game-example/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 21:09:51 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[game]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/24/flex-game-example/</guid>
		<description><![CDATA[flex game example]]></description>
			<content:encoded><![CDATA[<p><a title="flex game example" href="http://www.cnblogs.com/ly4cn/archive/2006/09/13/503412.html">flex game example</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/24/flex-game-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>quixote and scgi example(chiese)
1. 1
 &#8230;</title>
		<link>http://doing.liduan.com/2008/11/20/quixote-and-scgi-examplechiese1-1/</link>
		<comments>http://doing.liduan.com/2008/11/20/quixote-and-scgi-examplechiese1-1/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 16:44:52 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dit]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[quixote]]></category>
		<category><![CDATA[scgi]]></category>
		<category><![CDATA[vps hosting]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/20/quixote-and-scgi-examplechiese1-1/</guid>
		<description><![CDATA[quixote and scgi example(chiese)
1. 1
2. 2]]></description>
			<content:encoded><![CDATA[<p>quixote and scgi example(chiese)<br />
1. <a href="http://www.apolov.com/html/2008/07/15/1216091040.html">1</a><br />
2. <a href="http://code.google.com/p/openbookproject/source/browse/trunk/LovelyPython/PCS/pcs-304/AbtQuixote.moin?spec=svn1942&#038;r=1942">2</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/20/quixote-and-scgi-examplechiese1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>orkut Developer&#8217;s Guide by google. It c &#8230;</title>
		<link>http://doing.liduan.com/2008/11/18/orkut-developers-guide-by-google-it-c/</link>
		<comments>http://doing.liduan.com/2008/11/18/orkut-developers-guide-by-google-it-c/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 22:14:26 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[orkut api]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/18/orkut-developers-guide-by-google-it-c/</guid>
		<description><![CDATA[orkut Developer&#8217;s Guide by google. It can be used to guide orkut api programming.]]></description>
			<content:encoded><![CDATA[<p><a title="orkut Developer's Guide by google. It can be used for guide orkut api programming" href="http://code.google.com/apis/orkut/docs/orkutdevguide/orkutdevguide-0.8.html">orkut Developer&#8217;s Guide by google</a>. It can be used to guide orkut api programming.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/18/orkut-developers-guide-by-google-it-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>perfect example for How to Get Profile P &#8230;</title>
		<link>http://doing.liduan.com/2008/11/18/perfect-example-for-how-to-get-profile-p/</link>
		<comments>http://doing.liduan.com/2008/11/18/perfect-example-for-how-to-get-profile-p/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 21:55:27 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/18/perfect-example-for-how-to-get-profile-p/</guid>
		<description><![CDATA[perfect example for How to Get Profile Picture. include get name, affiliation and more detail info.]]></description>
			<content:encoded><![CDATA[<p>perfect example for <a title="How to Get Profile Picture. include get name, affiliation and more detail info." href="http://forum.developers.facebook.com/viewtopic.php?id=20578">How to Get Profile Picture</a>. include get name, affiliation and more detail info.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/18/perfect-example-for-how-to-get-profile-p/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flash 3D tools and engines</title>
		<link>http://doing.liduan.com/2008/11/10/flash-3d-tools-and-engines/</link>
		<comments>http://doing.liduan.com/2008/11/10/flash-3d-tools-and-engines/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 12:34:59 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/10/flash-3d-tools-and-engines/</guid>
		<description><![CDATA[flash 3D tools and engines]]></description>
			<content:encoded><![CDATA[<p><a title="flash 3D tools and engines" href="http://edutechwiki.unige.ch/en/Flash_3D">flash 3D tools and engines</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/10/flash-3d-tools-and-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tutorial for creating bebo application w &#8230;</title>
		<link>http://doing.liduan.com/2008/11/08/tutorial-for-creating-bebo-application-w/</link>
		<comments>http://doing.liduan.com/2008/11/08/tutorial-for-creating-bebo-application-w/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 23:10:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bebo app]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/08/tutorial-for-creating-bebo-application-w/</guid>
		<description><![CDATA[tutorial for creating bebo application with php, step by step and code example.]]></description>
			<content:encoded><![CDATA[<p><a title="tutorial for creating bebo application How to create a Bebo application using PHP 5" href="http://www.thoughtlabs.com/blogs/2008/05/08/how-to-create-a-bebo-application-using-php-5/">tutorial for creating bebo application with php</a>, step by step and code example.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/08/tutorial-for-creating-bebo-application-w/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facebook app mysmiley example, here is m &#8230;</title>
		<link>http://doing.liduan.com/2008/11/02/facebook-app-mysmiley-example-here-is-m/</link>
		<comments>http://doing.liduan.com/2008/11/02/facebook-app-mysmiley-example-here-is-m/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 20:20:12 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[facebook app]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/02/facebook-app-mysmiley-example-here-is-m/</guid>
		<description><![CDATA[facebook app mysmiley example, here is mysmiley code, same topic is here. 10 Awesome Things Built on the Facebook API]]></description>
			<content:encoded><![CDATA[<p>facebook app <a title="Get Started mysmiley" href="http://developers.facebook.com/get_started.php?tab=anatomy">mysmiley example, <a title="mysmiley example" href="http://www.geekpoint.net/buy-sell-trade/5380-facebook-api-directly-write-message-profile-box.html">here is mysmiley code</a>, same <a title="mysmiley example" href="http://www.mytino.com/jobs/job_details.php?id=2102">topic is here</a>. <a title="10 Awesome Things Built on the Facebook API" href="http://mashable.com/2007/05/02/10-awesome-things-built-on-the-facebook-api/">10 Awesome Things Built on the Facebook API</a></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/02/facebook-app-mysmiley-example-here-is-m/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sample FQL Queries, there are some simpl &#8230;</title>
		<link>http://doing.liduan.com/2008/11/02/sample-fql-queries-there-are-some-simpl/</link>
		<comments>http://doing.liduan.com/2008/11/02/sample-fql-queries-there-are-some-simpl/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 16:24:11 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[fql]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/02/sample-fql-queries-there-are-some-simpl/</guid>
		<description><![CDATA[Sample FQL Queries, there are some simple example of Facebook Query Language(FQL)]]></description>
			<content:encoded><![CDATA[<p><a title="Sample FQL Queries, there are some simple example of Facebook Query Language(FQL)" href="http://wiki.developers.facebook.com/index.php/Sample_FQL_Queries">Sample FQL Queries</a>, there are some simple example of Facebook Query Language(FQL)</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/02/sample-fql-queries-there-are-some-simpl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>using java build your won scripting lang &#8230;</title>
		<link>http://doing.liduan.com/2008/10/31/using-java-build-your-won-scripting-lang/</link>
		<comments>http://doing.liduan.com/2008/10/31/using-java-build-your-won-scripting-lang/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 19:23:46 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/10/31/using-java-build-your-won-scripting-lang/</guid>
		<description><![CDATA[using java build your won scripting language. if you search &#8220;build your own scripting&#8221;, you can find a list of tutorial about build a scripting language by java.]]></description>
			<content:encoded><![CDATA[<p>using java build your won scripting language. if you search <a title="using java build your won scripting language" href="http://www.javaworld.com/ifind/java/query.html?qm=0&amp;st=1&amp;nh=10&amp;col=java&amp;qt=build+your+own+scripting&amp;x=0&amp;y=0&amp;=Go">&#8220;build your own scripting&#8221;</a>, you can find a list of tutorial about build a scripting language by java.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/10/31/using-java-build-your-won-scripting-lang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>in last blog post, I&#8217;m very interesting &#8230;</title>
		<link>http://doing.liduan.com/2008/10/28/in-last-blog-post-im-very-interesting/</link>
		<comments>http://doing.liduan.com/2008/10/28/in-last-blog-post-im-very-interesting/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:51:18 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[sphere]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/10/28/in-last-blog-post-im-very-interesting/</guid>
		<description><![CDATA[in last blog post, I&#8217;m very interesting in that spheres, but that example don&#8217;t support code for it, so I have searched in the www. I have found some tutorial about how to do 3D sphere by flash actionscript. first one is developed by actionscript3, next one is math tutorial.]]></description>
			<content:encoded><![CDATA[<p>in last blog post, I&#8217;m very interesting in that <a href="http://moebio.com/spheres/english.html#">spheres</a>, but that example don&#8217;t support code for it, so I have searched in the www. I have found some tutorial about how to do 3D sphere by flash actionscript. <a title="first one is developed by actionscript3" href="http://www.reflektions.com/miniml/template_permalink.asp?id=329">first one is developed by actionscript3</a>, next one is <a title="" href="http://www.flashadvisor.com/tutorial/3D/How_To_Create_the_3D_Object_in_Flash-1-3.html">math tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/10/28/in-last-blog-post-im-very-interesting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
