<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>effective life plus</title>
	
	<link>http://www.binzywu.com</link>
	<description>bz plus</description>
	<lastBuildDate>Tue, 20 Oct 2009 01:18:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BinzyWu" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>nginx + Zend Framework @ Windows</title>
		<link>http://www.binzywu.com/2009/10/nginx-zend-framework-windows/</link>
		<comments>http://www.binzywu.com/2009/10/nginx-zend-framework-windows/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 13:54:32 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php-cgi]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=82</guid>
		<description><![CDATA[If you feel pretty boring with Apache, just like me, so having a try of nginx might be good idea. Although at most of my time, I&#8217;m using Windows, fortunately, nginx has native Windows build. So my steps might be helpful to you to try nginx on Windows, especially Windows 7.
1. Download nginx and php [...]]]></description>
			<content:encoded><![CDATA[<p>If you feel pretty boring with Apache, just like me, so having a try of nginx might be good idea. Although at most of my time, I&#8217;m using Windows, fortunately, nginx has native Windows build. So my steps might be helpful to you to try nginx on Windows, especially Windows 7.</p>
<p>1. Download nginx and php and install</p>
<ul>
<li><a href="http://nginx.net/">http://nginx.net/</a></li>
<li><a href="http://windows.php.net/download/">http://windows.php.net/download/</a> (I don&#8217;t like the installer)</li>
</ul>
<p>2. Configure nginx and php</p>
<ul>
<li>PHP, no specific configuration, just do what you like to php.ini.</li>
<li>Nginx<br />
<strong>Fast-CGI of php</strong><br />
You can find sample from wiki.nginx.org, <a href="http://wiki.nginx.org/PHPFastCGIOnWindows">http://wiki.nginx.org/PHPFastCGIOnWindows</a>, below works for me.</p>
<pre class="brush:plain">location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9999;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  D:/www/public/$fastcgi_script_name;
            include        fastcgi_params;
        }</pre>
<p><strong>Configure for Zend Framework<br />
</strong>-f and !-f are used for checking whether file exists.</p>
<pre class="brush:plain">        error_page 404 /index.php;

        if (!-f $request_filename) {
            rewrite ^.*$ /index.php last;
            break;
        }</pre>
</li>
</ul>
<p>3. batch script to start and stop nginx + php-cgi</p>
<p>I&#8217;m using <a href="http://www.msfn.org/board/tool-hide-console-command-line-windows-t49184.html&amp;t=49184" target="_blank">RunHiddenConsole</a> to hide the prompt window and actually you also can use vbs to run nginx.</p>
<p>start-nginx.bat</p>
<pre class="brush:plain">@ECHO OFF
ECHO Starting PHP FastCGI...
C:\nginx\RunHiddenConsole.exe C:\PHP5\php-cgi.exe -b 127.0.0.1:9999
ECHO Starting nginx...
C:\nginx\RunHiddenConsole.exe c:\nginx\nginx.exe</pre>
<p>stop-nginx.bat</p>
<pre class="brush:plain">@ECHO OFF
ECHO Stopping nginx...
taskkill /F /IM nginx.exe
ECHO Stopping php-cgi...
taskkill /F /IM php-cgi.exe</pre>
<p>but php-pfm doesn&#8217;t work on Windows unless you are using cygwin.</p>
<p><img class="alignnone size-medium wp-image-90" title="nginx_zend" src="http://www.binzywu.com/wp-content/uploads/2009/10/nginx_zend-300x125.jpg" alt="nginx_zend" width="300" height="125" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/10/nginx-zend-framework-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework Multiple Helper Path Configuration</title>
		<link>http://www.binzywu.com/2009/10/zend-framework-multiple-helper-path-configuration/</link>
		<comments>http://www.binzywu.com/2009/10/zend-framework-multiple-helper-path-configuration/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 04:22:02 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[helper]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[Zend_View]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=79</guid>
		<description><![CDATA[As you may have multiple configuration for helpers of Zend View, simply configure as below will help
resources.view.helperPath.Zend_View_Helper = APPLICATION_PATH "/views/helpers"
resources.view.helperPath.My_Custom_Helper = "/path to helpers"
The &#8220;My_Custom_Hepler&#8221; is the prefix, so that you can support your different modules&#8217; help path without hard coding in php codes.
]]></description>
			<content:encoded><![CDATA[<p>As you may have multiple configuration for helpers of Zend View, simply configure as below will help</p>
<pre class="brush:php">resources.view.helperPath.Zend_View_Helper = APPLICATION_PATH "/views/helpers"
resources.view.helperPath.My_Custom_Helper = "/path to helpers"</pre>
<p>The &#8220;My_Custom_Hepler&#8221; is the prefix, so that you can support your different modules&#8217; help path without hard coding in php codes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/10/zend-framework-multiple-helper-path-configuration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>subversion client and http</title>
		<link>http://www.binzywu.com/2009/10/subversion-client-and-http/</link>
		<comments>http://www.binzywu.com/2009/10/subversion-client-and-http/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 03:05:07 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[neon]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=76</guid>
		<description><![CDATA[I hate subversion&#8230;
while using linux, I thought subversion client should natively support http schema,  but actually it doesn&#8217;t. By reading installation instruction, it says I need Neon&#8230; Then I download Neon and configure with &#8211;with-neon=&#60;neonpath&#62;, doesn&#8217;t work! try copy neon to subversion source code, reconfigure it&#8230; without &#8211;with-neon option&#8230; still doesn&#8217;t work! Shit&#8230; via looking [...]]]></description>
			<content:encoded><![CDATA[<p>I hate subversion&#8230;</p>
<p>while using linux, I thought subversion client should natively support http schema,  but actually it doesn&#8217;t. By reading installation instruction, it says I need Neon&#8230; Then I download Neon and configure with &#8211;with-neon=&lt;neonpath&gt;, doesn&#8217;t work! try copy neon to subversion source code, reconfigure it&#8230; without &#8211;with-neon option&#8230; still doesn&#8217;t work! Shit&#8230; via looking into configure log, it says&#8230;</p>
<blockquote><p>checking neon library version&#8230; 0.29.0<br />
You have a neon/ subdir containing version 0.29.0,<br />
but Subversion needs neon 0.28.4.</p>
<p>An appropriate version of neon could not be found, so libsvn_ra_neon<br />
will not be built.  If you want to build libsvn_ra_neon, please either<br />
install neon 0.28.4 on this system</p>
<p>or</p>
<p>get neon 0.28.4 from:<br />
    <a href="http://www.webdav.org/neon/neon-0.28.4.tar.gz">http://www.webdav.org/neon/neon-0.28.4.tar.gz</a><br />
unpack the archive using tar/gunzip and rename the resulting<br />
directory from ./neon-0.28.4/ to ./neon/</p>
<p>no suitable neon found</p></blockquote>
<p>&#8230; download 0.28.4, copy to sub folder, configure&#8230; yeah&#8230; works, finally. You can check whether it supports http via &#8220;svn &#8211;version&#8221;, there should be a ra_neon module.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/10/subversion-client-and-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grey’s Anatomy Season 6</title>
		<link>http://www.binzywu.com/2009/09/greys-anatomy-season-6/</link>
		<comments>http://www.binzywu.com/2009/09/greys-anatomy-season-6/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 00:09:05 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[TV]]></category>
		<category><![CDATA[George]]></category>
		<category><![CDATA[Grey's Anatomy]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=68</guid>
		<description><![CDATA[The new season will start very soon on Sep 24th. http://www.greysanatomyinsider.comhas posted many info about season 6, it looks the season will change a lot. At least I&#8217;m not expecting George to be back any more&#8230; The poster as below shows the beginning of new season will be quite dark&#8230;
]]></description>
			<content:encoded><![CDATA[<p>The new season will start very soon on Sep 24th. <a href="http://www.greysanatomyinsider.com">http://www.greysanatomyinsider.com</a>has posted many info about season 6, it looks the season will change a lot. At least I&#8217;m not expecting George to be back any more&#8230; The poster as below shows the beginning of new season will be quite dark&#8230;</p>
<div id="attachment_69" class="wp-caption alignnone" style="width: 410px"><img class="size-full wp-image-69" title="greysanatomyseason6poster" src="http://www.binzywu.com/wp-content/uploads/2009/09/03_234445_greysanatomyseason6poster_400x517.jpg" alt="greysanatomyseason6poster" width="400" height="517" /><p class="wp-caption-text">greys anatomy season6 (copyright (c) abc.com?) </p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/09/greys-anatomy-season-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photojojo Newsletter</title>
		<link>http://www.binzywu.com/2009/09/photojojo-newsletter/</link>
		<comments>http://www.binzywu.com/2009/09/photojojo-newsletter/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:20:36 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Photo]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[photojojo]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=61</guid>
		<description><![CDATA[Photojojo.com is a website shares the tips of photograph, and I have subscribed their newsletter for a while. It&#8217;s an amazing website, which is pretty simple and doesn&#8217;t have too many features, but it&#8217;s really popular, and it has more than 170k RSS feed subscriber!
Frankly, most of the newsletters in my mailbox are unread, and [...]]]></description>
			<content:encoded><![CDATA[<p>Photojojo.com is a website shares the tips of photograph, and I have subscribed their newsletter for a while. It&#8217;s an amazing website, which is pretty simple and doesn&#8217;t have too many features, but it&#8217;s really popular, and it has more than 170k RSS feed subscriber!</p>
<p>Frankly, most of the newsletters in my mailbox are unread, and I just realize how useful and interesting those newsletters are recently, like <a title="photojojo" href="http://photojojo.com/content/inspiration/daily-polaroid-food-blog/" target="_blank">this one</a>. I have my DSLR several years ago, but I never tried to learn how to take real good photo&#8230; In early <span style="text-decoration: line-through;">2009</span> <span style="color: #000080;">2008</span>, I began to take photo weekly, although finally I re-created an account on flickr for some reason, I did enjoy those photos and I&#8217;m considering to learn something. So reading newsletters from photojojo and cleaning my DSLR might be a good new start point.</p>
<p>In China, we call lens are <span style="font-family: Microsoft YaHei">镜头</span>, and everyone has a brain, I mean head, which we call <span style="font-family: Microsoft YaHei">头</span>. So it is always said that the <span style="font-family: Microsoft YaHei">头</span> (brain) behind camera is more important than the <span style="font-family: Microsoft YaHei">头</span> (lens) which is at front.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/09/photojojo-newsletter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.Net IoC Containers</title>
		<link>http://www.binzywu.com/2009/08/net-ioc-containers/</link>
		<comments>http://www.binzywu.com/2009/08/net-ioc-containers/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 22:47:15 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Container]]></category>
		<category><![CDATA[DI]]></category>
		<category><![CDATA[IoC]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=58</guid>
		<description><![CDATA[Unity, http://unity.codeplex.com, Ms-PL license
Developed by Microsoft P&#38;P.
Spring.Net, http://www.springframework.net/, Apache 2.0 License
Port from the famous Spring framework.
Castle, http://www.castleproject.org/, Apache 2.0 License
The first .Net IoC Container?
StructureMap, http://structuremap.sourceforge.net/, Apache 2.0 License
Looks good.
The fifth?
[updated on Sep 14th]
Yes, just know the fifth,
Ninject: http://code.google.com/p/ninject/ Apache 2.0 License. No comment yet&#8230;
]]></description>
			<content:encoded><![CDATA[<p><strong>Unity</strong>, <a href="http://unity.codeplex.com">http://unity.codeplex.com</a>, Ms-PL license</p>
<p>Developed by Microsoft P&amp;P.</p>
<p><strong>Spring.Net</strong>, <a href="http://www.springframework.net/">http://www.springframework.net/</a>, Apache 2.0 License</p>
<p>Port from the famous Spring framework.</p>
<p><strong>Castle</strong>, <a href="http://www.castleproject.org/">http://www.castleproject.org/</a>, Apache 2.0 License</p>
<p>The first .Net IoC Container?</p>
<p><strong>StructureMap</strong>, <a href="http://structuremap.sourceforge.net/">http://structuremap.sourceforge.net/</a>, Apache 2.0 License</p>
<p>Looks good.</p>
<p>The fifth?</p>
<p><em><span style="color: #808080;">[updated on Sep 14th]</span></em></p>
<p>Yes, just know the fifth,</p>
<p><strong>Ninject</strong>: <a href="http://code.google.com/p/ninject/">http://code.google.com/p/ninject/</a> Apache 2.0 License. No comment yet&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/08/net-ioc-containers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live Mesh + Win2008 + 80004002 Error</title>
		<link>http://www.binzywu.com/2009/07/live-mesh-win2008-80004002-error/</link>
		<comments>http://www.binzywu.com/2009/07/live-mesh-win2008-80004002-error/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 06:10:27 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[livemesh]]></category>
		<category><![CDATA[mesh]]></category>
		<category><![CDATA[win2008]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=56</guid>
		<description><![CDATA[The system partition of my workstation was crashed&#8230; I have to reinstall the opration system, windows server 2008 (not R2). And I got error while installing live mesh, which is 80004002. Thanks to the search engine, I solved finally. Looks the problem is caused by the windows update agent, reinstall the WUA manually, and Livemesh.exe [...]]]></description>
			<content:encoded><![CDATA[<p>The system partition of my workstation was crashed&#8230; I have to reinstall the opration system, windows server 2008 (not R2). And I got error while installing live mesh, which is 80004002. Thanks to the search engine, I solved finally. Looks the problem is caused by the windows update agent, reinstall the WUA manually, and Livemesh.exe /force. Then it works.</p>
<p>WUA: <a href="http://support.microsoft.com/kb/949104">http://support.microsoft.com/kb/949104</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/07/live-mesh-win2008-80004002-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bing Ringtones</title>
		<link>http://www.binzywu.com/2009/06/bing-ringtones/</link>
		<comments>http://www.binzywu.com/2009/06/bing-ringtones/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 07:53:17 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[ringtone]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=53</guid>
		<description><![CDATA[Interesting ringtones&#8230;
download it here: http://www.microsoft.com/downloads/details.aspx?displaylang=en&#38;FamilyID=043c49db-e33b-4603-a699-9f1fba8e9245
]]></description>
			<content:encoded><![CDATA[<p>Interesting ringtones&#8230;</p>
<p>download it here: <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=043c49db-e33b-4603-a699-9f1fba8e9245">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=043c49db-e33b-4603-a699-9f1fba8e9245</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/06/bing-ringtones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Widgets on Windows Mobile</title>
		<link>http://www.binzywu.com/2009/06/widgets-on-windows-mobile/</link>
		<comments>http://www.binzywu.com/2009/06/widgets-on-windows-mobile/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 08:36:58 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=49</guid>
		<description><![CDATA[Microsoft just released the new mobile 6.5 developer toolkit, and you can get it from http://www.microsoft.com/downloads/details.aspx?displaylang=en&#38;FamilyID=20686a1d-97a8-4f80-bc6a-ae010e085a6e
Normally you only can develop application for windows mobile via C/C++ or .Net CF. But as to me, I pretty hope to use more simple stuff to build app, like html and javascript, which means widget: http://www.w3.org/TR/widgets/. Like Opera widget, provides this dev [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft just released the new mobile 6.5 developer toolkit, and you can get it from <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=20686a1d-97a8-4f80-bc6a-ae010e085a6e">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=20686a1d-97a8-4f80-bc6a-ae010e085a6e</a></p>
<p>Normally you only can develop application for windows mobile via C/C++ or .Net CF. But as to me, I pretty hope to use more simple stuff to build app, like html and javascript, which means widget: <a href="http://www.w3.org/TR/widgets/">http://www.w3.org/TR/widgets/</a>. Like <a href="http://dev.opera.com/sdk/" target="_blank">Opera widget</a>, provides this dev feature, but it&#8217;s not Windows Mobile nature&#8230;</p>
<p>Great thing is coming, Windows Mobile 6.5 now supports the widget although I&#8217;m still hoping a better app list interface! Check out this about building widget on WM6.5, <a href="http://blogs.msdn.com/windowsmobile/archive/2009/06/04/getting-started-with-widgets-on-windows-mobile-6-5.aspx">http://blogs.msdn.com/windowsmobile/archive/2009/06/04/getting-started-with-widgets-on-windows-mobile-6-5.aspx</a>. Going to try creating something. <img src='http://www.binzywu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/06/widgets-on-windows-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr Mobile Site</title>
		<link>http://www.binzywu.com/2009/05/flickr-mobile/</link>
		<comments>http://www.binzywu.com/2009/05/flickr-mobile/#comments</comments>
		<pubDate>Fri, 29 May 2009 11:31:13 +0000</pubDate>
		<dc:creator>binzywu</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://www.binzywu.com/?p=43</guid>
		<description><![CDATA[http://m.flickr.com is quite nice, including structure, design and functionalities.I do not have many experiences on mobile site development, but to me, if all websites can be like flickr mobile, I don&#8217;t think the I need so many client applications. Honestly, I don&#8217;t like facebook mobile, twitter mobile, so Ihave to install client applications for them [...]]]></description>
			<content:encoded><![CDATA[<p><a title="flickr mobile" href="http://m.flickr.com" target="_blank">http://m.flickr.com</a> is quite nice, including structure, design and functionalities.I do not have many experiences on mobile site development, but to me, if all websites can be like flickr mobile, I don&#8217;t think the I need so many client applications. Honestly, I don&#8217;t like facebook mobile, twitter mobile, so Ihave to install client applications for them to get better user experience.</p>
<p>via looking into the html source of flickr, I just realized it&#8217;s true that people say iphone changed the world. And flickr mobile is optimized for iphone,completely, although I can get almost same user experience by Opera on windows mobile phone. And unfortunately, flickr mobile doesn&#8217;t response same to IE on mobile&#8230;</p>
<p>So as resource for myself, there are two sites look nice, <a title="http://www.iphonemicrosites.com" href="http://www.iphonemicrosites.com" target="_blank">http://www.iphonemicrosites.com</a> and <a href="http://www.iphonecompatible.net" target="_blank">http://www.iphonecompatible.net</a>.</p>
<div id="attachment_44" class="wp-caption alignnone" style="width: 330px"><img class="size-full wp-image-44" title="flickr" src="http://www.binzywu.com/wp-content/uploads/2009/05/flickr.jpg" alt="flickr mobile" width="320" height="320" /><p class="wp-caption-text">flickr mobile</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.binzywu.com/2009/05/flickr-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
