User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:55:34Zhttp://stackoverflow.com/feeds/user/18636http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798792/mercurial-in-windows-doesnt-see-hgignore-why/1798851#17988510Answer by unknown (yahoo) for Mercurial in Windows doesn't see .hgignore - why?unknown (yahoo)2009-11-25T18:06:06Z2009-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#17945152Answer by unknown (yahoo) for System.Linq and IEnumerable Group Helpunknown (yahoo)2009-11-25T03:58:21Z2009-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 => g.Count() == 3)
</code></pre>
http://stackoverflow.com/questions/1794596/non-cap-sensitive-search-c/1794617#17946173Answer by unknown (yahoo) for Non cap sensitive search C#unknown (yahoo)2009-11-25T04:26:03Z2009-11-25T04:26:03Z<p>One way to do it.</p>
<pre><code>var answer = list.FirstOrDefault(item => item.Equals("test", StringComparison.CurrentCultureIgnoreCase));
</code></pre>
http://stackoverflow.com/questions/1794298/creating-menu-buttons-with-css/1794302#17943021Answer by unknown (yahoo) for Creating Menu Buttons with CSSunknown (yahoo)2009-11-25T02:32:50Z2009-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><a class="button"></a>
.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#17930913Answer by unknown (yahoo) for Using XSLT as xhtml link extractor.unknown (yahoo)2009-11-24T21:38:39Z2009-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><xsl:template match="/">
Base href: <xsl:value-of select="$base" />
<xsl:apply-templates select="//span[@class='thumb']" />
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/1793060/xslt-tranformation/1793079#17930793Answer by unknown (yahoo) for XSLT Tranformationunknown (yahoo)2009-11-24T21:36:01Z2009-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><xsl:template match="is/callop">
<nano>
...
...
<xsl:template match="callop">
<Atom>
...
...
</code></pre>
http://stackoverflow.com/questions/1774041/is-it-possible-to-batch-on-item-metadata/1774058#17740581Answer by unknown (yahoo) for Is it possible to batch on item metadata?unknown (yahoo)2009-11-21T00:28:28Z2009-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><Define>--define B=2 --define C=3</Define>
</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#17660061Answer by unknown (yahoo) for Regex Pattern Matchingunknown (yahoo)2009-11-19T19:42:38Z2009-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-2Answer by unknown (yahoo) for How can I become a better .NET Web Developer?unknown (yahoo)2009-11-19T02:01:35Z2009-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#17589861Answer by unknown (yahoo) for Using jQuery inArray with array of JavaScript Objectsunknown (yahoo)2009-11-18T20:50:23Z2009-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#17589203Answer by unknown (yahoo) for html in varchar field?unknown (yahoo)2009-11-18T20:41:18Z2009-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#17531801Answer by unknown (yahoo) for NHibernate Criteria Query - Select Distinct with Joined Entityunknown (yahoo)2009-11-18T02:09:47Z2009-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#17529861Answer by unknown (yahoo) for NHibernate Criteria Query - Select Distinctunknown (yahoo)2009-11-18T01:12:47Z2009-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#17461761Answer by unknown (yahoo) for Referring to MS Windows special folders in Emacsunknown (yahoo)2009-11-17T02:11:02Z2009-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#16026812Answer by unknown (yahoo) for Apache Ant command line arguments without double quotes - is it possible?unknown (yahoo)2009-10-21T18:28:13Z2009-10-21T18:28:13Z<p>Have you tried <code><arg line="..." /></code>?</p>
http://stackoverflow.com/questions/1569887/is-it-possible-to-perform-case-sensetive-search-in-opengrok/1569896#15698960Answer by unknown (yahoo) for Is it possible to perform case sensetive search in OpenGrok?unknown (yahoo)2009-10-15T01:46:12Z2009-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#15641911Answer by unknown (yahoo) for (.NET) Easy way to generate random, easy to remember passcodesunknown (yahoo)2009-10-14T04:11:16Z2009-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#15492331Answer by unknown (yahoo) for Finding all Namespaces in an assembly using Reflection (DotNET)unknown (yahoo)2009-10-10T22:14:53Z2009-10-10T22:14:53Z<pre><code>public static void Main() {
var assembly = ...;
Console.Write(CreateUsings(FilterToTopLevel(GetNamespaces(assembly))));
}
private static string CreateUsings(IEnumerable<string> namespaces) {
return namespaces.Aggregate(String.Empty,
(u, n) => u + "using " + n + ";" + Environment.NewLine);
}
private static IEnumerable<string> FilterToTopLevel(IEnumerable<string> namespaces) {
return namespaces.Select(n => n.Split('.').First()).Distinct();
}
private static IEnumerable<string> GetNamespaces(Assembly assembly) {
return (assembly.GetTypes().Select(t => t.Namespace)
.Where(n => !String.IsNullOrEmpty(n))
.Distinct());
}
</code></pre>
http://stackoverflow.com/questions/1073055/how-to-generate-an-html-report-from-partcover-results-xml/1522067#15220670Answer by unknown (yahoo) for How to generate an HTML report from PartCover results .xmlunknown (yahoo)2009-10-05T19:58:47Z2009-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&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=2FB55371-C94E-4373-B0E9-DB4816552E41&displaylang=en</a></p>
http://stackoverflow.com/questions/702071/partcover-console-produces-empty-output-xml/1521940#15219400Answer by unknown (yahoo) for PartCover console produces empty output xmlunknown (yahoo)2009-10-05T19:28:55Z2009-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#14990180Answer by unknown (yahoo) for XML mode for XEmacs?unknown (yahoo)2009-09-30T15:51:44Z2009-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#14681423Answer by unknown (yahoo) for How do I jump to the matching tag, when editing editing HTML in Emacs?unknown (yahoo)2009-09-23T19:37:04Z2009-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 &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#14085940Answer by unknown (yahoo) for How to import mdb to sql server.unknown (yahoo)2009-09-11T01:35:31Z2009-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&DisplayLang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=133b59c2-c89c-4641-bebb-6d04476ec1ba&DisplayLang=en</a></p>
http://stackoverflow.com/questions/1344503/calling-a-javascript-function-with-a-parameter-retrieved-from-the-model-in-asp-ne/1344538#13445380Answer by unknown (yahoo) for Calling a javascript function with a parameter retrieved from the model in ASP.NET MVCunknown (yahoo)2009-08-28T01:10:32Z2009-08-28T01:10:32Z<pre><code><%@ Import Namespace="System.Web.Script.Serialization" %>
<% var js = new JavaScriptSerializer(); %>
...
NewExistingPicture(<%= Html.Encode(js.Serialize(Photo.PhotoName)) %>)
</code></pre>
http://stackoverflow.com/questions/1256442/slow-canvas-element/1256496#12564961Answer by unknown (yahoo) for Slow Canvas Elementunknown (yahoo)2009-08-10T18:39:07Z2009-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#12088803Answer by unknown (yahoo) for Preferred JavaScript mode for emacs? Is it js2-mode from Yegge?unknown (yahoo)2009-07-30T19:42:16Z2009-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#11296810Answer by unknown (yahoo) for How to scroll line by line in GNU emacs ?unknown (yahoo)2009-07-15T06:16:26Z2009-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#6122972Answer by unknown (yahoo) for How do decode URL in Emacs Lisp?unknown (yahoo)2009-03-04T20:31:08Z2009-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#5888781Answer by unknown (yahoo) for How do I highlight cvs changes in emacs?unknown (yahoo)2009-02-26T02:38:29Z2009-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#4744471Answer by unknown (yahoo) for F# - Should I learn with or without #light?unknown (yahoo)2009-01-23T20:45:50Z2009-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#1798849Comment by on Mercurial in Windows doesn't see .hgignore - why?2009-11-25T18:18:11Z2009-11-25T18:18:11Zregexp 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#1794617Comment by on Non cap sensitive search C#2009-11-25T04:47:37Z2009-11-25T04:47:37ZFirstOrDefault is an extension method in System.Linq.Enumerablehttp://stackoverflow.com/questions/1793060/xslt-tranformation/1793079#1793079Comment by on XSLT Tranformation2009-11-24T21:41:04Z2009-11-24T21:41:04ZYou can declare a separate template "is/callop/con" to match it and use apply-templates from the "is/callop" template, or just handle it inline, e.g.:
<Fun><xsl:apply-templates select="con" /></Fun>http://stackoverflow.com/questions/1760428/how-can-i-become-a-better-net-web-developer/1760446#1760446Comment by on How can I become a better .NET Web Developer?2009-11-19T17:08:06Z2009-11-19T17:08:06ZWeb 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#1753180Comment by on NHibernate Criteria Query - Select Distinct with Joined Entity2009-11-18T05:11:25Z2009-11-18T05:11:25ZYou can go the other way, actually. Build your criteria using only DetachedCriteria instances (DetachedCriteria.For<T>()), 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#1344533Comment by on Calling a javascript function with a parameter retrieved from the model in ASP.NET MVC2009-08-28T04:45:06Z2009-08-28T04:45:06ZAssuming users have any control at all over photo names, this is not safe (XSS).http://stackoverflow.com/questions/1161510/net-regex-help/1161519#1161519Comment by on .NET RegEx help2009-07-22T01:42:47Z2009-07-22T01:42:47ZRegex.Escape is also useful:
new Regex(Regex.Escape("***"));