User Morgan Cheng - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:28:01Z http://stackoverflow.com/feeds/user/26349 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1854956/how-to-make-vimgrep-do-word-match-search 0 How to make vimgrep do word match search? Morgan Cheng 2009-12-06T10:08:30Z 2009-12-06T16:58:07Z <p>I have below statement in _vimrc file to map F3 to do vimgrep for word under current cursor.</p> <pre><code>map &lt;F3&gt; :execute "noautocmd vimgrep /" . expand("&lt;cword&gt;") . "/gj **/*." . expand("%:e") &lt;Bar&gt; cw&lt;CR&gt; </code></pre> <p>Now, I want to make it vimgrep for exact word match for word under current cursor. I changed it as below but it doesn't work.</p> <pre><code>map &lt;leader&gt;s :execute "noautocmd vimgrep /\&lt;" . expand("&lt;cword&gt;") . "\&gt;/gj **/*." . expand("%:e") &lt;Bar&gt; cw&lt;CR&gt; </code></pre> <p>Anything is wrong? How can i achieve exact word match?</p> http://stackoverflow.com/questions/1830062/how-feedburner-knows-number-of-subscribers-to-a-rss-feed 0 How Feedburner knows number of subscribers to a RSS Feed? Morgan Cheng 2009-12-02T01:08:50Z 2009-12-02T01:20:07Z <p>Feedburner(<a href="http://feedburner.google.com" rel="nofollow">http://feedburner.google.com</a>) provides statistics about RSS feed of subscribers and reaches. This is interesting. </p> <p>It is easy to understand that Feedburner can count visits (reaches) to a RSS feed. But, how does Feedburner get to know subscribers to a RSS feed. </p> <p>In my understanding, each requests to RSS Feed URI is independent. There are no cookies or identity validation. So, how does feedburner know how many subscribers to a RSS feed?</p> http://stackoverflow.com/questions/779959/is-it-necessary-to-escape-character-and-for-javascript-string 4 Is it necessary to "escape" character "<" and ">" for javascript string? Morgan Cheng 2009-04-23T01:27:41Z 2009-11-30T05:35:34Z <p>Sometimes, server side will generate strings to be embedded in inline JavaScript code. For example, if "UserName" should be generated by ASP.NET. Then it looks like.</p> <pre><code>&lt;script&gt; var username = "&lt;%UserName%&gt;"; &lt;/script&gt; </code></pre> <p>This is not safe, because a user can have his/her name to be </p> <p><code>&lt;/script&gt;&lt;script&gt;alert('bug')&lt;/script&gt;&lt;/script&gt;</code></p> <p>It is XSS vulnerability.</p> <p>So, basically, the code should be:</p> <pre><code>&lt;script&gt; var username = "&lt;% JavascriptEncode(UserName)%&gt;"; &lt;/script&gt; </code></pre> <p>What <strong>JavascriptEncode</strong> does is to add charater "\" before "/" and "'" and """. So, the output html is like. var username = "&lt;\/script>alert(\'bug\')&lt;\/script>&lt;\/script>"; </p> <p>Browser will not interpret "<strong><em>&lt;\/script></em></strong>" as end of script block. So, XSS in avoided.</p> <p>However, there are still "&lt;" and ">" there. It is suggested to escape these two characters as well. First of all, I don't believe it is a good idea to change "&lt;" to "&amp;lt;" and ">" to "&amp;gt;" here. And, I'm not sure changing "&lt;" to "\&lt;" and ">" to "\>" is recognizable to all browsers. It seems it is not necessary to do further encoding for "&lt;" and ">".</p> <p>Is there any suggestion on this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1814373/why-c-pageup-and-c-pagedown-not-work-in-vim 2 Why <C-PageUp> and <C-PageDown> not work in vim? Morgan Cheng 2009-11-29T01:48:05Z 2009-11-29T02:37:19Z <p>I have vim 7.2 installed in my windows. In gvim, the and works for navigation among tabs by default. However, it doesn't work for vim.</p> <p>Even I have below lines in _vimrc added. It still not work.</p> <pre><code>map &lt;C-PageUp&gt; :tabp&lt;CR&gt; map &lt;C-PageDown&gt; :tabn&lt;CR&gt; </code></pre> <p>But, map and works.</p> <pre><code>map &lt;C-left&gt; :tabp&lt;CR&gt; map &lt;C-right&gt; :tabn&lt;CR&gt; </code></pre> <p>Anybody has clue for that?</p> http://stackoverflow.com/questions/1812448/what-is-difference-between-function-and-function-in-vim 3 What is difference between "function" and "function!" in VIM? Morgan Cheng 2009-11-28T12:40:45Z 2009-11-28T12:47:20Z <p>I beheld quite a few usage of "function!" in others vimrc files, but there is no easy-to-find documentation of "function!".</p> <p>What's the difference between "function" and "function!"?</p> http://stackoverflow.com/questions/336415/asp-net-mvc-changed-a-lot-after-scottgus-blogging 0 ASP.NET MVC changed a lot after ScottGu's blogging? Morgan Cheng 2008-12-03T07:29:00Z 2009-11-24T15:14:11Z <p>I'm reading ScottGu's blog about ASP.NET MVC, and found a lot of code cannot compile or doesn't work as expected. </p> <p><a href="http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/11/13/asp-net-mvc-framework-part-1.aspx</a> <a href="http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx</a></p> <p>So, did ASP.NET MVC go through huge change after his blogging? any up-to-date online tutorial about ASP.NET MVC?</p> http://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution 2 Does ASP.NET MVC Framework support asynchronous page execution? Morgan Cheng 2008-11-09T03:11:32Z 2009-11-22T02:00:58Z <p>I'm learning ASP.NET MVC Framework, From some articles like <a href="http://weblogs.asp.net/stephenwalther/archive/2008/03/17/asp-net-mvc-in-depth-the-life-of-an-asp-net-mvc-request.aspx" rel="nofollow">this</a>, it seems that MvcHandler has only Execute() implemented, there is no asynchronous API implemented. Actually, I don't think Controller has asynchronous API either.</p> <p>So, ASP.NET MVC doesn't support asynchronous programming? this could be a big hurdle to scalability if the web page needs I/O operation.</p> http://stackoverflow.com/questions/1761249/why-only-asp-net-have-asynchronous-programming-model 1 Why only ASP.NET have asynchronous programming model? Morgan Cheng 2009-11-19T06:20:00Z 2009-11-19T07:23:46Z <p>I works with ASP.NET. IMHO, the asynchronous programming support in ASP.NET is beautiful. That is, we can have BeginXXXX/EndXXXX pair method to improve scalability for resource intensive task. </p> <p>For example, one operation needs to get huge data from database and render it on response web page. If we have this operation synchronous. The thread handing this request will be occupied for the whole page life cycle. Since threads are limited resource, it is always better to program operation with I/O in asynchronous way. That is, ASP.NET will allocate thread to invoke BeginXXXX method with a callback function. The thread invokes BeginXXXX returns immediately and can be arranged to handle other requests. When the job is done, the callback function is triggered and ASP.NET will invoke EndXXXX to get the actually response. </p> <p>This asynchronous programming model can fully takes advantage of threading resources. Even though there is limit of ThreadPool, it can actually handle much more requests. However, if we program in synchronous way, and each request needs lengthy I/O, the concurrent requests would not exceed size of thread pool.</p> <p>Recently, I have chance to explore other web development solution such as PHP and Ruby on Rails. To my surprise, these solutions doesn't have counterpart of asynchronous programming model. Each request is handled by one thread or process for the whole life cycle. That is, the thread or process is occupied before the last bit of response is sent.</p> <p>There is something similar to asynchronously(<a href="http://netevil.org/blog/2005/may/guru-multiplexing" rel="nofollow">http://netevil.org/blog/2005/may/guru-multiplexing</a>), but the baseline is that there is always one thread or process occupied for the request. This is not like ASP.NET.</p> <p>So, I am wondering: why doesn't these popular web solution have asynchronous programming model like ASP.NET? Why only ASP.NET evolves to use asynchronous approach?</p> <p>Is it because PHP and Ruby-on-Rails mostly deployed in Linux? And Linux doesn't suffer process/thread performance penalty like Microsoft Windows?</p> <p>Or, is there actually asynchronous solution for PHP and Ruby-on-Rails that I haven't find?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1141164/why-windows-live-spaces-fetch-image-through-https 0 Why Windows Live Spaces Fetch Image Through HTTPS? Morgan Cheng 2009-07-17T02:02:33Z 2009-11-17T10:00:02Z <p>I happens to find that, when a live space page is loaded, inline images are fetched by https protocol instead of http protocol.</p> <p>This doesn't make sense. The text part of live space is not fetched by https, why images are fetched with https? I bet the https way to fetch image just make the page loaded slower.</p> <p>Is there any special advantage to choose https over http in this case?</p> http://stackoverflow.com/questions/1737519/does-php-support-asynchronous-programming 1 Does PHP support asynchronous programming? Morgan Cheng 2009-11-15T13:21:01Z 2009-11-15T17:23:32Z <p>I'm new to PHP. I am familiar with ASP.NET which support asynchronous programming. That is, if one request needs to do some I/O job. It is suggested to program the web page with BeginProcess/EndProcess way. The asynchronous programming is key to improve scalability.</p> <p>I'm wondering whether there is counterpart of asynchronous programming(BeginXXXX/EndXXXX) in PHP world. </p> http://stackoverflow.com/questions/245607/how-is-generic-covariance-contra-variance-implemented-in-c-4-0 4 How is Generic Covariance & Contra-variance Implemented in C# 4.0? Morgan Cheng 2008-10-29T02:27:19Z 2009-11-13T08:14:35Z <p>I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, <code>List&lt;string&gt;</code> can be assigned to <code>List&lt;object&gt;</code>. How could that be?</p> <p>In Jon Skeet's book <strong><em>C# in Depth</em></strong>, it is explained why C# generics doesn't support covariance and contra-variance. It is mainly for writing secure code. Now, C# 4.0 changed to support them. Would it bring chaos?</p> <p>Anybody know the details about C# 4.0 can give some explanation?</p> http://stackoverflow.com/questions/1726823/how-to-find-all-coupling-bracket-with-regular-expression 0 How to find all coupling bracket with regular expression? Morgan Cheng 2009-11-13T02:49:12Z 2009-11-13T07:39:57Z <p>I'd like to have one regular expression to find all curly brackets and replace them with other strings.</p> <p>For example, I want to replace "<strong>{foo}</strong>" with "<strong>FOO</strong>" and "<strong>{bar}</strong>" with "<strong>BAR</strong>" and "<strong>{}</strong>" with "<strong>EMPTY</strong>". If the input is "<strong>abc {foo} def {bar} {}</strong>", then the output is "<strong>abc FOO def BAR EMPTY</strong>".</p> <p>Nested brackets or un-coupled brackets are not allowed. If character "{" or "}" is necessary. It should be doubled. So, "{{ def }}" is just "{ def }".</p> <p>Other string in {} is not allowed. Say, I just want "<strong>{foo}</strong>" and "<strong>{bar}</strong>". So, "<strong>abc {xyz} def</strong>" should be recognized as invalid input.</p> http://stackoverflow.com/questions/1727301/does-c-resolve-dependencies-amongy-static-data-member-automatically 3 Does C# resolve dependencies amongy static data member automatically? Morgan Cheng 2009-11-13T05:30:28Z 2009-11-13T05:59:37Z <p>If one static data member depends on another static data member, does C#/.NET guarantee the depended static member is initialized before the dependent member?</p> <p>For example, we have one class like below</p> <pre><code>class Foo { public static string a = "abc"; public static string b = Foo.a + "def"; } </code></pre> <p>When <strong>Foo.b</strong> is accessed, is it always "abcdef" or can be "def"?</p> <p>If this is not guaranteed, is there any better way to make sure depended member initialized first?</p> http://stackoverflow.com/questions/366151/asp-net-mvc-doesnt-work-with-viewstate-and-postback 4 ASP.NET MVC doesn't work with ViewState and Postback? Morgan Cheng 2008-12-14T03:49:53Z 2009-11-10T10:16:54Z <p>Perhaps this is a naive question. In my understanding, ASP.NET cannot work with ViewState and Postback which is fundamentals of ASP.NET forms. Is that correct?</p> <p>If that's it, then all ASP.NET Web Controls depending on ViewState &amp; Postback cannot be used in ASP.NET MVC, right?</p> http://stackoverflow.com/questions/1581467/how-to-design-table-that-can-be-re-sequenced 5 How to design table that can be re-sequenced? Morgan Cheng 2009-10-17T05:09:57Z 2009-10-28T10:36:24Z <p>I need to make a design decision about database. The requirment is that one database table has an <strong>*AUTO_INCREMENT PRIMARY KEY*</strong> field called <strong>id</strong>. By default, each row is shown to user (in web) sorted ascendenting by <strong>id</strong>. For example, if there are 4 records in the table. The UI will show rows in sequence of <strong><em>0, 1, 2, 3</em></strong>.</p> <p>Now, there is requirement that user can drag &amp; drop row in UI to change sequence. Say, user drag rom 3 and drop it befow 0. So, the display sequence turns to be <strong><em>3, 0, 1, 2</em></strong>. This sequence should be persistent into database.</p> <p>I'm wondering how to design database table to make this persistent and scalable. My first thought is that each row has a "<strong><em>sequence</em></strong>" field indicating the display sequence. By default, the value should be same as <strong>id</strong>. When selecting data from database for display, the rows are sorted ascending on <strong>sequence</strong> instead of <strong>id.</strong></p> <p>If sequence is changed, then it is updated to new value. The result is that it may involves a lot of changes in other rows. Taking example above, originally the table is like this:</p> <pre><code>|id | sequence | |0 | 0 | |1 | 1 | |2 | 2 | |3 | 3 | </code></pre> <p>Now, after drag row with id 3 to first. Its <strong>sequence</strong> is updated to 0. At the same time, row with id 0, 1, 2 should also be updated.</p> <pre><code>|id | sequence | |0 | 1 | |1 | 2 | |2 | 3 | |3 | 0 | </code></pre> <p>I'm afraid this approach will make re-sequence cost a lot resource and not scalable. So, I suppose the <strong>sequence</strong> can be intiialized by multiplying <strong>id</strong> with K(say, 10). This leaves gaps between <strong>sequence</strong> value for insertion. However, the gap can still consumed up if K+1 rows are moved to this gap.</p> <pre><code>|id | sequence | |0 | 0 | |1 | 10 | |2 | 20 | |3 | 30 | </code></pre> <p>This seems a common problem to database design. Anybody has better idea to achive this?</p> http://stackoverflow.com/questions/1231484/which-is-the-future-of-web-development-html5-or-silverlightor-other-ria-framewo 4 Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? Morgan Cheng 2009-08-05T06:18:37Z 2009-10-26T20:50:53Z <p>My colleagues have a heated debate on what is the future of web development. One side is supporting HTML5 and the other is supporting Silverlight. There is no conclusion of the debate yet.</p> <p>In my humble opinion as a programmer, HTML5 will not improve programming productivity, while Silverlight will. In my understanding, programmers still need to program in JavaScript to take advantage of HTML5. For Silverlight, we can use C# which is static-type language. A lot of coding defects can be found in compilation time. </p> <p>For HTML5, different browsers might still have different behavior even though there is spec. For Silverlight, generally what works in IE will work the same way in other browsers.</p> <p>Just my thoughts. Any idea on how to choose future direction of web development?</p> http://stackoverflow.com/questions/1030455/how-to-handle-exception-thrown-from-dispose 1 How to handle exception thrown from Dispose? Morgan Cheng 2009-06-23T03:04:17Z 2009-10-24T06:46:22Z <p>Recently, I was researching some tricky bugs about object not disposed.</p> <p>I found some pattern in code. It is reported that some m_foo is not disposed, while it seems all instances of SomeClass has been disposed.</p> <pre><code>public class SomeClass: IDisposable { void Dispose() { if (m_foo != null) { m_foo.Dispose(); } if (m_bar != null) { m_bar.Dispose(); } } private Foo m_foo; private Bar m_bar; } </code></pre> <p>I suspects that Foo.Dispose might throw a exception, so that following code is not executed so m_bar is not disposed. </p> <p>Since Foo/Bar might be from third party, so it is not guaranteed to not throwing exception. </p> <p>If just wrap all Dispose invocation with try-catch, the code will turn to be clumsy.</p> <p>What's best practice to handle this?</p> http://stackoverflow.com/questions/1576018/how-to-get-last-inserted-row-id-from-wordpress-database 0 How to get last inserted row ID from wordpress database? Morgan Cheng 2009-10-16T01:27:18Z 2009-10-19T02:24:44Z <p>My wordpress plugin has a table with a <strong>AUTO_INCREMENT</strong> primary key field called ID. When a new row is inserted into the table, I'd like to get the ID value of the insertion. </p> <p>The feature is to using AJAX to post data to server to insert into DB. The new row ID is returned in the AJAX response to update client status. It is possible that multiple clients are posting data to server at the same time. So, I have to make sure that each AJAX request get the EXACT new row ID in response.</p> <p>In PHP, there is a method called <strong>*mysql_insert_id*</strong> for this feature.But, it is valid for race condition only if the argument is <strong>*link_identifier*</strong> of last operation. My operation with database is on $wpdb. How to extract the <strong>*link_identifier*</strong> from $wpdb to make sure mysql_insert_id work? Is there any other way to get the last-inserted-row id from $wpdb?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1554722/how-to-make-and-e-work-in-any-php-file-of-wordpress 0 How to make __() and _e() work in any PHP file of wordpress? Morgan Cheng 2009-10-12T13:54:27Z 2009-10-13T05:01:37Z <p>I'd like to have wordpress to do I18N for my javascript. My plan is to have javascript code in php file. For example, one sample.js.php file as below:</p> <pre><code>function foo() { alert(&lt;?php _e('do something'); ?&gt;); } </code></pre> <p>The sample.js.php file is referred as javascript.</p> <pre><code>&lt;script type='text/javascript'&gt;url-to-myplugin/sample.js.php&lt;/script&gt; </code></pre> <p>However, it seems __() and _e() does't work as they are not defined. How to make the _e() and __() work in my case?</p> <p>Thanks</p> <p><hr /></p> <p>I found the answer. Below code will do the work.</p> <pre><code>&lt;?php define('WP_USE_THEMES', false); require('./wp-blog-header.php'); ?&gt; </code></pre> http://stackoverflow.com/questions/1553549/how-to-internationalize-string-used-in-javascript-code 1 How to internationalize string used in javascript code? Morgan Cheng 2009-10-12T09:22:41Z 2009-10-12T11:43:10Z <p>While developing AJAX program, I met the design decision to make string I18N in JavaScript.code. Some string is only used by JavaScript. For example.</p> <pre><code>$('#submit').click(function() { $(#target).html('Please wait while submitting...').load(someURI); } </code></pre> <p>I'd like to I18N the string 'Please wait while submitting...'. I'm not sure what's the best way to do it. Currently, I just have the string I18N-ed in server and rendered into a javascript variable in page (I'm using PHP/wordpress).</p> <pre><code>&lt;script&gt;strSubmit = &lt;?php _e('Please wait while submitting...'); ?&gt;&lt;/script&gt; </code></pre> <p>Then, in javascript, I just use the varialble</p> <pre><code>$('#submit').click(function() { $(#target).html(strSubmit).load(someURI); } </code></pre> <p>This works, but it looks messy. Is there any better way to achieve this?</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/229839#229839 3 Answer by Morgan Cheng for What is the one programming skill you have always wanted to master but haven't had time? Morgan Cheng 2008-10-23T14:04:43Z 2009-10-10T18:12:24Z <p>I always want to learn F#, a functional program language on .NET.</p> <p>I'm surprised that so many people share same mind with me.</p> http://stackoverflow.com/questions/1512358/does-browser-load-a-whole-block-of-javascript-before-its-execution 0 Does Browser load a whole block of JavaScript Before its execution? Morgan Cheng 2009-10-03T00:05:46Z 2009-10-06T15:03:24Z <p>Below is valid javascript code:</p> <pre><code>&lt;script&gt; foo(); function foo() { alert("foo"); } &lt;/script&gt; </code></pre> <p>The function foo is invoked before its declaration. So, I think browser must load the whole block script before its execution. By "whole block", I mean a open tag to a clos tag or a external javascript file. Is this true?</p> http://stackoverflow.com/questions/1523174/whats-the-best-practice-to-transfer-a-variable-value-to-javascript-from-server 2 What's the best practice to transfer a variable value to javascript from server? Morgan Cheng 2009-10-06T01:17:03Z 2009-10-06T04:52:49Z <p>I'm developing a pet project with jQuery. Now the application requires some variable value is transferred to client javascript when the page is loaded. I'm wondering what's the best practice to do it.</p> <p>I can image to do it in two ways. First, render it to be a javascript variable in the page.</p> <pre><code>&lt;script&gt; &lt;?php echo "var maxid = $maxid;"?&gt; &lt;/script&gt; </code></pre> <p>Which means the client will see</p> <pre><code>&lt;script&gt; var maxid = &lt;somevar&gt;; &lt;/script&gt; </code></pre> <p>Second, assign it to be an attribute of one element.</p> <pre><code>&lt;div maxid="&lt;php echo $maxid &gt;" /&gt; </code></pre> <p>Which approach is better? Is there any other way to do it?</p> http://stackoverflow.com/questions/402211/how-to-use-xpath-function-in-a-xpathexpression-instance-programatically 1 How to use XPath function in a XPathExpression instance programatically? Morgan Cheng 2008-12-31T03:12:24Z 2009-09-26T16:44:00Z <p>My current program need to use programatically create a XPathExpression instance to apply to XmlDocument. The xpath needs to use some XPath functions like "ends-with". However, I cannot find a way to use "ends-with" in XPath. I</p> <p>It throw exception like below</p> <blockquote> <p>Unhandled Exception: System.Xml.XPath.XPathException: Namespace Manager or XsltC ontext needed. This query has a prefix, variable, or user-defined function.<br /> at MS.Internal.Xml.XPath.CompiledXpathExpr.get_QueryTree() at System.Xml.XPath.XPathNavigator.Evaluate(XPathExpression expr, XPathNodeIt erator context)<br /> at System.Xml.XPath.XPathNavigator.Evaluate(XPathExpression expr)</p> </blockquote> <p>The code is like this:</p> <pre><code> XmlDocument xdoc = new XmlDocument(); xdoc.LoadXml(@"&lt;?xml version=""1.0"" encoding=""utf-8"" ?&gt; &lt;myXml xmlns=""http://MyNamespace"" xmlns:fn=""http://www.w3.org/2005/xpath-functions""&gt; &lt;data&gt;Hello World&lt;/data&gt; &lt;/myXml&gt;"); XPathNavigator navigator = xdoc.CreateNavigator(); XPathExpression xpr; xpr = XPathExpression.Compile("fn:ends-with(/myXml/data, 'World')"); object result = navigator.Evaluate(xpr); Console.WriteLine(result); </code></pre> <p>I tried to change the code to insert XmlNamespaceManager when compiling the expression, like below</p> <pre><code> XmlDocument xdoc = new XmlDocument(); xdoc.LoadXml(@"&lt;?xml version=""1.0"" encoding=""utf-8"" ?&gt; &lt;myXml xmlns=""http://MyNamespace"" xmlns:fn=""http://www.w3.org/2005/xpath-functions""&gt; &lt;data&gt;Hello World&lt;/data&gt; &lt;/myXml&gt;"); XPathNavigator navigator = xdoc.CreateNavigator(); XmlNamespaceManager nsmgr = new XmlNamespaceManager(xdoc.NameTable); nsmgr.AddNamespace("fn", "http://www.w3.org/2005/xpath-functions"); XPathExpression xpr; xpr = XPathExpression.Compile("fn:ends-with(/myXml/data, 'World')", nsmgr); object result = navigator.Evaluate(xpr); Console.WriteLine(result); </code></pre> <p>It fails on XPathExpression.Compile invocation:</p> <blockquote> <p>Unhandled Exception: System.Xml.XPath.XPathException: XsltContext is needed for this query because of an unknown function. at MS.Internal.Xml.XPath.CompiledXpathExpr.UndefinedXsltContext.ResolveFuncti on(String prefix, String name, XPathResultType[] ArgTypes) at MS.Internal.Xml.XPath.FunctionQuery.SetXsltContext(XsltContext context) at MS.Internal.Xml.XPath.CompiledXpathExpr.SetContext(XmlNamespaceManager nsM anager) at System.Xml.XPath.XPathExpression.Compile(String xpath, IXmlNamespaceResolv er nsResolver)</p> </blockquote> <p>Anybody know the trick to use off-the-shelf XPath functions with XPathExpression.Compile? Thanks</p> http://stackoverflow.com/questions/1475550/how-to-put-a-div-at-center-of-another-div 0 How to put a div at center of another div? Morgan Cheng 2009-09-25T05:18:27Z 2009-09-26T01:16:52Z <p>I'd like to have one div at center of another div horizontally.</p> <pre><code> &lt;div id="container"&gt; &lt;div id="centered"&gt; hello world; &lt;/div&gt; &lt;/div </code></pre> <p>I tried with below style with "margin: 0px auto" trick, but it only works in FF, not in IE.</p> <pre><code> div { border-width: 2px; border-style: solid; } #centered { margin: 0 auto; width: 30px; } #container { width: 100px; } </code></pre> <p>Is there any way to achieve this cross browser?</p> http://stackoverflow.com/questions/283145/how-to-prevent-visual-studio-launch-wcfsvchost-exe-in-debuggin 2 How to Prevent Visual Studio launch WcfSvcHost.exe in Debuggin? Morgan Cheng 2008-11-12T05:59:19Z 2009-09-16T19:42:49Z <p>I have a solution in Visual Studio 2008 which has multiple projects. One of the projects is a WCF project. Sometimes I just want to debug other projects, but when I press F5, Visual Studio has wcfsvchost.exe launched to host the WCF project even it is not "StartUp Project". </p> <p>Currently, every time I debugging other projects, I Have to Unload the WCF project to prevent the annoying WcfSvcHost.exe host pop up. However, it is not convenient. Anybody know better idea to prevent WCF project to be hosted in debugging mode?</p> http://stackoverflow.com/questions/236171/net-does-not-have-reliable-asynchronouos-socket-communication 1 .NET Does NOT Have Reliable Asynchronouos Socket Communication? Morgan Cheng 2008-10-25T09:49:08Z 2009-09-14T22:53:53Z <p>I once wrote a Crawler in .NET. In order to improve its scalability, I tried to take advantage of asynchronous API of .NET. </p> <p>The System.Net.HttpWebRequest has asynchronous API BeginGetResponse/EndGetResponse. However, this pair of API is just to get a HTTP response headers and a Stream instance from which we can extract HTTP response content. So, my strategy is to use BeginGetResponse/EndGetResponse to asynchronously get the response Stream, then use BeginRead/EndRead to asynchronously get bytes from the response Stream instance. </p> <p>Everything seems perfect until the Crawler goes to stress test. Under stress test, the Crawler suffers from high memory usage. I checked the memory with WinDbg+SoS and fount out that lots of byte arrays are pined by System.Threading.OverlappedData instances. After some searching in internet, I found this KB <a href="http://support.microsoft.com/kb/947862" rel="nofollow">http://support.microsoft.com/kb/947862</a> from microsoft.</p> <p>According to the KB, the number of asynchronous I/O should have a "upper bound", but it doesn't tell a "suggested" bound value. So, in my eye, this KB helps nothing. This is obviously a .NET bug. Finally, I have to drop the idea to do asynchronous extracting bytes from response Stream, and just do it in synchronous way.</p> <blockquote> <p>The .NET library that allows Asynchronous IO with dot net sockets (Socket.BeginSend / Socket.BeginReceive / NetworkStream.BeginRead / NetworkStream.BeginWrite) must have an upper bound on the amount of buffers outstanding (either send or receive) with their asynchronous IO.</p> <p>The network application should have an upper bound on the number of <em>outstanding</em> asynchronous IO that it posts.</p> </blockquote> <p>Edit: Add some question marks.</p> <p>Anybody has any experience to do asynchronous I/O on Socket &amp; NetworkStream? Generally speaking, does crawler in production do I/O with internet with Synchronous or Asynchronosly?</p> http://stackoverflow.com/questions/788559/whats-the-difference-between-exchange-legacy-distinguished-name-and-active-di 1 What's the difference between "Exchange Legacy Distinguished Name" and "Active Directory Distingushed Name"? Morgan Cheng 2009-04-25T08:52:12Z 2009-09-08T21:35:25Z <p>I'm a little confused by these two terms: "<strong>Legacy Distinguished Name</strong>"(Legacy DN) and "<strong>Distingushed Name</strong>"(DN).</p> <p>The first term <strong><em>Legacy DN</em></strong> seems only for Exchange, while the latter <strong><em>DN</em></strong> is only mentioned for Active Directory.</p> <p>They are obviously not in same format:</p> <p>DN is like: <em>CN=Morgan Cheng, OU= SomeOrg, DC=SomeCom, DC=com</em></p> <p>LegacyDN is like: <em>/o=SomeDomain/ou=SomeGroup/cn=Recipients/cn=Morgan Cheng</em></p> <p>I am still not clear what exactly the differce is. Are they two totally differnt stuff? or just same info represented in two different forms?</p> <p>And, why is it called "<strong>Legacy</strong>"? If it is legacy, something must be new, right?</p> <p>Hope some AD and Exchang experts can give me some inputs.</p> http://stackoverflow.com/questions/661246/what-is-the-point-of-static-new-modifier-for-a-function 2 What is the point of "static new" modifier for a function? Morgan Cheng 2009-03-19T06:38:26Z 2009-09-06T08:34:27Z <p>Today, I found something in legacy code. It has "static new" for one function. It looks like this.</p> <pre><code>class Foo { public static void Do() { Console.WriteLine("Foo.Do"); } } class Bar: Foo { public static new void Do() { Console.WriteLine("Bar.Do"); } } </code></pre> <p>I don't understand the <strong><em>static new</em></strong> modifier for the <strong>Do</strong> method in class <strong>Bar</strong>. In C#, static method can only be invoked with class name instead of object name. So, I don't think there is any difference between having the "new" and not.</p> <p>Generally, if some syntax is unnecessary, C# just treat it is error. Anybody has any idea about why C# allows such syntax? </p> http://stackoverflow.com/questions/271440/c-captured-variable-in-loop 7 C# Captured Variable In Loop Morgan Cheng 2008-11-07T07:26:42Z 2009-09-02T01:33:13Z <p>I met a interesting issue about C#. I have code like below</p> <pre><code> List&lt;Func&lt;int&gt;&gt; actions = new List&lt;Func&lt;int&gt;&gt;(); int variable = 0; while (variable &lt; 5) { actions.Add(() =&gt; variable * 2); ++ variable; } foreach (var act in actions) { Console.WriteLine(act.Invoke()); } </code></pre> <p>I expect it to output 0, 2, 4, 6, 8. However, it actually output five 10s.</p> <p>It seems that it is due to all actions are referring to one captured variable. As a result, when they get invoked, they all have same output.</p> <p>Is there any way to walk round this limit to have each action instance have its own captured variable?</p> http://stackoverflow.com/questions/779959/is-it-necessary-to-escape-character-and-for-javascript-string/1817996#1817996 Comment by Morgan Cheng on Is it necessary to "escape" character "<" and ">" for javascript string? Morgan Cheng 2009-12-01T01:46:18Z 2009-12-01T01:46:18Z This is an approach, but I don't believe we should encourage to do that. Since creating a div then abandon it is not per formant. http://stackoverflow.com/questions/1814373/why-c-pageup-and-c-pagedown-not-work-in-vim/1814395#1814395 Comment by Morgan Cheng on Why <C-PageUp> and <C-PageDown> not work in vim? Morgan Cheng 2009-11-29T02:22:48Z 2009-11-29T02:22:48Z It turns out to be 1st problem. I literally type &quot;:map &quot;, then hit Ctrl-PageUp in keyborad, and then &quot; :tabp&lt;CR&gt;&quot;. It works. but it shows below in _vimrc. map &#191; :tabp&lt;CR&gt; map &#206; :tabn&lt;CR&gt; http://stackoverflow.com/questions/1737519/does-php-support-asynchronous-programming Comment by Morgan Cheng on Does PHP support asynchronous programming? Morgan Cheng 2009-11-16T02:12:41Z 2009-11-16T02:12:41Z In ASP.NET, each request is handled in one thread. Since threads as resources are limited, we don't want threads to be blocked on I/O operation. And, thread pool size is always limited in ASP.NET. So, Begin/End patterns are necessary. I suppose it is different story for PHP. Each request is handled in single process? and it doesn't matter to fork process to handle requests. So, this Begin/End asynchronous programming model is not necessary. http://stackoverflow.com/questions/1737519/does-php-support-asynchronous-programming/1737525#1737525 Comment by Morgan Cheng on Does PHP support asynchronous programming? Morgan Cheng 2009-11-15T13:28:57Z 2009-11-15T13:28:57Z I suppose forking processes should be light weighted in *nix OS. http://stackoverflow.com/questions/1737519/does-php-support-asynchronous-programming/1737525#1737525 Comment by Morgan Cheng on Does PHP support asynchronous programming? Morgan Cheng 2009-11-15T13:25:55Z 2009-11-15T13:25:55Z Sad news. So, what we can do is to fork process? http://stackoverflow.com/questions/1726823/how-to-find-all-coupling-bracket-with-regular-expression Comment by Morgan Cheng on How to find all coupling bracket with regular expression? Morgan Cheng 2009-11-13T04:19:59Z 2009-11-13T04:19:59Z C#, but I don't think it matters much. http://stackoverflow.com/questions/1219860/javascript-jquery-html-encoding/1219873#1219873 Comment by Morgan Cheng on Javascript/JQuery HTML Encoding Morgan Cheng 2009-10-27T01:19:51Z 2009-10-27T01:19:51Z I suppose only replacing these three characters is not enought. http://stackoverflow.com/questions/1581467/how-to-design-table-that-can-be-re-sequenced Comment by Morgan Cheng on How to design table that can be re-sequenced? Morgan Cheng 2009-10-23T03:55:08Z 2009-10-23T03:55:08Z Yes. MySQL. But I suppose this can be a question not limited to MySQL. http://stackoverflow.com/questions/1581467/how-to-design-table-that-can-be-re-sequenced/1581868#1581868 Comment by Morgan Cheng on How to design table that can be re-sequenced? Morgan Cheng 2009-10-17T11:55:06Z 2009-10-17T11:55:06Z This approach can update quite a few records for single drag-and-drop. will it be costy? http://stackoverflow.com/questions/1553549/how-to-internationalize-string-used-in-javascript-code/1554043#1554043 Comment by Morgan Cheng on How to internationalize string used in javascript code? Morgan Cheng 2009-10-13T05:16:35Z 2009-10-13T05:16:35Z In this approach, all I18N strings are downloaded even only few are used. http://stackoverflow.com/questions/1554722/how-to-make-and-e-work-in-any-php-file-of-wordpress/1556198#1556198 Comment by Morgan Cheng on How to make __() and _e() work in any PHP file of wordpress? Morgan Cheng 2009-10-13T04:59:14Z 2009-10-13T04:59:14Z require wp-config.php make it display garbage character. I found the answer. wp-blog-header.php is good for use. http://stackoverflow.com/questions/1554722/how-to-make-and-e-work-in-any-php-file-of-wordpress/1554814#1554814 Comment by Morgan Cheng on How to make __() and _e() work in any PHP file of wordpress? Morgan Cheng 2009-10-12T14:25:09Z 2009-10-12T14:25:09Z wordpress should have gettext extension. http://stackoverflow.com/questions/1554722/how-to-make-and-e-work-in-any-php-file-of-wordpress Comment by Morgan Cheng on How to make __() and _e() work in any PHP file of wordpress? Morgan Cheng 2009-10-12T14:10:02Z 2009-10-12T14:10:02Z They are defined in l10n.php, but simply include that single file doesn't work. I suppose there is beter off-the-shelf API to include necessary files. http://stackoverflow.com/questions/1523174/whats-the-best-practice-to-transfer-a-variable-value-to-javascript-from-server/1523187#1523187 Comment by Morgan Cheng on What's the best practice to transfer a variable value to javascript from server? Morgan Cheng 2009-10-06T01:55:42Z 2009-10-06T01:55:42Z JSON is an option, but that would cost at least one more HTTP round trip. http://stackoverflow.com/questions/1512358/does-browser-load-a-whole-block-of-javascript-before-its-execution/1512406#1512406 Comment by Morgan Cheng on Does Browser load a whole block of JavaScript Before its execution? Morgan Cheng 2009-10-03T00:30:14Z 2009-10-03T00:30:14Z @Berry, how do you paste it into Firebug? You can paste it into a html and open it with Firefox. I bet it would work.