﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>edu328's Xanga</title><link>http://edu328.xanga.com/</link><description>Latest Xanga weblog from edu328</description><language>zh</language><ttl>60</ttl><image><title>The Weblog Community</title><url>http://s.xanga.com/images/xangalogobutton.gif</url><link>http://edu328.xanga.com/</link></image><item><title>First McDonald's TV ad</title><link>http://edu328.xanga.com/715832662/first-mcdonalds-tv-ad/</link><guid>http://edu328.xanga.com/715832662/first-mcdonalds-tv-ad/</guid><pubDate>Wed, 04 Nov 2009 07:38:31 GMT</pubDate><description> &lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/QIuXv7Y8QA4&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/QIuXv7Y8QA4&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;</description><comments>http://edu328.xanga.com/715832662/first-mcdonalds-tv-ad/#firstcomment</comments></item><item><title>Green card approved in 92 days!! (After PERM)</title><link>http://edu328.xanga.com/713621450/green-card-approved-in-92-days-after-perm/</link><guid>http://edu328.xanga.com/713621450/green-card-approved-in-92-days-after-perm/</guid><pubDate>Fri, 02 Oct 2009 22:08:02 GMT</pubDate><description>&lt;P&gt;Updated at 6:45pm&lt;/P&gt; &lt;P&gt;Application Type: I485 , APPLICATION TO REGISTER PERMANENT RESIDENCE OR TO ADJUST STATUS&lt;/P&gt; &lt;P&gt;Current Status: Card production ordered.&lt;/P&gt; &lt;P&gt;On October 2, 2009, we ordered production of your new card. Please allow 30 days for your card to be mailed to you. If we need something from you we will contact you. If you move before you receive the card, call customer service...&lt;/P&gt; &lt;P&gt;--------------------------------&lt;/P&gt; &lt;P&gt;Received this email today:&lt;/P&gt; &lt;P&gt;Application Type: I485 , APPLICATION TO REGISTER PERMANENT RESIDENCE OR TO ADJUST STATUS&lt;/P&gt; &lt;P&gt;Current Status: Notice mailed welcoming the new permanent resident.&lt;/P&gt; &lt;P&gt;On October 2, 2009, we mailed you a notice that we had registered this customer's new permanent resident status. Please follow any instructions on the notice. Your new permanent resident card should be mailed within 60 days following this registration or after you complete any ADIT processing referred to in the welcome notice, whichever is later. If you move before receiving your card, please call our customer service center at&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1-800-375-5283&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt; &lt;P&gt;...&lt;/P&gt; &lt;P&gt;&lt;BR&gt;Sincerely,&lt;/P&gt; &lt;P&gt;&lt;BR&gt;The U.S. Citizenship and Immigration Services (USCIS)&lt;/P&gt;</description><comments>http://edu328.xanga.com/713621450/green-card-approved-in-92-days-after-perm/#firstcomment</comments></item><item><title>Colbert made fun of MJ on 7/13/09 -- Death of the coverage of the death of MJ...</title><link>http://edu328.xanga.com/707264505/colbert-made-fun-of-mj-on-71309----death-of-the-coverage-of-the-death-of-mj/</link><guid>http://edu328.xanga.com/707264505/colbert-made-fun-of-mj-on-71309----death-of-the-coverage-of-the-death-of-mj/</guid><pubDate>Wed, 15 Jul 2009 08:30:45 GMT</pubDate><description> &lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/0EIOXC_rkoY&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/0EIOXC_rkoY&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/object&gt;</description><comments>http://edu328.xanga.com/707264505/colbert-made-fun-of-mj-on-71309----death-of-the-coverage-of-the-death-of-mj/#firstcomment</comments></item><item><title>Challenges in Distributed Systems</title><link>http://edu328.xanga.com/707264046/challenges-in-distributed-systems/</link><guid>http://edu328.xanga.com/707264046/challenges-in-distributed-systems/</guid><pubDate>Wed, 15 Jul 2009 08:20:20 GMT</pubDate><description>My team develops distributed systems.&amp;nbsp; I own several components.&amp;nbsp; One is Quorum.&amp;nbsp; Quorum is the config of the system deciding if the system should be up or down.&amp;nbsp; More explanation below:&lt;br&gt;&lt;br&gt;In a distributed system, there are several nodes.&amp;nbsp; We often need to tell when a system is up or down.&amp;nbsp; In a node majority quorum, we need more than half of the node to be up to declare the system to be up.&amp;nbsp; (There are more quorum types such as node + disk majority).&lt;br&gt;&lt;br&gt;I did a kernel debug last week and saw this issue:&lt;br&gt;&lt;br&gt;Consider a system S with 4 nodes {N1,N2,N3,N4} using node majority quorum. N1 crashed, then N2 crashed.&amp;nbsp; After less than 1 microsecond of the crash of N2, N3 also crash; however, at this time, the system only know N1 is down.&amp;nbsp; As a result, S is declared as up; however, this is a bug.&amp;nbsp; Timing is really a issue in DS.&lt;br&gt;&lt;br&gt;This type of bug is hard to debug and must need log files to see what happened...&lt;br&gt;&lt;br&gt;So one of my major daily job is to look at logs to see what happened.&lt;br&gt; </description><comments>http://edu328.xanga.com/707264046/challenges-in-distributed-systems/#firstcomment</comments></item><item><title>Michael Jackson Memorial - "We Are The World/Heal The World"</title><link>http://edu328.xanga.com/706692040/michael-jackson-memorial---we-are-the-worldheal-the-world/</link><guid>http://edu328.xanga.com/706692040/michael-jackson-memorial---we-are-the-worldheal-the-world/</guid><pubDate>Wed, 08 Jul 2009 09:15:30 GMT</pubDate><description> &lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/MVgjMwOPJYc&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/MVgjMwOPJYc&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;</description><comments>http://edu328.xanga.com/706692040/michael-jackson-memorial---we-are-the-worldheal-the-world/#firstcomment</comments></item><item><title>深圳珍珠奶查無茶亦無奶</title><link>http://edu328.xanga.com/706104263/%e6%b7%b1%e5%9c%b3%e7%8f%8d%e7%8f%a0%e5%a5%b6%e6%9f%a5%e7%84%a1%e8%8c%b6%e4%ba%a6%e7%84%a1%e5%a5%b6/</link><guid>http://edu328.xanga.com/706104263/%e6%b7%b1%e5%9c%b3%e7%8f%8d%e7%8f%a0%e5%a5%b6%e6%9f%a5%e7%84%a1%e8%8c%b6%e4%ba%a6%e7%84%a1%e5%a5%b6/</guid><pubDate>Wed, 01 Jul 2009 08:24:06 GMT</pubDate><description>&lt;p&gt;&amp;#20839;&amp;#22320;&amp;#22577;&amp;#31456;&amp;#22577;&amp;#36947;&amp;#65292;&lt;a class="vl_kwlink" style=""&gt;&lt;span id="&amp;#28145;&amp;#22323;" style="display: inline;"&gt;&lt;span class="vl_kw vl_vlkw"&gt;&amp;#28145;&amp;#22323;&lt;/span&gt;&lt;span class="vl_icon"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&amp;#20986;&amp;#21806;&amp;#30340;&amp;#29645;&amp;#29664;&amp;#22902;&amp;#33590;&amp;#26082;&amp;#27794;&amp;#26377;&amp;#33590;&amp;#65292;&amp;#20134;&amp;#28961;&amp;#22902;&amp;#65292;&amp;#22810;&amp;#21917;&amp;#28961;&amp;#30410;&amp;#12290;&lt;/p&gt;
&lt;p&gt;&amp;#28145;&amp;#22323;&amp;#12298;&amp;#26230;&amp;#22577;&amp;#12299;&amp;#22577;&amp;#36947;&amp;#65292;&amp;#24066;&amp;#22580;&amp;#19978;&amp;#22823;&amp;#37096;&amp;#20998;&amp;#29645;&amp;#29664;&amp;#22902;&amp;#33590;&amp;#20854;&amp;#23526;&amp;#12300;&amp;#28961;&amp;#22902;&amp;#20063;&amp;#28961;&amp;#33590;&amp;#12301;&amp;#65292;&amp;#32780;&amp;#26159;&amp;#21152;&amp;#26377;&amp;#22823;&amp;#37327;&amp;#23565;&amp;#20154;&amp;#39636;&amp;#26377;&amp;#23475;&amp;#30340;&amp;#22902;&amp;#31934;&amp;#65292;&amp;#36996;&amp;#26377;&amp;#37096;&amp;#20998;&amp;#29978;&amp;#33267;&amp;#22312;&amp;#22902;&amp;#33590;&amp;#20013;&amp;#28155;&amp;#21152;&amp;#20102;&amp;#22823;&amp;#37327;&amp;#33394;&amp;#32032;&amp;#12289;&amp;#39321;&amp;#31934;&amp;#12289;&amp;#31958;&amp;#31934;&amp;#12289;&amp;#26408;&amp;#34223;&amp;#31881;&amp;#12289;&amp;#33258;&amp;#20358;&amp;#27700;&amp;#65292;&amp;#23560;&amp;#23478;&amp;#25351;&amp;#20986;&amp;#65292;&amp;#32147;&amp;#24120;&amp;#39154;&amp;#29992;&amp;#36889;&amp;#31278;&amp;#39154;&amp;#21697;&amp;#26131;&amp;#24739;&amp;#24515;&amp;#34880;&amp;#31649;&amp;#30142;&amp;#30149;&amp;#65292;&amp;#20006;&amp;#24314;&amp;#35696;&amp;#24066;&amp;#27665;&amp;#28187;&amp;#23569;&amp;#39154;&amp;#29992;&amp;#12290;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;span style="font-family: Verdana;"&gt;http://hk.news.yahoo.com/article/090701/4/cz2s.html&lt;/span&gt; </description><comments>http://edu328.xanga.com/706104263/%e6%b7%b1%e5%9c%b3%e7%8f%8d%e7%8f%a0%e5%a5%b6%e6%9f%a5%e7%84%a1%e8%8c%b6%e4%ba%a6%e7%84%a1%e5%a5%b6/#firstcomment</comments></item><item><title>Like playing water in the pool</title><link>http://edu328.xanga.com/703074565/like-playing-water-in-the-pool/</link><guid>http://edu328.xanga.com/703074565/like-playing-water-in-the-pool/</guid><pubDate>Thu, 28 May 2009 03:59:27 GMT</pubDate><description>Every full time Microsoft Employee has access to a very nice gym called ProClub (unless in rare cases where the employee chooses to take cash -- $9/mo. -- instead of the gym membership).&lt;br&gt;&lt;br&gt;I didn't go to the gym often (approx 8 miles away from my apt).&lt;br&gt;&lt;br&gt;During the Memorial Day Weekend, I had nothing to do.&amp;nbsp; So I visited the gym.&amp;nbsp; Now I'm going there everyday.&amp;nbsp; At least I swim 2 times since last Sunday.&amp;nbsp; It seems I'm getting healthier and I no longer get stomach pain.&amp;nbsp; Now I decided to at least swim twice a week.&amp;nbsp; Let's see if my belly will go away or not.&lt;br&gt; </description><comments>http://edu328.xanga.com/703074565/like-playing-water-in-the-pool/#firstcomment</comments></item><item><title>PowerShell is cool!</title><link>http://edu328.xanga.com/702257817/powershell-is-cool/</link><guid>http://edu328.xanga.com/702257817/powershell-is-cool/</guid><pubDate>Tue, 19 May 2009 05:45:55 GMT</pubDate><description>Powershell basically let you do scripting in which you are dealing with objects, not text (e.g UNIX shell scripting or PERL).&amp;nbsp; You can call C# methods on those objects. </description><comments>http://edu328.xanga.com/702257817/powershell-is-cool/#firstcomment</comments></item><item><title>Moving to New Team</title><link>http://edu328.xanga.com/702083104/moving-to-new-team/</link><guid>http://edu328.xanga.com/702083104/moving-to-new-team/</guid><pubDate>Sun, 17 May 2009 08:03:25 GMT</pubDate><description>Friday was my last day with the Windows Storage Server team.&lt;br&gt;&lt;br&gt;I'm moving to Clustering Server on Monday.&lt;br&gt;&lt;br&gt;FYI: if you need a job, please let me know.&amp;nbsp; My previous team has several positions open, and we are expanding despite of the layoff.&lt;br&gt; </description><comments>http://edu328.xanga.com/702083104/moving-to-new-team/#firstcomment</comments></item><item><title>Got PERM approval for EB2</title><link>http://edu328.xanga.com/702082946/got-perm-approval-for-eb2/</link><guid>http://edu328.xanga.com/702082946/got-perm-approval-for-eb2/</guid><pubDate>Sun, 17 May 2009 08:00:49 GMT</pubDate><description>Got an update about my green card application.&lt;br&gt;&lt;br&gt;PERM was submitted on Nov 21, 2008.&amp;nbsp; Approved on May 6, 2009.&amp;nbsp; Can file I-140 and I-485 concurrently. </description><comments>http://edu328.xanga.com/702082946/got-perm-approval-for-eb2/#firstcomment</comments></item></channel></rss>