<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments for Edwin Chan's weblog</title>
	<atom:link href="http://edwinchan.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://edwinchan.wordpress.com</link>
	<description>Edwin Chan's weblog</description>
	<lastBuildDate>Mon, 07 Sep 2009 02:00:10 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Sudoku solver in C using backtracking by Boss Resurfacing</title>
		<link>http://edwinchan.wordpress.com/2006/01/08/sudoku-solver-in-c-using-backtracking/#comment-831</link>
		<dc:creator>Boss Resurfacing</dc:creator>
		<pubDate>Mon, 07 Sep 2009 02:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2006/01/08/sudoku-solver-in-c-using-backtracking/#comment-831</guid>
		<description>Off topic - Help with PM?
lost password
&lt;a href=&quot;http://dacren.blogspot.com/2009/02/boss-resurfacing-grapevine-texas.html&quot; rel=&quot;nofollow&quot;&gt;Boss Resurfacing&lt;/a&gt;
&lt;a href=&quot;http://www.merchantcircle.com/blogs/Boss.Resurfacing.817-481-2277&quot; rel=&quot;nofollow&quot;&gt;Boss Resurfacing&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Off topic &#8211; Help with PM?<br />
lost password<br />
<a href="http://dacren.blogspot.com/2009/02/boss-resurfacing-grapevine-texas.html" rel="nofollow">Boss Resurfacing</a><br />
<a href="http://www.merchantcircle.com/blogs/Boss.Resurfacing.817-481-2277" rel="nofollow">Boss Resurfacing</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing the PMP exam by Francisco Jara</title>
		<link>http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-830</link>
		<dc:creator>Francisco Jara</dc:creator>
		<pubDate>Thu, 06 Aug 2009 08:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-830</guid>
		<description>One resource that has helped me understanding the ITTOs is this methodology (it is really an skeleton of a methodology):

http://pmbok.metocube.com/mc/element/view-web/Project+Management+Methodology

You can navigate to the page of a process, document, etc..., try to remember all the relations it has with other elements in the pmbk and see if you were right.</description>
		<content:encoded><![CDATA[<p>One resource that has helped me understanding the ITTOs is this methodology (it is really an skeleton of a methodology):</p>
<p><a href="http://pmbok.metocube.com/mc/element/view-web/Project+Management+Methodology" rel="nofollow">http://pmbok.metocube.com/mc/element/view-web/Project+Management+Methodology</a></p>
<p>You can navigate to the page of a process, document, etc&#8230;, try to remember all the relations it has with other elements in the pmbk and see if you were right.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing the PMP exam by Ravi</title>
		<link>http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-829</link>
		<dc:creator>Ravi</dc:creator>
		<pubDate>Wed, 10 Jun 2009 15:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-829</guid>
		<description>Thanks for the tips..Pls can you mail me the notes.</description>
		<content:encoded><![CDATA[<p>Thanks for the tips..Pls can you mail me the notes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sudoku solver in C using backtracking by george</title>
		<link>http://edwinchan.wordpress.com/2006/01/08/sudoku-solver-in-c-using-backtracking/#comment-820</link>
		<dc:creator>george</dc:creator>
		<pubDate>Fri, 06 Feb 2009 18:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2006/01/08/sudoku-solver-in-c-using-backtracking/#comment-820</guid>
		<description>Your &quot;input_value&quot; can definitely be waaay simpler.
Try something like this:


/*Returns 1 if n is allowed in position [a,b] of sudoku[9][9] 
and 0 if not*/
int can_put_n_here(int n, int sdku[][9] ,int a, int b)
{
	int i;
	for(i=0; i&lt;9; ++i){
		if(sdku[a][i]==n &#124;&#124; sdku[i][b]==n &#124;&#124; sdku[3*(a/3)][3*(b/3)+9*(i/3)+(i % 3)]==n)
			return(0);
	}
	return(1);
}

For a given n, a and b and for a given 9X9 matrix sdku,
it checks if n is allowed to be put in the position[a][b].
If it is, it returns 1. If it is not, it returns 0.</description>
		<content:encoded><![CDATA[<p>Your &#8220;input_value&#8221; can definitely be waaay simpler.<br />
Try something like this:</p>
<p>/*Returns 1 if n is allowed in position [a,b] of sudoku[9][9]<br />
and 0 if not*/<br />
int can_put_n_here(int n, int sdku[][9] ,int a, int b)<br />
{<br />
	int i;<br />
	for(i=0; i&lt;9; ++i){<br />
		if(sdku[a][i]==n || sdku[i][b]==n || sdku[3*(a/3)][3*(b/3)+9*(i/3)+(i % 3)]==n)<br />
			return(0);<br />
	}<br />
	return(1);<br />
}</p>
<p>For a given n, a and b and for a given 9X9 matrix sdku,<br />
it checks if n is allowed to be put in the position[a][b].<br />
If it is, it returns 1. If it is not, it returns 0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing the PMP exam by Taseer</title>
		<link>http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-816</link>
		<dc:creator>Taseer</dc:creator>
		<pubDate>Tue, 06 Jan 2009 15:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-816</guid>
		<description>I failed and I’m taking the exam in next month. 
Can you kindly send me the notes you mentioned please.
Thanks for the good tips.</description>
		<content:encoded><![CDATA[<p>I failed and I’m taking the exam in next month.<br />
Can you kindly send me the notes you mentioned please.<br />
Thanks for the good tips.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passing the PMP exam by BL</title>
		<link>http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-815</link>
		<dc:creator>BL</dc:creator>
		<pubDate>Tue, 30 Dec 2008 21:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2007/06/08/pmp-exam/#comment-815</guid>
		<description>Edwin, 
I recently (today) took the PMP exam  for the 2nd time. I unfortunately did not pass. On my drive home from the testing center, I decided to immediately identify resources on the web that would prove helpful to me in passing the exam... I downloaded your study notes and took a cursory glance at them. I hope to pass on my third attempt in a few weeks. Thanks for posting your experience. 
Byron</description>
		<content:encoded><![CDATA[<p>Edwin,<br />
I recently (today) took the PMP exam  for the 2nd time. I unfortunately did not pass. On my drive home from the testing center, I decided to immediately identify resources on the web that would prove helpful to me in passing the exam&#8230; I downloaded your study notes and took a cursory glance at them. I hope to pass on my third attempt in a few weeks. Thanks for posting your experience.<br />
Byron</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Very basic concepts on options by sandeep bodke</title>
		<link>http://edwinchan.wordpress.com/2008/04/13/very-basic-concepts-on-options/#comment-814</link>
		<dc:creator>sandeep bodke</dc:creator>
		<pubDate>Tue, 02 Dec 2008 06:38:58 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/?p=67#comment-814</guid>
		<description>hi this is sandeep bodke 
i m very new in the stock market i didn&#039;t get what farumla u given here please clear me from very basic 

thanx and regards 

sandeep bodke 
9881007179</description>
		<content:encoded><![CDATA[<p>hi this is sandeep bodke<br />
i m very new in the stock market i didn&#8217;t get what farumla u given here please clear me from very basic </p>
<p>thanx and regards </p>
<p>sandeep bodke<br />
9881007179</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Warning: Don&#8217;t apply to IBM GDC China by Richard Woon</title>
		<link>http://edwinchan.wordpress.com/2007/07/17/warning-dont-apply-to-ibm-gdc-china/#comment-812</link>
		<dc:creator>Richard Woon</dc:creator>
		<pubDate>Thu, 16 Oct 2008 08:11:47 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2007/07/17/warning-dont-apply-to-ibm-gdc-china/#comment-812</guid>
		<description>Generally speaking, 16k per month is a regular salary for PMs in China IT resource market. As I know, some IT companies only offer 12K. Of course you can find some good job in 1st class non-IT companies for 20K even above. BTW, where are you working now? HK? US? China?</description>
		<content:encoded><![CDATA[<p>Generally speaking, 16k per month is a regular salary for PMs in China IT resource market. As I know, some IT companies only offer 12K. Of course you can find some good job in 1st class non-IT companies for 20K even above. BTW, where are you working now? HK? US? China?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Alvin</title>
		<link>http://edwinchan.wordpress.com/about/#comment-729</link>
		<dc:creator>Alvin</dc:creator>
		<pubDate>Tue, 05 Aug 2008 03:21:14 +0000</pubDate>
		<guid isPermaLink="false">/about/#comment-729</guid>
		<description>HI Edwin,

I recently discovered your blog and noticed that you&#039;re interested in programming and business.

I&#039;m a rising junior at Stanford University and I came back to Hong Kong this summer to do my internship as well as starting an IT company that does web 2.0 products.

We have a small team right now and were wondering if you&#039;re interested in meeting us.  We are all relatively young (mostly fresh grad) but are passionate about technology and web.  Let me know if you&#039;re interested.

Thanks,
Alvin</description>
		<content:encoded><![CDATA[<p>HI Edwin,</p>
<p>I recently discovered your blog and noticed that you&#8217;re interested in programming and business.</p>
<p>I&#8217;m a rising junior at Stanford University and I came back to Hong Kong this summer to do my internship as well as starting an IT company that does web 2.0 products.</p>
<p>We have a small team right now and were wondering if you&#8217;re interested in meeting us.  We are all relatively young (mostly fresh grad) but are passionate about technology and web.  Let me know if you&#8217;re interested.</p>
<p>Thanks,<br />
Alvin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C/C++/STL/Unix Programmer Question and Answers by ElohessrelEbed</title>
		<link>http://edwinchan.wordpress.com/2007/12/22/ccstlunix-programmer-question-and-answers/#comment-707</link>
		<dc:creator>ElohessrelEbed</dc:creator>
		<pubDate>Sun, 03 Aug 2008 15:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://edwinchan.wordpress.com/2007/12/22/ccstlunix-programmer-question-and-answers/#comment-707</guid>
		<description>Brilliant!</description>
		<content:encoded><![CDATA[<p>Brilliant!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
