<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>道道道</title>
	<atom:link href="http://xinjing.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://xinjing.wordpress.com</link>
	<description>读书，思考</description>
	<lastBuildDate>Wed, 02 Apr 2008 23:24:32 +0000</lastBuildDate>
	<language>zh-cn</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='xinjing.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>道道道</title>
		<link>http://xinjing.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://xinjing.wordpress.com/osd.xml" title="道道道" />
	<atom:link rel='hub' href='http://xinjing.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Flex 3 Localization</title>
		<link>http://xinjing.wordpress.com/2008/04/02/flex-3-localization/</link>
		<comments>http://xinjing.wordpress.com/2008/04/02/flex-3-localization/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 23:18:20 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/04/02/flex-3-localization/</guid>
		<description><![CDATA[http://www.herrodius.com/blog/123 With Flex 3 comes the ability to do runtime localization. Compared to Flex 2 where you actually had to recompile your application for each locale, you can now have one version of your application that contains different resource bundles. Today I implemented this in one of the applications we are working on and ran [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=26&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://www.herrodius.com/blog/123" href="http://www.herrodius.com/blog/123">http://www.herrodius.com/blog/123</a></p>
<p>With Flex 3 comes the ability to do runtime localization. Compared to Flex 2 where you actually had to recompile your application for each locale, you can now have one version of your application that contains different resource bundles.
<p>Today I implemented this in one of the applications we are working on and ran into some issues. Here is how I got it to work in a nutshell. (Note: for a full instruction on implementing localization in Flex 3, I recommend the article <a href="http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization">Flex 3:Feature Introductions: Runtime Localization</a> by Gordon Smith.)
<p>- create a folder in your project to store your resource bundles (e.g. &#8220;locale&#8221;)<br />- create a subfolder for each locale you want to implement (e.g. &#8220;locale\nl_BE&#8221; and &#8220;locale\fr_BE&#8221;)<br />- in the locale subfolder, create a resources.properties file and save it as UTF-8<br />- enter the resources in the form of &#8220;key=value&#8221;, like Ant property files<br />- update the compiler settings: -locale=nl_BE,fr_BE -source-path=locale/{locale}
<p>You now also need to create localized framework resources. To do this, take the following steps:
<p>- open a command line (run as administrator in Vista!)<br />- go to the &#8220;bin&#8221; folder in your Flex SDK installation folder<br />- run the copylocale.exe tool for each locale, this will copy the localized framework files from one locale to another (copylocale en_US nl_BE)<br />- check FLEX_HOME\frameworks\locale to see if the folder for your new locale has been created<br />- if you get an error &#8220;could not find resource bundle charts&#8221;, search for a file called charts_rb.swc and copy it to the new locale folder in FLEX_HOME\frameworks\locale
<p>A simple example of asking for a localized string:
<p><a href="http://www.herrodius.com/blog/123#">PLAIN TEXT</a>
<p>Actionscript:
<ol>
<li>
<p>// tell the compiler what resourcebundle to use</p>
<li>
<p>&lt;mx:Metadata&gt;</p>
<li>
<p>[ResourceBundle("resources")]</p>
<li>
<p>&lt;/mx:Metadata&gt;</p>
<li>
<li>
<p>// if you are in a subclass of UIComponent</p>
<li>
<p>var myString:String = resourceManager.getString(&#8220;resources&#8221;, &#8220;myKey&#8221;);</p>
<li>
<li>
<p>// &#8230;or if you are not in a subclass of UIComponent</p>
<li>
<p>var myString:String = ResourceManager.getInstance().getString(&#8220;resources&#8221;, &#8220;myKey&#8221;); </p>
</li>
</ol>
<p>You can put these calls in a binding expression and switch your locale at runtime by setting the localeChain property on the resourceManager:
<p><a href="http://www.herrodius.com/blog/123#">PLAIN TEXT</a>
<p>Actionscript:
<ol>
<li>
<p>resourceManager.localeChain = ["nl_BE"]; </p>
</li>
</ol>
<p>That&#8217;s about it. Have fun!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=26&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/04/02/flex-3-localization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>drag-select a range on the date chooser</title>
		<link>http://xinjing.wordpress.com/2008/03/31/drag-select-a-range-on-the-date-chooser/</link>
		<comments>http://xinjing.wordpress.com/2008/03/31/drag-select-a-range-on-the-date-chooser/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 23:32:11 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/31/drag-select-a-range-on-the-date-chooser/</guid>
		<description><![CDATA[http://shemesh.wordpress.com/2008/03/22/drag-select-a-range-on-the-date-chooser/ March 22, 2008 by shemesh Beats me why this is not implemented into Flex, it seems to me like a very basic/natural/user-friendly behavior that any date chooser should have.I m talking about the ability to drag-select a range on the DateChooser.That is: mouse down, drag to select a range of days, mouse up. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=25&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://shemesh.wordpress.com/2008/03/22/drag-select-a-range-on-the-date-chooser/" href="http://shemesh.wordpress.com/2008/03/22/drag-select-a-range-on-the-date-chooser/">http://shemesh.wordpress.com/2008/03/22/drag-select-a-range-on-the-date-chooser/</a><br />
<h4>March 22, 2008 by shemesh</h4>
<p>Beats me why this is not implemented into Flex, it seems to me like a very basic/natural/user-friendly behavior that any date chooser should have.<br />I m talking about the ability to drag-select a range on the DateChooser.<br />That is: mouse down, drag to select a range of days, mouse up.
<p>This component extends DateChooser to add a new property: <b>dragSelect </b>(true/false).<br />Notice that (obviously) ‘allowMultipleSelection’ must be set to true in order to use the drag-select feature.
<p>Also in this demo you can see a custom date range validator with minimum and maximum allowed days.
<p><a href="http://shemesh.axspace.com/DateChooser_DragSelectRange/">Demo is here </a>(right click for source)<br /><a href="http://shemesh.axspace.com/DateChooser_DragSelectRange/srcview/index.html">Source is here</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=25&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/31/drag-select-a-range-on-the-date-chooser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Persistent Login Cookie Best Practice</title>
		<link>http://xinjing.wordpress.com/2008/03/31/persistent-login-cookie-best-practice/</link>
		<comments>http://xinjing.wordpress.com/2008/03/31/persistent-login-cookie-best-practice/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 19:46:40 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/31/persistent-login-cookie-best-practice/</guid>
		<description><![CDATA[Persistent Login Cookie Best Practice Persistent login cookies are the cookies that are stored with your browser when you click the “remember me” button on the login form. I would like to be able to say that such cookies are obselete, and we have a better way of handling user logins, but they aren’t, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=24&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://fishbowl.pastiche.org/2004/01/19/persistent_login_cookie_best_practice" href="http://fishbowl.pastiche.org/2004/01/19/persistent_login_cookie_best_practice">Persistent Login Cookie Best Practice</a></p>
<p>Persistent login cookies are the cookies that are stored with your browser when you click the “remember me” button on the login form. I would like to be able to say that such cookies are obselete, and <a href="http://fishbowl.pastiche.org/2003/12/30/saving_http_authentication">we have a better way of handling user logins</a>, but they aren’t, and we don’t.</p>
<p>The following recipe for persistent cookies requires no crypto more powerful than a good random number generator.
<p><strong>Premises</strong>
<ol>
<li>Cookies are vulnerable. Between common browser cookie-theft vulnerabilities and cross-site scripting attacks, we must accept that cookies are not safe
<li>Persistent login cookies are on their own sufficient authentication to access a website. They are the equivalent of both a valid username and password rolled into one
<li>Users reuse passwords. Hence, any login cookie from which you can recover the user’s password holds significantly more potential for harm than one from which you can not
<li>Binding persistent cookies to a particular IP address makes them not particularly persistent in many common cases
<li>A user may wish to have persistent cookies on multiple web browsers on different machines simultaneously </li>
</ol>
<p><strong>Charles’ Recipe</strong>
<p>The cookie should consist of the user’s username, followed by a separator character, followed by some large random number (128 bits seems mind-bogglingly large enough to be acceptable). The server keeps a table of number-&gt;username associations, which is looked up to verify the validity of the cookie. If the cookie supplies a random number and username that are mapped to each other in the table, the login is accepted.
<p>At any time, a username may be mapped to several such numbers. Also, while incredibly unlikely, it does not matter if two usernames are mapped to the same random number.
<p>A persistent cookie is good for a single login. When authentication is confirmed, the random number used to log in is invalidated and a brand new cookie assigned. Standard session-management handles the credentials for the life of the session, so the newly assigned cookie will not be checked until the <em>next</em> session (at which point it, too, will be invalidated after use).
<p>The server need not make the effort of deliberately trying to avoid re-assigning random numbers that have been used before: the chance of it happening is so low that even if it did, nobody would know to make use of it.
<p>When a user logs out through some deliberate logout function, their current cookie number is also invalidated. The user also has an option somewhere to clear <em>all</em> persistent logins being remembered by the system, just in case.
<p>Periodically, the database is purged of associations older than a certain time-period (three months, perhaps: the size of the table would be far more an issue than any possibilities of collision in a 128 bit random space).
<p>The following user functions must <em>not</em> be reachable through a cookie-based login, but only through the typing of a valid password:
<ul>
<li>Changing the user’s password
<li>Changing the user’s email address (especially if email-based password recovery is used)
<li>Any access to the user’s address, payment details or financial information
<li>Any ability to make a purchase </li>
</ul>
<p><strong>Results</strong>
<p>If the login cookie is compromised, the attacker has access to the common functions of the site as that user. This is inevitable whatever the cookie contains. However, the attacker can not:
<ul>
<li>Access sensitive user information
<li>Spend the user’s money
<li>Recover the user’s password and try it on other sites
<li>Prevent the user from receiving notifications from the site of things that may have been done in their name
<li>Share the stolen login with others </li>
</ul>
<p>The mutating nature of the cookie also provides a much smaller window of opportunity for an attacker to exploit a stolen cookie, and means the attacker must be far more careful they don’t end up with a useless set of credentials.
<p><strong>Update:</strong> Barry Jaspan suggests <a href="http://jaspan.com/improved_persistent_login_cookie_best_practice">an addition to the protocol</a> that would further reduce the window of opportunity for stolen cookies: if a cookie that has been known to be used before (and thus invalidated) is presented, treat it as evidence of an attack and invalidate <i>all</i> saved logins for that user.  </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=24&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/31/persistent-login-cookie-best-practice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Fedora Wireless</title>
		<link>http://xinjing.wordpress.com/2008/03/27/fedora-wireless/</link>
		<comments>http://xinjing.wordpress.com/2008/03/27/fedora-wireless/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 18:48:00 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/27/fedora-wireless/</guid>
		<description><![CDATA[http://forums.fedoraforum.org/showthread.php?t=175240 only for the yum command. If you do not have an internet connection you can download this rpm on another machine fromhttp://livna-dl.reloumirrors.net/fedora/just choose your fedora-release number being 8 then choose your architecture. You will need to choose the ndiswrapper version number that matches your kernel version number Code: uname -r from your linux box.EDIT: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=23&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://forums.fedoraforum.org/showthread.php?t=175240" href="http://forums.fedoraforum.org/showthread.php?t=175240">http://forums.fedoraforum.org/showthread.php?t=175240</a></p>
<p>only for the yum command. If you do not have an internet connection you can download this rpm on another machine from<br /><a href="http://livna-dl.reloumirrors.net/fedora/">http://livna-dl.reloumirrors.net/fedora/</a><br />just choose your fedora-release number being 8 then choose your architecture. You will need to choose the ndiswrapper version number that matches your kernel version number
<p>Code:
<pre>

uname -r
</pre>
<p>from your linux box.<br />EDIT: then to install it you will need to use rpm instead of yum. </p>
<p>Code:
<pre>

su
rpm -ivh /path/to/rpm/*ndiswrapper*rpm
</pre>
<p>___________________________<br />The answer to all of lifes questions are buried somewhere in the Google search engine. </p>
<p>Code:
<pre>

[Stephen@localhost ~]$ whatis this?
this?: nothing appropriate

&nbsp;

&nbsp;

&nbsp;

Code:
<pre>

su
rpm -ivh <a href="http://rpm.livna.org/livna-release-8.rpm">http://rpm.livna.org/livna-release-8.rpm</a>
yum install ndiswrapper
</pre>
<p>Sorry I forgot that ndiswrapper was not in the standard fedora repository.
<p>___________________________<br />The answer to all of lifes questions are buried somewhere in the Google search engine.
<p>Code:
<pre>

[Stephen@localhost ~]$ whatis this?
this?: nothing appropriate
</pre>
</pre>
<pre><a title="http://www.gidforums.com/t-4390.html" href="http://www.gidforums.com/t-4390.html">http://www.gidforums.com/t-4390.html</a></pre>
<pre>ndiswrapper -i /mnt/cdrom/Driver/bcmwl5.inf</pre>
<pre>ndiswrapper -l</pre>
<pre>Installed ndis drivers:
bcmwl5  driver present, hardware present</pre>
<pre>modprobe ndiswrapper</pre>
<pre>dhcpcd wlan0</pre>
<p>Finally, we want to make sure that this is loaded every time at boot up. There is quite a few ways to do this, but what it boils down to is that you need to load the ndiswrapper driver and then configure the card. Under slackware, I chose to use the <em>rc.local</em> script. This is the last script to run on boot up. I added these lines to my <em>/etc/rc.d/rc.local</em> script:</p>
<p>Code:
<pre>

echo "Set up wireless lan"
modprobe ndiswrapper
dhcpcd wlan0
</pre>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=23&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/27/fedora-wireless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex TileList</title>
		<link>http://xinjing.wordpress.com/2008/03/26/flex-tilelist/</link>
		<comments>http://xinjing.wordpress.com/2008/03/26/flex-tilelist/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 00:29:36 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/26/flex-tilelist/</guid>
		<description><![CDATA[http://blog.flexexamples.com/2008/03/08/creating-a-simple-image-gallery-with-the-flex-tilelist-control/ http://livedocs.adobe.com/flex/3/html/index.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=22&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://blog.flexexamples.com/2008/03/08/creating-a-simple-image-gallery-with-the-flex-tilelist-control/" href="http://blog.flexexamples.com/2008/03/08/creating-a-simple-image-gallery-with-the-flex-tilelist-control/">http://blog.flexexamples.com/2008/03/08/creating-a-simple-image-gallery-with-the-flex-tilelist-control/</a></p>
<p><a title="http://livedocs.adobe.com/flex/3/html/index.html" href="http://livedocs.adobe.com/flex/3/html/index.html">http://livedocs.adobe.com/flex/3/html/index.html</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=22&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/26/flex-tilelist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Uploading Files with Flex &amp; PHP</title>
		<link>http://xinjing.wordpress.com/2008/03/24/uploading-files-with-flex-php/</link>
		<comments>http://xinjing.wordpress.com/2008/03/24/uploading-files-with-flex-php/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 20:25:38 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/24/uploading-files-with-flex-php/</guid>
		<description><![CDATA[http://weblog.cahlan.com/2006/09/uploading-files-with-flex-and-php.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=21&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://weblog.cahlan.com/2006/09/uploading-files-with-flex-and-php.html" href="http://weblog.cahlan.com/2006/09/uploading-files-with-flex-and-php.html">http://weblog.cahlan.com/2006/09/uploading-files-with-flex-and-php.html</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=21&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/24/uploading-files-with-flex-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Flex: Advanced Datagrid</title>
		<link>http://xinjing.wordpress.com/2008/03/24/flex-advanced-datagrid/</link>
		<comments>http://xinjing.wordpress.com/2008/03/24/flex-advanced-datagrid/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 20:23:23 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/24/flex-advanced-datagrid/</guid>
		<description><![CDATA[flex-fun-advanced-datagrid-topics<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=20&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://blog.paranoidferret.com/index.php/2007/08/29/flex-fun-advanced-datagrid-topics/" href="http://blog.paranoidferret.com/index.php/2007/08/29/flex-fun-advanced-datagrid-topics/">flex-fun-advanced-datagrid-topics</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=20&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/24/flex-advanced-datagrid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Scoping problems in Flex</title>
		<link>http://xinjing.wordpress.com/2008/03/20/scoping-problems-in-flex/</link>
		<comments>http://xinjing.wordpress.com/2008/03/20/scoping-problems-in-flex/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 23:36:46 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/20/scoping-problems-in-flex/</guid>
		<description><![CDATA[http://sudhahariharan.wordpress.com/2007/12/20/solutions-to-common-scoping-issues-in-flex/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=19&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://sudhahariharan.wordpress.com/2007/12/20/solutions-to-common-scoping-issues-in-flex/" href="http://sudhahariharan.wordpress.com/2007/12/20/solutions-to-common-scoping-issues-in-flex/">http://sudhahariharan.wordpress.com/2007/12/20/solutions-to-common-scoping-issues-in-flex/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=19&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/20/scoping-problems-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>Validate Data</title>
		<link>http://xinjing.wordpress.com/2008/03/20/validate-data/</link>
		<comments>http://xinjing.wordpress.com/2008/03/20/validate-data/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 21:46:48 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[学习文档]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/20/validate-data/</guid>
		<description><![CDATA[Validating data Using validators General guidelines for validation Working with validation errors Working with validation events Using standard validators<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=18&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://livedocs.adobe.com/flex/3/html/validators_2.html#129011">Validating data</a>
<li><a href="http://livedocs.adobe.com/flex/3/html/validators_3.html#196795">Using validators</a>
<li><a href="http://livedocs.adobe.com/flex/3/html/validators_4.html#198309">General guidelines for validation</a>
<li><a href="http://livedocs.adobe.com/flex/3/html/validators_5.html#195310">Working with validation errors</a>
<li><a href="http://livedocs.adobe.com/flex/3/html/validators_6.html#181116">Working with validation events</a>
<li><a href="http://livedocs.adobe.com/flex/3/html/validators_7.html#196911">Using standard validators</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=18&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/20/validate-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
		<item>
		<title>The Price Differences For Stocks Traded in Both US And Hong Kong</title>
		<link>http://xinjing.wordpress.com/2008/03/18/the-price-differences-for-stocks-traded-in-both-us-and-hong-kong/</link>
		<comments>http://xinjing.wordpress.com/2008/03/18/the-price-differences-for-stocks-traded-in-both-us-and-hong-kong/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 17:20:26 +0000</pubDate>
		<dc:creator>道道</dc:creator>
				<category><![CDATA[股票文章]]></category>

		<guid isPermaLink="false">http://xinjing.wordpress.com/2008/03/18/the-price-differences-for-stocks-traded-in-both-us-and-hong-kong/</guid>
		<description><![CDATA[http://chinabizfocus.com/modules/InvestChina/stockideas.php?sel=tradingideas<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=17&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="http://chinabizfocus.com/modules/InvestChina/stockideas.php?sel=tradingideas" href="http://chinabizfocus.com/modules/InvestChina/stockideas.php?sel=tradingideas">http://chinabizfocus.com/modules/InvestChina/stockideas.php?sel=tradingideas</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xinjing.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xinjing.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xinjing.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xinjing.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xinjing.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xinjing.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xinjing.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xinjing.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xinjing.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xinjing.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xinjing.wordpress.com&amp;blog=3111574&amp;post=17&amp;subd=xinjing&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://xinjing.wordpress.com/2008/03/18/the-price-differences-for-stocks-traded-in-both-us-and-hong-kong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4ebf76d8c29384b0934f7fffdc3f9660?s=96&#38;d=identicon" medium="image">
			<media:title type="html">道道</media:title>
		</media:content>
	</item>
	</channel>
</rss>
