User Luke Girvin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:54:47Z http://stackoverflow.com/feeds/user/133 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1728987/what-is-the-best-practice-for-setting-the-sccauxpath-property-in-a-visual-basic 0 What is the best practice for setting the SccAuxPath property in a Visual Basic .NET project for a distributed team? Luke Girvin 2009-11-13T12:37:46Z 2009-11-17T10:59:15Z <p>We've recently moved to Team System and now a remote team needs access to our source. However, they use a different IP address to access the Team System server, and whenever they try to open a project, they are prompted to check out and change the project. Is there a way to work around this? It seems to be the 'SccAuxPath' property which is the problem.</p> <p>EDIT: I found <a href="http://msdn.microsoft.com/en-us/library/bb668967.aspx" rel="nofollow">this article</a> which explains that there are three ways to support distributed teams using TFS - VPN, reverse proxy, and a hosted solution. I'm accepting Jason Whitehorn's answer as he's suggesting the first option, VPN, which seems the best. If this isn't possible for us I'll suggest the reverse proxy option.</p> http://stackoverflow.com/questions/1417683/add-html-5-doctype-to-xdocument-net/1417781#1417781 1 Answer by Luke Girvin for Add HTML 5 doctype to XDocument (.NET) Luke Girvin 2009-09-13T13:46:01Z 2009-09-13T13:46:01Z <p>You don't get the space if you write to an XmlTextWriter:</p> <pre><code> XDocument doc = new XDocument(); doc.AddFirst(new XDocumentType("html", null, null, null)); doc.Add(new XElement("foo", "bar")); using (XmlTextWriter writer = new XmlTextWriter("c:\\temp\\no_space.xml", null)) { writer.Formatting = Formatting.Indented; doc.WriteTo(writer); writer.Flush(); writer.Close(); } </code></pre> http://stackoverflow.com/questions/1353881/how-do-i-use-c-to-get-the-hard-disk-serial-number/1353888#1353888 1 Answer by Luke Girvin for How do I use C# to get the Hard-disk serial number? Luke Girvin 2009-08-30T13:38:03Z 2009-08-30T13:55:13Z <p>Try the code <a href="http://www.dreamincode.net/code/snippet1732.htm" rel="nofollow">here</a> and let us know if it works.</p> <p>EDIT: And if that doesn't work, try <a href="http://www.codeproject.com/KB/cs/hard%5Fdisk%5Fserialno.aspx" rel="nofollow">this code</a> from CodeProject.</p> http://stackoverflow.com/questions/1219794/emacs-as-ide-handling-a-project-directory/1219823#1219823 5 Answer by Luke Girvin for emacs as IDE: Handling a project directory? Luke Girvin 2009-08-02T20:51:25Z 2009-08-02T20:57:15Z <p>I don't use it myself, but it sounds like <a href="http://cedet.sourceforge.net/" rel="nofollow">CEDET</a> is what you are looking for:</p> <blockquote> <p>Emacs already is a great environment for writing software, but there are additional areas that need improvement. Many new ideas for integrated environments have been developed in newer products, such as Microsoft's Visual environment, JBuilder, or Eclipse. CEDET is a project which implements several advanced features developers have come to expect from an Editor.</p> </blockquote> <p>The Emacs wiki also has <a href="http://www.emacswiki.org/emacs/EmacsForDevStudioUsers" rel="nofollow">this page</a> with some tips for IDE users.</p> http://stackoverflow.com/questions/1021839/question-about-memory-leak-in-net/1021859#1021859 6 Answer by Luke Girvin for Question about memory leak in .NET Luke Girvin 2009-06-20T15:34:44Z 2009-06-20T15:34:44Z <p>Krembo, the recommended way to use SqlConnection and SqlCommand objects is inside a using statement, as in this sample code from <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.aspx1" rel="nofollow">MSDN</a>:</p> <pre><code>using (SqlConnection connection = new SqlConnection(connectionString)) { connection.Open(); // Do work here; connection closed on following line. } </code></pre> <p>You should probably be disposing of your SqlConnection object as soon as you've finished using it, while it might seem that this would be slow, behind the scenes, connection pooling will eliminate most of the overhead.</p> http://stackoverflow.com/questions/7113/is-it-worth-it-to-get-ms-certified/7135#7135 26 Answer by Luke Girvin for Is it worth it to get MS Certified? Luke Girvin 2008-08-10T09:40:30Z 2009-06-16T15:23:10Z <p>Lance, I'm currently in the middle of an intensive 9-day MCPD course paid for by my employer. It's hard work, but I've learnt a lot more about the .NET Framework and ASP.NET. If you already have a fair amount of experience and you get the chance to do this, I'd recommend going for it.</p> <p>If you're having to fund yourself, you're probably better off buying the course books and working through them at your own pace. If you're an experienced developer there'll still be a fair amount to learn but you should be able to get through it fairly rapidly.</p> <p>I'm not sure how useful doing one of these courses would be as a way of learning the material from scratch. If all the material was unfamiliar to you I think it might be too much to take in at once.</p> <p>As for how useful getting the qualification is, it's hard to say - many job adverts say that Microsoft certification is 'desirable', but not that many require it. Having the qualification certainly won't hurt your career prospects, and I think in some ways they are more useful for getting an entry-level job than a Computer Science degree.</p> <p>You might be intersted to see how many people already hold each qualification:</p> <p><a href="https://www.microsoft.com/learning/en/us/certification/cert-overview.aspx#tab5" rel="nofollow">Number of Microsoft Certified Professionals Worldwide</a></p> http://stackoverflow.com/questions/677021/emacs-regular-expression-replacing-to-change-case/677033#677033 13 Answer by Luke Girvin for Emacs: Regular Expression Replacing to Change Case Luke Girvin 2009-03-24T11:38:16Z 2009-03-24T14:18:01Z <p>Try <code>M-x query-replace-regexp</code> with <code>"&lt;\([^&gt;]+\)&gt;"</code> as the search string and <code>"&lt;\,(downcase \1)&gt;"</code> as the replacement.</p> <p>This should work for Emacs 22 and later, see this <a href="http://steve-yegge.blogspot.com/2006/06/shiny-and-new-emacs-22.html" rel="nofollow">Steve Yegge blog post</a> for more details on how Lisp expressions can be used in the replacement string.</p> <p>For earlier versions of Emacs you could try something like this:</p> <pre><code>(defun tags-to-lower-case () (interactive) (save-excursion (goto-char (point-min)) (while (re-search-forward "&lt;[^&gt;]+&gt;" nil t) (replace-match (downcase (match-string 0)) t)))) </code></pre> http://stackoverflow.com/questions/7642/naming-convention-for-vb-net-private-fields 3 Naming convention for VB.NET private fields Luke Girvin 2008-08-11T09:41:11Z 2009-01-28T01:44:45Z <p>Is there an official convention for naming private fields in VB.NET? For example, if I have a property called 'Foo', I normally call the private field '_Foo'. This seems to be frowned upon in the <a href="http://msdn.microsoft.com/en-us/library/ms229012.aspx" rel="nofollow">Offical Guidelines</a>:</p> <p>"Do not use a prefix for field names. For example, do not use g_ or s_ to distinguish static versus non-static fields."</p> <p>In C#, you could call the private field 'foo', the property 'Foo', and refer to the private field as 'this.foo' in the constructor. As VB.NET is case insensitive you can't do this - any suggestions?</p> http://stackoverflow.com/questions/403/tool-to-aid-code-review/420#420 8 Answer by Luke Girvin for Tool to aid Code Review Luke Girvin 2008-08-02T11:56:56Z 2009-01-21T09:22:59Z <p>I haven't tried it myself, but Google have released a tool called <a href="http://codereview.appspot.com/" rel="nofollow">Code Review</a>, previously codenamed<a href="http://code.google.com/p/rietveld" rel="nofollow">rietveld</a>. Looks like it's open source, works with Subversion, and is based on their internal tool Mondrian, which uses Perforce as a backend.</p> <p>It's written by Guido van Rossum, as far as I can tell it can be used for any language (not just Python). <a href="http://radar.oreilly.com/2008/05/mondrian-guido-google-app-engine.html" rel="nofollow">For more information</a>.</p> http://stackoverflow.com/questions/389496/alternatives-to-make-for-linux-freebsd/389689#389689 2 Answer by Luke Girvin for Alternatives to make for linux/freebsd? Luke Girvin 2008-12-23T18:31:30Z 2008-12-23T18:31:30Z <p><a href="http://rake.rubyforge.org/" rel="nofollow">Rake</a> - "a simple ruby build program with capabilities similar to make".</p> http://stackoverflow.com/questions/6719/asp-net-master-pages 2 ASP.NET Master Pages Luke Girvin 2008-08-09T09:51:37Z 2008-12-12T14:38:00Z <P>I've just been learning about master pages in ASP.NET 2.0. They sound great, but how well do they work in practice? Does anybody have experience of using them for a large web site?</P> http://stackoverflow.com/questions/96944/what-is-the-best-keyboard-mouse-for-ergonomics-or-to-prevent-wrist-pain/231782#231782 3 Answer by Luke Girvin for What is the best keyboard/mouse for ergonomics or to prevent wrist pain? Luke Girvin 2008-10-23T22:25:06Z 2008-10-23T22:25:06Z <p>Personally, I've found that it's using the mouse, rather than using the keyboard, that causes me pain in the hands. I'd suggest using keyboard shortcuts as much as possible, and trying using the mouse in your left hand (assuming you're right handed) as suggested earlier.</p> http://stackoverflow.com/questions/58640/great-programming-quotes/61467#61467 10 Answer by Luke Girvin for Great programming quotes Luke Girvin 2008-09-14T17:05:42Z 2008-09-15T09:46:49Z <p>Paul Graham has some good quotes on his <a href="http://www.paulgraham.com/quotes.html" rel="nofollow">web site.</p> <p>I particularly like Greenspun's Tenth Rule</a>:</p> <p>"Any sufficiently complicated C or Fortran program contains an ad hoc informally-specified bug-ridden slow implementation of half of Common Lisp."</p> http://stackoverflow.com/questions/58976/how-do-i-get-the-current-state-of-caps-lock-in-vb-net 1 How do I get the current state of Caps Lock in VB.NET? Luke Girvin 2008-09-12T13:37:16Z 2008-09-12T13:41:04Z <p>How do I find out whether or not Caps Lock is activated, using VB.NET?</p> <p>This is a follow-up to my <a href="http://beta.stackoverflow.com/questions/58937/how-do-i-toggle-caps-lock-in-vbnet" rel="nofollow">earlier question</a>.</p> http://stackoverflow.com/questions/58937/how-do-i-toggle-caps-lock-in-vb-net 1 How do I toggle Caps Lock in VB.NET? Luke Girvin 2008-09-12T13:22:03Z 2008-09-12T13:24:50Z <p>Using VB.NET, how do I toggle the state of Caps Lock? </p> http://stackoverflow.com/questions/56427/are-there-any-resources-for-becoming-a-cygwin-power-user/56463#56463 8 Answer by Luke Girvin for Are there any resources for becoming a Cygwin "power user"? Luke Girvin 2008-09-11T12:50:41Z 2008-09-11T12:50:41Z <p>If you've already read the <a href="http://cygwin.com/cygwin-ug-net/" rel="nofollow">Cygwin User Guide</a>, take a look at <a href="http://www.weiqigao.com/blog/2006/08/14/ten_steps_to_higher_cygwin_productivity.html" rel="nofollow">Ten Steps To Higher Cygwin Productivity</a>.</p> <p>Also, if you're using a shell such as bash in Cygwin, and you're familiar with Emacs, consider using <a href="http://www.gnu.org/software/emacs/manual/html_mono/eshell.html" rel="nofollow">Eshell</a> (the Emacs shell) instead.</p> http://stackoverflow.com/questions/50140/replace-huge-case-statement-in-classic-asp/50212#50212 2 Answer by Luke Girvin for Replace huge Case statement in Classic ASP Luke Girvin 2008-09-08T17:18:34Z 2008-09-08T17:18:34Z <p>Brian, the classic ASP equivalent of a Perl hash is the <a href="http://www.microsoft.com/technet/scriptcenter/guide/sas_scr_ildk.mspx?mfr=true" rel="nofollow">Scripting.Dictionary</a> object.</p> http://stackoverflow.com/questions/39712/visual-studio-2005-2008-how-can-you-share-force-all-developers-to-use-the-same-f/39715#39715 3 Answer by Luke Girvin for Visual Studio 2005/2008: How can you share/force all developers to use the same formatting rulles? Luke Girvin 2008-09-02T14:55:37Z 2008-09-02T14:55:37Z <p>If you're using C#, take a look at <a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">StyleCop</a>.</p> http://stackoverflow.com/questions/36014/why-is-net-exception-not-caught-by-try-catch-block/36049#36049 2 Answer by Luke Girvin for Why is .NET exception not caught by try/catch block? Luke Girvin 2008-08-30T15:37:39Z 2008-08-30T15:59:15Z <p>Could you be dealing with an exception which doesn't derive from System.Exception? If so see this MSDN article.</p> http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/35917#35917 3 Answer by Luke Girvin for Why are Vi and Emacs popular ? Luke Girvin 2008-08-30T12:14:15Z 2008-08-30T12:14:15Z <p>Because they're incredibly powerful. Steve Yegge puts it quite well in this <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">article</a>:</p> <p>"Emacs is the world's best text editor. It's not just the best for editing program source; it's the best for any kind of text-editing. Mastering Emacs will make you more effective at writing and editing email, documentation drafts, blogs, HTML pages, XML files, and virtually everything else that requires any typing."</p> <p>Vim is also a great editor, choosing between them is really a matter of personal preference.</p> <p>They are both especially good if you have to deal with several languages (VB.NET, C#, HTML, XML, JavaScript, SQL, etc., etc.) over the course of a day. If you only ever write C#, for example, then sticking to Visual Studio makes more sense.</p> http://stackoverflow.com/questions/10412/creating-a-word-doc-in-c-net/10472#10472 2 Answer by Luke Girvin for Creating a Word doc in C#.NET Luke Girvin 2008-08-13T23:21:17Z 2008-08-13T23:21:17Z <p>Schmidty, if you want to generate Word documents on a web server you will need a licence for each <strong>client</strong> (not just the web server). See this section in the first <a href="http://support.microsoft.com/kb/257757" rel="nofollow">link</a> Rob posted:</p> <p>"Besides the technical problems, you must also consider licensing issues. Current licensing guidelines prevent Office applications from being used on a server to service client requests, unless those clients themselves have licensed copies of Office. Using server-side Automation to provide Office functionality to unlicensed workstations is not covered by the End User License Agreement (EULA)."</p> <p>If you meet the licensing requirements, I think you will need to use COM Interop - to be specific, the <a href="http://msdn.microsoft.com/en-us/library/aa163987.aspx" rel="nofollow">Office XP Primary Interop Assemblies</a>.</p> http://stackoverflow.com/questions/5791/vb-net-isnothing-versus-is-nothing 3 VB.NET - IsNothing versus Is Nothing Luke Girvin 2008-08-08T09:45:29Z 2008-08-11T14:12:57Z <P>Does anyone here use VB.NET and have a strong preference for or against using 'IsNothing' as opposed to 'Is Nothing' (for example, 'If IsNothing(anObject)' or If anObject Is Nothing...')? If so, why?</P> <P>EDIT: If you think they're both equally acceptable, do you think it's best to pick one and stick with it, or is it OK to mix them?</P> http://stackoverflow.com/questions/687/keyboard-for-programmers/2072#2072 5 Answer by Luke Girvin for Keyboard for programmers Luke Girvin 2008-08-05T10:25:31Z 2008-08-05T10:25:31Z <P>I've got the old Das Keyboard with blank keys - it takes a bit of getting used but after a while you just don't look at the keyboard any more. The only time it causes a problem is if, say, you have to try typing in a password with one hand while holding a phone in the other.</P> <P>The clicking keys feel nice but are quite noisy - they might annoy your colleagues. The keyboard itself is quite big and seems like it should last a long time.</P> http://stackoverflow.com/questions/1024051/how-could-one-keep-a-dob-field-private-when-displaying-the-users-age-in-years Comment by Luke Girvin on How could one keep a DOB field private when displaying the user's age in years? Luke Girvin 2009-06-21T15:29:24Z 2009-06-21T15:29:24Z C-Pound Guru, the reason you might not want make your date of birth public is identity theft. From <a href="http://www.privacyrights.org/fs/fs17-it.htm" rel="nofollow">privacyrights.org/fs/fs17-it.htm</a>: &quot;Using a variety of methods, criminals steal Social Security numbers, driver's licenses, credit card numbers, ATM cards, telephone calling cards, and other pieces of individuals' identities such as date of birth. They use this information to impersonate their victims, spending as much money as they can in as short a time as possible before moving on to someone else's name and identifying information.&quot; http://stackoverflow.com/questions/677021/emacs-regular-expression-replacing-to-change-case/677033#677033 Comment by Luke Girvin on Emacs: Regular Expression Replacing to Change Case Luke Girvin 2009-03-24T12:21:56Z 2009-03-24T12:21:56Z I've edited the answer so that the backslashes in the search expression are now visible.