User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:55:34Z http://stackoverflow.com/feeds/user/18636 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1798792/mercurial-in-windows-doesnt-see-hgignore-why/1798851#1798851 0 Answer by unknown (yahoo) for Mercurial in Windows doesn't see .hgignore - why? unknown (yahoo) 2009-11-25T18:06:06Z 2009-11-25T18:06:06Z <blockquote> <p>"hg status" shows lots of files in the ignored directories</p> </blockquote> <p>Are you referring to .DS_Store and .Python exclusively? The rule for ^bin$ will only ignore entries with that exact string. It will not, for example, ignore "bin/a.out".</p> <p>The only other thing I could think of is if there is some global setting that sets the syntax to glob (as opposed to the default of regex) hiding somewhere. I'm not aware of any such thing, and it certainly isn't on by default if installing an official binary version of Mercurial.</p> http://stackoverflow.com/questions/1794504/system-linq-and-ienumerable-group-help/1794515#1794515 2 Answer by unknown (yahoo) for System.Linq and IEnumerable Group Help unknown (yahoo) 2009-11-25T03:58:21Z 2009-11-25T04:28:47Z <p>To get the number of groups:</p> <pre><code>cardValueGroups.Count() </code></pre> <p>To make sure they all have exactly three cards:</p> <pre><code>cardValueGroups.All(g =&gt; g.Count() == 3) </code></pre> http://stackoverflow.com/questions/1794596/non-cap-sensitive-search-c/1794617#1794617 3 Answer by unknown (yahoo) for Non cap sensitive search C# unknown (yahoo) 2009-11-25T04:26:03Z 2009-11-25T04:26:03Z <p>One way to do it.</p> <pre><code>var answer = list.FirstOrDefault(item =&gt; item.Equals("test", StringComparison.CurrentCultureIgnoreCase)); </code></pre> http://stackoverflow.com/questions/1794298/creating-menu-buttons-with-css/1794302#1794302 1 Answer by unknown (yahoo) for Creating Menu Buttons with CSS unknown (yahoo) 2009-11-25T02:32:50Z 2009-11-25T02:40:17Z <p>Make the button element a fixed size, and set the .gif file as the element background in CSS. Then you can use a :hover class on the element to change the image. Here I'm using an "A" tag so it works on IE6.</p> <pre><code>&lt;a class="button"&gt;&lt;/a&gt; .button { display: block; background-image: url(default.gif); width: 100px; height: 20px; } .button:hover { background-image: url(hover.gif); } </code></pre> http://stackoverflow.com/questions/1793063/using-xslt-as-xhtml-link-extractor/1793091#1793091 3 Answer by unknown (yahoo) for Using XSLT as xhtml link extractor. unknown (yahoo) 2009-11-24T21:38:39Z 2009-11-24T21:38:39Z <p>There are some default templates which are unseen here. The really easy way to resolve it is to just explicitly limit to the span elements you're matching as below. Otherwise, you can override the default templates.</p> <pre><code>&lt;xsl:template match="/"&gt; Base href: &lt;xsl:value-of select="$base" /&gt; &lt;xsl:apply-templates select="//span[@class='thumb']" /&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/1793060/xslt-tranformation/1793079#1793079 3 Answer by unknown (yahoo) for XSLT Tranformation unknown (yahoo) 2009-11-24T21:36:01Z 2009-11-24T21:36:01Z <p>You can handle this pretty easily by just specifying your templates with the full path. The more specific template match will take precedence, so there shouldn't be any issues.</p> <pre><code>&lt;xsl:template match="is/callop"&gt; &lt;nano&gt; ... ... &lt;xsl:template match="callop"&gt; &lt;Atom&gt; ... ... </code></pre> http://stackoverflow.com/questions/1774041/is-it-possible-to-batch-on-item-metadata/1774058#1774058 1 Answer by unknown (yahoo) for Is it possible to batch on item metadata? unknown (yahoo) 2009-11-21T00:28:28Z 2009-11-21T00:28:28Z <p>You can use <code>%(A.Define)</code> but you'd have to change your Define property to:</p> <pre><code>&lt;Define&gt;--define B=2 --define C=3&lt;/Define&gt; </code></pre> <p>I don't believe it's possible to treat item metadata as an item itself, though it does seem useful in this case.</p> http://stackoverflow.com/questions/1765976/regex-pattern-matching/1766006#1766006 1 Answer by unknown (yahoo) for Regex Pattern Matching unknown (yahoo) 2009-11-19T19:42:38Z 2009-11-19T19:42:38Z <p>Make the latter part optional.</p> <pre><code>abc(\.\d+)? </code></pre> http://stackoverflow.com/questions/1760428/how-can-i-become-a-better-net-web-developer/1760446#1760446 -2 Answer by unknown (yahoo) for How can I become a better .NET Web Developer? unknown (yahoo) 2009-11-19T02:01:35Z 2009-11-19T02:01:35Z <p>A good understanding of how networks and protocols work can be truly invaluable. W. Richard Stevens' <em>TCP/IP Illustrated, Volume 1</em> is a great starting point.</p> http://stackoverflow.com/questions/1758937/using-jquery-inarray-with-array-of-javascript-objects/1758986#1758986 1 Answer by unknown (yahoo) for Using jQuery inArray with array of JavaScript Objects unknown (yahoo) 2009-11-18T20:50:23Z 2009-11-18T20:50:23Z <p><code>n</code> is your list item, so something like this should do the job:</p> <pre><code>$.grep(issuesArray, function(n) { return n.ID != "2"; }) </code></pre> http://stackoverflow.com/questions/1758879/html-in-varchar-field/1758920#1758920 3 Answer by unknown (yahoo) for html in varchar field? unknown (yahoo) 2009-11-18T20:41:18Z 2009-11-18T20:41:18Z <p>This is unrelated to MySQL, the browser chooses to render it this way. Via <a href="http://en.wikipedia.org/wiki/HTML%5Felement#Document%5Fstructure%5Felements" rel="nofollow">http://en.wikipedia.org/wiki/HTML%5Felement#Document%5Fstructure%5Felements</a></p> <blockquote> <p>The title element must not contain other elements, only text.</p> </blockquote> http://stackoverflow.com/questions/1753161/nhibernate-criteria-query-select-distinct-with-joined-entity/1753180#1753180 1 Answer by unknown (yahoo) for NHibernate Criteria Query - Select Distinct with Joined Entity unknown (yahoo) 2009-11-18T02:09:47Z 2009-11-18T02:09:47Z <p>Any easy way would be to use a subquery. That is, you could select the whole country on the outer query where the country ID matches the inner query.</p> <pre><code>Subqueries.PropertyIn( "Country", innerDetachedCriteriaWhichFindsCountriesWithPeopleAndProjectsCountryId) </code></pre> http://stackoverflow.com/questions/1752978/nhibernate-criteria-query-select-distinct/1752986#1752986 1 Answer by unknown (yahoo) for NHibernate Criteria Query - Select Distinct unknown (yahoo) 2009-11-18T01:12:47Z 2009-11-18T01:12:47Z <pre><code>criteria.SetProjection(Projections.Distinct(Projections.Property("Country"))); </code></pre> http://stackoverflow.com/questions/1743507/referring-to-ms-windows-special-folders-in-emacs/1746176#1746176 1 Answer by unknown (yahoo) for Referring to MS Windows special folders in Emacs unknown (yahoo) 2009-11-17T02:11:02Z 2009-11-17T02:11:02Z <p>I use <code>%USERPROFILE%</code> as my home directory, so Desktop is always available as ~/Desktop. Easiest way to do this is to set <code>HOME</code> to match <code>USERPROFILE</code>. Detailed instructions at:</p> <p><a href="http://derekslager.com/blog/posts/2006/12/emacs-hack-1-installing-emacs-on-windows.ashx" rel="nofollow">http://derekslager.com/blog/posts/2006/12/emacs-hack-1-installing-emacs-on-windows.ashx</a></p> http://stackoverflow.com/questions/1602668/apache-ant-command-line-arguments-without-double-quotes-is-it-possible/1602681#1602681 2 Answer by unknown (yahoo) for Apache Ant command line arguments without double quotes - is it possible? unknown (yahoo) 2009-10-21T18:28:13Z 2009-10-21T18:28:13Z <p>Have you tried <code>&lt;arg line="..." /&gt;</code>?</p> http://stackoverflow.com/questions/1569887/is-it-possible-to-perform-case-sensetive-search-in-opengrok/1569896#1569896 0 Answer by unknown (yahoo) for Is it possible to perform case sensetive search in OpenGrok? unknown (yahoo) 2009-10-15T01:46:12Z 2009-10-15T01:46:12Z <p>Reference search (-r) is case sensitive, as is definition (-d).</p> http://stackoverflow.com/questions/1564182/net-easy-way-to-generate-random-easy-to-remember-passcodes/1564191#1564191 1 Answer by unknown (yahoo) for (.NET) Easy way to generate random, easy to remember passcodes unknown (yahoo) 2009-10-14T04:11:16Z 2009-10-14T04:11:16Z <p>I would suggest using the RandomNumberGenerator class, it will give you better results than GUID generation.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator%28VS.71%29.aspx</a></p> http://stackoverflow.com/questions/1549198/finding-all-namespaces-in-an-assembly-using-reflection-dotnet/1549233#1549233 1 Answer by unknown (yahoo) for Finding all Namespaces in an assembly using Reflection (DotNET) unknown (yahoo) 2009-10-10T22:14:53Z 2009-10-10T22:14:53Z <pre><code>public static void Main() { var assembly = ...; Console.Write(CreateUsings(FilterToTopLevel(GetNamespaces(assembly)))); } private static string CreateUsings(IEnumerable&lt;string&gt; namespaces) { return namespaces.Aggregate(String.Empty, (u, n) =&gt; u + "using " + n + ";" + Environment.NewLine); } private static IEnumerable&lt;string&gt; FilterToTopLevel(IEnumerable&lt;string&gt; namespaces) { return namespaces.Select(n =&gt; n.Split('.').First()).Distinct(); } private static IEnumerable&lt;string&gt; GetNamespaces(Assembly assembly) { return (assembly.GetTypes().Select(t =&gt; t.Namespace) .Where(n =&gt; !String.IsNullOrEmpty(n)) .Distinct()); } </code></pre> http://stackoverflow.com/questions/1073055/how-to-generate-an-html-report-from-partcover-results-xml/1522067#1522067 0 Answer by unknown (yahoo) for How to generate an HTML report from PartCover results .xml unknown (yahoo) 2009-10-05T19:58:47Z 2009-10-05T19:58:47Z <p>Easiest solution is probably to use msxsl, a simple command line transformer. I use it for exactly this purpose, and it's easy to integrate into your build system.</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2FB55371-C94E-4373-B0E9-DB4816552E41&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=2FB55371-C94E-4373-B0E9-DB4816552E41&amp;displaylang=en</a></p> http://stackoverflow.com/questions/702071/partcover-console-produces-empty-output-xml/1521940#1521940 0 Answer by unknown (yahoo) for PartCover console produces empty output xml unknown (yahoo) 2009-10-05T19:28:55Z 2009-10-05T19:28:55Z <p>I was having a similar problem with NUnit on x64. The problem was that I was using nunit-console.exe (AnyCPU). Switching to nunit-console-x86.exe (explicitly 32-bit) solved the problem.</p> <p>I don't have access to an environment with MSTest, but if the executable you're referencing is AnyCPU, you might look for an explicitly 32-bit version of it on your system. Worst case, you could create one using CorFlags.</p> http://stackoverflow.com/questions/1498275/xml-mode-for-xemacs/1499018#1499018 0 Answer by unknown (yahoo) for XML mode for XEmacs? unknown (yahoo) 2009-09-30T15:51:44Z 2009-09-30T15:51:44Z <p>I used PSGML mode via XEmacs for several years and it is excellent. No support for RELAX NG, but terrific for anything you can dig up a DTD for.</p> http://stackoverflow.com/questions/1468111/how-do-i-jump-to-the-matching-tag-when-editing-editing-html-in-emacs/1468142#1468142 3 Answer by unknown (yahoo) for How do I jump to the matching tag, when editing editing HTML in Emacs? unknown (yahoo) 2009-09-23T19:37:04Z 2009-09-23T19:37:04Z <p>Assuming you're using nxml-mode:</p> <pre><code>C-M-n runs the command nxml-forward-element, which is an interactive compiled Lisp function in `nxml-mode.el'. It is bound to C-M-n. (nxml-forward-element &amp;optional ARG) Move forward over one element. With ARG, do it that many times. Negative ARG means move backward. </code></pre> http://stackoverflow.com/questions/370619/how-to-import-mdb-to-sql-server/1408594#1408594 0 Answer by unknown (yahoo) for How to import mdb to sql server. unknown (yahoo) 2009-09-11T01:35:31Z 2009-09-11T01:35:31Z <p>The upsizing wizard in Access 2007 didn't work for me with SQL Server 2008 Express SP1, but this tool (after an amazingly annoying installation process) worked quite well:</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=133b59c2-c89c-4641-bebb-6d04476ec1ba&amp;DisplayLang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=133b59c2-c89c-4641-bebb-6d04476ec1ba&amp;DisplayLang=en</a></p> http://stackoverflow.com/questions/1344503/calling-a-javascript-function-with-a-parameter-retrieved-from-the-model-in-asp-ne/1344538#1344538 0 Answer by unknown (yahoo) for Calling a javascript function with a parameter retrieved from the model in ASP.NET MVC unknown (yahoo) 2009-08-28T01:10:32Z 2009-08-28T01:10:32Z <pre><code>&lt;%@ Import Namespace="System.Web.Script.Serialization" %&gt; &lt;% var js = new JavaScriptSerializer(); %&gt; ... NewExistingPicture(&lt;%= Html.Encode(js.Serialize(Photo.PhotoName)) %&gt;) </code></pre> http://stackoverflow.com/questions/1256442/slow-canvas-element/1256496#1256496 1 Answer by unknown (yahoo) for Slow Canvas Element unknown (yahoo) 2009-08-10T18:39:07Z 2009-08-10T18:39:07Z <p>I would be willing to bet that the jQuery function calls are taking longer than the drawing. If your application allows you to compute offset and dimensions easily without using jQuery, you might be able to extract some additional speed there.</p> http://stackoverflow.com/questions/1208410/preferred-javascript-mode-for-emacs-is-it-js2-mode-from-yegge/1208880#1208880 3 Answer by unknown (yahoo) for Preferred JavaScript mode for emacs? Is it js2-mode from Yegge? unknown (yahoo) 2009-07-30T19:42:16Z 2009-07-30T19:42:16Z <p>I use js2-mode for JavaScript authoring, and it's excellent. It's not ideal for JavaScript-like languages, though (ActionScript), so it's good to have a simple mode around as a backup for those cases.</p> http://stackoverflow.com/questions/1128927/how-to-scroll-line-by-line-in-gnu-emacs/1129681#1129681 0 Answer by unknown (yahoo) for How to scroll line by line in GNU emacs ? unknown (yahoo) 2009-07-15T06:16:26Z 2009-07-15T06:16:26Z <p>I rebind my arrow keys to perform scrolling operations.</p> <pre><code>(global-set-key [up] (lambda () (interactive) (scroll-down 1))) (global-set-key [down] (lambda () (interactive) (scroll-up 1))) (global-set-key [left] (lambda () (interactive) (scroll-right tab-width t))) (global-set-key [right] (lambda () (interactive) (scroll-left tab-width t))) </code></pre> http://stackoverflow.com/questions/611831/how-do-decode-url-in-emacs-lisp/612297#612297 2 Answer by unknown (yahoo) for How do decode URL in Emacs Lisp? unknown (yahoo) 2009-03-04T20:31:08Z 2009-03-04T20:31:08Z <p><code>org-link-unescape</code> does the job for very simple cases ... <code>w3m-url-decode-string</code> is better, but it isn't built in and the version I have locally isn't working with Emacs 23.</p> http://stackoverflow.com/questions/588005/how-do-i-highlight-cvs-changes-in-emacs/588878#588878 1 Answer by unknown (yahoo) for How do I highlight cvs changes in emacs? unknown (yahoo) 2009-02-26T02:38:29Z 2009-02-26T02:38:29Z <p>You want <code>vc-diff</code>, which is on <code>C-x v =</code> by default. This gives you raw diff output in a temp buffer. The buffer uses diff-mode, which has a few neat tricks ... for example, you can use <code>C-c C-e</code> to apply the diff as a patch to another file. Use <code>describe-mode</code> (<code>C-h m</code> by default) in the diff buffer to find the other tricks.</p> http://stackoverflow.com/questions/461739/f-should-i-learn-with-or-without-light/474447#474447 1 Answer by unknown (yahoo) for F# - Should I learn with or without #light? unknown (yahoo) 2009-01-23T20:45:50Z 2009-01-23T20:45:50Z <p>Because I learned F# from an OCaml book (and I use an OCaml mode for Emacs to edit F# code), I prefer to use the "heavy" syntax. I have worked with #light code, and of course most of the F# examples are written using the light syntax so having some general familiarity is useful. That said, it's quite a bit easier to switch from heavy to light than the other way around, so it's certainly not a bad idea to learn it using the heavy syntax.</p> <p>I have come across the occasional annoying bug with heavy syntax being treated as a second class citizen (combine was broken for computation expressions a couple releases back), but these are pretty rare. Generally speaking, I don't think the differences are very significant and I need to look close to determine which syntax is being used when looking at code in isolation. YMMV.</p> http://stackoverflow.com/questions/1798792/mercurial-in-windows-doesnt-see-hgignore-why/1798849#1798849 Comment by on Mercurial in Windows doesn't see .hgignore - why? 2009-11-25T18:18:11Z 2009-11-25T18:18:11Z regexp syntax is the default, so it should work out of the box on all platforms with a default configuration. http://stackoverflow.com/questions/1794596/non-cap-sensitive-search-c/1794617#1794617 Comment by on Non cap sensitive search C# 2009-11-25T04:47:37Z 2009-11-25T04:47:37Z FirstOrDefault is an extension method in System.Linq.Enumerable http://stackoverflow.com/questions/1793060/xslt-tranformation/1793079#1793079 Comment by on XSLT Tranformation 2009-11-24T21:41:04Z 2009-11-24T21:41:04Z You can declare a separate template &quot;is/callop/con&quot; to match it and use apply-templates from the &quot;is/callop&quot; template, or just handle it inline, e.g.: &lt;Fun&gt;&lt;xsl:apply-templates select=&quot;con&quot; /&gt;&lt;/Fun&gt; http://stackoverflow.com/questions/1760428/how-can-i-become-a-better-net-web-developer/1760446#1760446 Comment by on How can I become a better .NET Web Developer? 2009-11-19T17:08:06Z 2009-11-19T17:08:06Z Web programs, at last check, are indeed delivered via networks. If you are ever responsible for architecting a Web application at scale, you need an understanding of networking. If you want to build a highly performant Web application, you need to understand packets, latency, routing, headers (all in the networking domain). If you want to build secure Web applications, these foundational understandings are even more important. If you want to become a better programmer, understanding how computers work is essential. To become an elite Web programmer, you have to understand the foundation. http://stackoverflow.com/questions/1753161/nhibernate-criteria-query-select-distinct-with-joined-entity/1753180#1753180 Comment by on NHibernate Criteria Query - Select Distinct with Joined Entity 2009-11-18T05:11:25Z 2009-11-18T05:11:25Z You can go the other way, actually. Build your criteria using only DetachedCriteria instances (DetachedCriteria.For&lt;T&gt;()), then use GetExecutableCriteria(session) to convert it to a real, executable criteria. http://stackoverflow.com/questions/1344503/calling-a-javascript-function-with-a-parameter-retrieved-from-the-model-in-asp-ne/1344533#1344533 Comment by on Calling a javascript function with a parameter retrieved from the model in ASP.NET MVC 2009-08-28T04:45:06Z 2009-08-28T04:45:06Z Assuming users have any control at all over photo names, this is not safe (XSS). http://stackoverflow.com/questions/1161510/net-regex-help/1161519#1161519 Comment by on .NET RegEx help 2009-07-22T01:42:47Z 2009-07-22T01:42:47Z Regex.Escape is also useful: new Regex(Regex.Escape(&quot;***&quot;));