User Gordon Hartley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:26:19Zhttp://stackoverflow.com/feeds/user/12726http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1754766/are-the-pdc-2009-videos-released/1775878#17758781Answer by Gordon Hartley for Are the PDC 2009 videos released?Gordon Hartley2009-11-21T16:05:23Z2009-11-21T17:36:19Z<p><a href="http://microsoftpdc.com/Videos" rel="nofollow">http://microsoftpdc.com/Videos</a></p>
<p>More info. and some potentially missed videos here as well:</p>
<p><a href="http://coolthingoftheday.blogspot.com/2009/11/pdc09-session-video-list-okay-so-i-lied.html" rel="nofollow">http://coolthingoftheday.blogspot.com/2009/11/pdc09-session-video-list-okay-so-i-lied.html</a></p>
http://stackoverflow.com/questions/1258919/justifications-for-a-test-development-server/1259306#12593060Answer by Gordon Hartley for Justifications for a test/development serverGordon Hartley2009-08-11T09:29:18Z2009-08-11T09:29:18Z<p>One strong argument is availability / reduce downtime / disaster recovery.</p>
<p>i.e. to have another machine on standby to replace the production machine should anything bad happen to it hardware-wise (e.g. disk controllers or motherboards or power supplies dying).</p>
<p>Ideally the additional machine should be identical to the production one so it can be swapped directly, or individual parts swapped in as required. They can also back each other up or have a local copy of their counterparts last backup so they can be restored from quickly. </p>
<p>Of course it depends on how critical uptime is to the business as to how much value they'll see it this. If you're able to roughly work out how much they'll lose in $ due to lost business with and without a 'hot spare' server and present your case from a $ saved viewpoint (hopefully a lot more than the cost of the server), they might go for it.</p>
http://stackoverflow.com/questions/89897/best-way-to-find-out-if-an-upcast-instance-doesnt-implement-a-particular-inter1Best way to find out if an (upcast) instance doesn't implement a particular interfaceGordon Hartley2008-09-18T04:02:20Z2009-06-03T09:44:03Z
<p>Maybe the need to do this is a 'design smell' but thinking about another question, I was wondering what the cleanest way to implement the <strong>inverse</strong> of this:</p>
<pre><code>foreach(ISomethingable somethingableClass in collectionOfRelatedObjects)
{
somethingableClass.DoSomething();
}
</code></pre>
<p>i.e. How to get/iterate through all the objects that <em>don't</em> implement a particular interface?</p>
<p>Presumably you'd need to start by upcasting to the highest level:</p>
<pre><code>foreach(ParentType parentType in collectionOfRelatedObjects)
{
// TODO: iterate through everything which *doesn't* implement ISomethingable
}
</code></pre>
<p>Answer by solving the TODO: in the cleanest/simplest and/or most efficient way</p>
http://stackoverflow.com/questions/236538/rake-and-current-directory/810654#8106541Answer by Gordon Hartley for Rake and current directoryGordon Hartley2009-05-01T08:30:30Z2009-05-01T08:30:30Z<p>Why not just use Dir.pwd</p>
<p>?</p>
http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/277000#2770003Answer by Gordon Hartley for Favorite Visual Studio keyboard shortcutsGordon Hartley2008-11-10T03:28:32Z2009-03-10T22:54:44Z<p><kbd>Shift</kbd>+<kbd>ESC</kbd></p>
<p>This hides/closes any of the 'fake window' windows in Visual Studio. This includes things like the Solution Explorer, Object Browser, Output Window, Immediate window, Unit Test Windows etc. etc. and still applies whether they're pinned, floating, dockable or tabbed.</p>
<p>Shortcut into a window (e.g. <strong>Ctrl + Alt + L</strong> or <strong>Ctrl + Alt + I</strong>) do what you need to do, and Shift + ESC to get rid of it. If you don't get rid of it, the only way to give it focus again is to use the same keyboard shortcut (or the mouse, which is what we're trying to avoid....)</p>
<p>Once you get the hang of it, it's immensely useful.</p>
<p><hr /></p>
<p><em>Grrr....The amount of times of hit Ctrl + F4 to close the 'window' only to see my current code window close was insane before I found this, now it only happens occasionally..</em></p>
http://stackoverflow.com/questions/390724/how-many-development-feeds-can-you-follow/391668#3916681Answer by Gordon Hartley for How Many Development Feeds Can you Follow?Gordon Hartley2008-12-24T15:30:06Z2008-12-24T15:30:06Z<p>How many feed can I follow? Depends on the level.</p>
<p>I probably have around the same amount of feeds, 100 or so, including some aggregate feeds such as CodeBetter.Com and Los Techies. I skim read like you do, and anything that looks important, but not immediately useful gets bookmarked and tagged in del.icio.us, although there's a few feeds I tend to read verbatim</p>
<p>Even though I'm very aware of it now I still spend too much time reading and not enough time 'doing', which ultimately tends to be more productive. Remember - information is not knowledge...</p>
http://stackoverflow.com/questions/312003/what-is-the-most-ridiculous-pessimization-youve-seen/312050#3120508Answer by Gordon Hartley for What is the most ridiculous pessimization you've seen?Gordon Hartley2008-11-23T02:45:25Z2008-11-23T02:45:25Z<p>This might be at a higher level that what you were after, but fixing it (if you're allowed) also involves a higher level of pain:</p>
<p>Insisting on hand rolling an Object Relationship Manager / Data Access Layer instead of using one of the established, tested, mature libraries out there (even after they've been pointed out to you).</p>
http://stackoverflow.com/questions/180939/net-must-have-development-tools/243056#2430560Answer by Gordon Hartley for .NET "must-have" development toolsGordon Hartley2008-10-28T12:16:41Z2008-10-28T12:16:41Z<ul>
<li>Resharper </li>
<li>NUnit + TestDriven.Net</li>
<li>RhinoMocks</li>
</ul>
http://stackoverflow.com/questions/234312/what-have-you-done-to-customize-your-ide/234444#2344441Answer by Gordon Hartley for What have you done to customize your IDE?Gordon Hartley2008-10-24T17:15:41Z2008-10-24T17:58:09Z<p>For Visual Studio</p>
<ul>
<li>Most important - <a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a> - I bought my own copy so I don't have to badger my employer about it.</li>
<li>Change the colourisation/font - choose whatever suits you</li>
<li>Optimisation (vote up Gulzar's post with the link in it)</li>
<li>Don't try and make the IDE do everything, just because you can. (Kind of ironic seeing I use emacs as well). I personally really dislike integrated source code management. </li>
<li>Change some defaut file associations so double clicking certain file types doesn't kick off Visual Studio</li>
</ul>
<p>Aside from Resharper I've actually found most other beneficial thing is not customising the IDE, but customising <strong>yourself</strong> to learn the keyboard shortcuts. Start with the big gains like Ctrl -, Ctrl Shift -, Ctrl Shift V, Ctrl Alt L etc. etc. and then gradually learn the rest of the shortcuts in order of how often you'd use them</p>
http://stackoverflow.com/questions/234401/scm-inside-or-outside-the-ide/234637#2346372Answer by Gordon Hartley for SCM inside or outside the IDE?Gordon Hartley2008-10-24T17:56:27Z2008-10-24T17:56:27Z<p>I definitely prefer outside. That being said, my primary IDE is Visual Studio, and I haven't used eclipse or intellij (although I have used cvs-mode in emacs...), so your mileage may vary...</p>
<ul>
<li><p>Making changes and committing changes are separate tasks - having them both be easily available in the IDE means you don't clearly delineate between completing a set of changes and committing them. Quite often it's a case of type type type, compile, test, test, commit...'oh, wait - I forgot to foo the bar as well. Context switching from IDE mode to SCM mode tends to trigger the 'oh, wait' before the commit.</p></li>
<li><p>Keeping related files for commits together - it's all too easy to commit source changes, then remember the related SQL scripts and commit those separately and then add the new image files as you forgot those because they're new to the repository and so on.</p></li>
<li><p>Similar to the above, it tends to be a lot easier to commit things at the wrong level/directory in the repository when in the IDE. (e.g. I should have committed at solution level, not project level)</p></li>
<li><p>It tends to be easier to get a complete diff of your workspace against the repository outside the IDE, which is often worthwhile.</p></li>
<li><p>It also probably makes your IDE that extra bit faster</p></li>
</ul>
<p>I also agree with a previous poster - all non-trivial SCM tasks tend to be easier outside development IDE integration.</p>
<p>To be honest, as long as you're avoiding messy commit situations described above, do whatever you find most comfortable. In terms of workflow - the separation has to be 'cleaner', whether this cleanliness outweighs the convenience is going to be in the eye of the beholder - we're largely reacting to our personal experience (I suspect mine is similar to yours).</p>
<p>Whatever you do, use anything but SourceSafe... I have to at the moment for legacy code - I find it abhorrent that files are made read only and that the SCM integration physically alters the contents of files...</p>
http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faq/101530#1015301Answer by Gordon Hartley for What is your tool for version control (FAQ)Gordon Hartley2008-09-19T12:43:32Z2008-09-19T12:43:32Z<p><a href="http://www.codinghorror.com/blog/archives/000660.html" rel="nofollow">Anything But SourceSafe</a>, courtesy of some guy called <a href="http://stackoverflow.com/users/1/jeff-atwood">Jeff Atwood</a></p>
http://stackoverflow.com/questions/100691/moving-to-asp-net-vb-or-c/101475#1014757Answer by Gordon Hartley for Moving to ASP.NET - VB or C#?Gordon Hartley2008-09-19T12:35:35Z2008-09-19T12:35:35Z<p>First of all, don't port something for the sake of it. If it's working fine and there's little to be gained from porting it, leave it alone, and continue doing bugfixes and small enhancements in VBScript. If there's sufficient reason to move things across, then do it at that point, but you're much better off becoming familiar with the .Net version of web applications first rather than try and learn that on the fly if you do the port upfront. It's much easier to learn the new concepts like PostBack and ViewState in a 'clean' environment. </p>
<p>There's also less scope to break out of your old way of thinking as you port stuff (just making it work any old how rather than redesigning where needed).</p>
<p>Ultimately there's not a great deal of difference in the long run, it's mostly perceptual and a matter of personal taste but I'd propose learning C# first because it's lack of familiarity will emphasise the fact that you're learning something new. Hopefully thi will help you learn to do things the natural .Net way rather than the largely procedural VB(script) way. You're trying to unlearn as well as learn. Familiarity of some keywords will work against you.</p>
<p>Echoing other benefits throughout some of the posts, and adding a few of my own: </p>
<ul>
<li>Future potential earnings : C# developers generally are worth more than VB.Net developers because of the perceptual difference. </li>
<li>Most of the open source .Net code out there is C#, and the quality of it generally (though not always) tends to be higher.</li>
<li>There are more Q&A and examples and out there on the internet in C# than VB.Net. At the time I post this there's <strong>1572</strong> posts tagged with C#, only <strong>185</strong> with VB.Net right here on Stack OverFlow.</li>
<li>C# OO keywords are reasonably standard, it makes it easier to read other OO language code. VB.Net goes off and renames things for no good reason e.g. <em>abstract</em> (C#, C++, Java and more...) vs <em>MustInherit</em> (VB.Net only). </li>
<li>It's generally accepted that once your familiar in both languages it's a lot easier to visually parse C# code than VB.Net code</li>
<li>You won't get 'looked down' on by C#'ers and can help poke fun at the VB.Net people (if you so desire - the culture exists...)</li>
</ul>
<p>Once you've initially learned it in C#, it should be much easier to roll across to VB.Net than it would be the other way around. Invest in your own future.</p>
http://stackoverflow.com/questions/84263/please-help-me-with-my-net-abstract-classes/85531#855311Answer by Gordon Hartley for Please help me with my .NET abstract classes.Gordon Hartley2008-09-17T17:18:08Z2008-09-18T05:57:49Z<blockquote>
<p>Clarification: There are multiple root nodes and roots may have parent nodes. Each is the root of only a sub-tree that has distinct styling. Think of different, color-coded departments. (Perhaps root is a poor name choice. Suggestions?)</p>
</blockquote>
<p>Root is a poor name choice because it's (somewhat ironically) accepted as explicitly the top level of a tree structure, because the tree starts where root comes out of the ground. Any node beyond that is a branch or leaf and not directly attached to the root.</p>
<p>A better name would be something like IsAuthoritativeStyleNode, IsCascadingStyleNode, IsStyleParentNode or instead qualify it: e.g. IsDepartmentRootNode. Giving things clear unambiguous names is one of things that drastically improves readability / easy understanding.</p>
<p>You can't really achieve what you want just via abstract base classes/inheritence. As per other suggestion(s), consider interfaces instead. </p>
<p>I'd also consider thinking about whether you're letting the database schema drive your client side class design too much. Not saying it needs changing in this case, but it should at least be thought about. Think about how you could factor out properties into separate tables referencing the common 'Node' table, and normalize them to minimize nulls and/or duplicated identical data. </p>
http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-quickly/73746#737466Answer by Gordon Hartley for What's the best way to learn C# quickly?Gordon Hartley2008-09-16T15:42:50Z2008-09-18T01:01:05Z<p>You should specify whether their primary need will be for WinForms (applications) or ASP.Net (websites) - or both, and it also depends on what other technologies you're going to be using - there's a lot of stuff out there now.</p>
<p>The best way to learn is <strong>doing</strong>.</p>
<p>Even if they're learning as they knock out production code, they should maintain their own sandbox or playpen projects for trying stuff out.</p>
<p>If they have some 'official' learning time set aside, rather than just use a book or a blog or whatever, choose some minimalist project to implement. Then enhance it until done, or chose another project with a different focus.Obviously this would be tailored to suit whatever they're likely to work on first.</p>
<p>e.g.</p>
<ol>
<li>Build me a hello world website.</li>
<li>Link to other pages using the <a href> tag and the linkbutton control</li>
<li>Inherit from a master page which shows a menu</li>
<li>Implement a form which reads from and posts to a database, explore PostBack</li>
<li>Implement a sitemap</li>
<li>Add authentication using the ASP.Net 2.0 Role and Membership providers</li>
<li>etc. etc.</li>
</ol>
http://stackoverflow.com/questions/320657/when-good-programmers-go-bad/320672#320672Comment by Gordon Hartley on When good programmers go bad!Gordon Hartley2009-05-04T08:21:20Z2009-05-04T08:21:20ZUnless they've never suitably rewareded in the past, which may be part of the problemhttp://stackoverflow.com/questions/506827/how-to-convert-a-week-200851-into-a-date-2008-12-27Comment by Gordon Hartley on How to convert a week (200851) into a date (2008-12-27)?Gordon Hartley2009-02-03T12:14:42Z2009-02-03T12:14:42ZMore information needed - depends on where week 1 ends, and whether it has to be a full week or not.http://stackoverflow.com/questions/349559/sql-how-to-search-a-many-to-many-relationshipComment by Gordon Hartley on SQL how to search a many to many relationshipGordon Hartley2008-12-08T13:53:45Z2008-12-08T13:53:45ZPlease make it clear in your question whether you're interested in:
* All notes associated with label "one" or "two" (or both)
or
* Only notes associated with <i>both</i> labels "one" and "two".http://stackoverflow.com/questions/312003/what-is-the-most-ridiculous-pessimization-youve-seen/312050#312050Comment by Gordon Hartley on What is the most ridiculous pessimization you've seen?Gordon Hartley2008-11-24T00:25:34Z2008-11-24T00:25:34ZI never inferred it's always a bad idea. Unless you're say Frans Bouma or similar, I doubt ORM/DAL stuff is a core business function. It's extremely cost inefficent to write your own equivelant, a case of reinventing the (square) wheel, usually due to NIH syndrome.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1735#1735Comment by Gordon Hartley on What is the single most influential book every programmer should read?Gordon Hartley2008-10-24T18:12:33Z2008-10-24T18:12:33ZI personally rate this over Code Complete because it's at a higher level conceptually and is concise - easy to read and start benefiting from (Code Complete's dense detail is great when you want it). Due to this however, the book is aging a lot quicker - hopefully a new edition is on the way?