User harriyott - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T14:39:07Zhttp://stackoverflow.com/feeds/user/5744http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123085/bypass-net-v3-5-verification-when-installing-sql-server-2008-express/1773567#17735670Answer by harriyott for Bypass .Net v3.5 verification when installing SQL Server 2008 Expressharriyott2009-11-20T22:08:34Z2009-11-20T22:08:34Z<p>Installing Windows Installer 4.5 worked for me. Once installed, the message goes away.</p>
http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772761#17727617Answer by harriyott for Year end budget - what development software should be considered?harriyott2009-11-20T19:36:27Z2009-11-20T19:44:33Z<p><a href="http://www.jetbrains.com/resharper/" rel="nofollow">JetBrains Resharper</a> - I've used the trial and loved it. Not hugely expensive though</p>
http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772787#17727875Answer by harriyott for Year end budget - what development software should be considered?harriyott2009-11-20T19:41:15Z2009-11-20T19:41:15Z<p>Beyond Compare. Really not expensive, but super useful for deploying, merging, anything.</p>
http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772782#17727825Answer by harriyott for Year end budget - what development software should be considered?harriyott2009-11-20T19:40:03Z2009-11-20T19:40:03Z<p>VMWare Workstation. Apparently the best virtualization software, where VirtualBox is free.</p>
http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772777#17727773Answer by harriyott for Year end budget - what development software should be considered?harriyott2009-11-20T19:38:51Z2009-11-20T19:38:51Z<p>PhotoShop. I've always muddled through with Paint.NET. Being a coder, it's harder to justify graphics software.</p>
http://stackoverflow.com/questions/1770482/set-values-of-li-tag-in-html/1770510#17705102Answer by harriyott for Set values of LI tag in HTMLharriyott2009-11-20T13:45:35Z2009-11-20T13:45:35Z<p>It depends on how the HTML is being generated. If it's static, then simply typing the values in would work:</p>
<pre><code><li value="35">35.apple</li>
</code></pre>
<p>If it's generated server-side, then you can add it in the server code. </p>
<p>The third way would be to use jQuery to modify the contents after it has been rendered.</p>
http://stackoverflow.com/questions/1770410/how-to-do-unit-testing-in-visual-studio-2005/1770456#17704564Answer by harriyott for How to do unit testing in Visual Studio 2005?harriyott2009-11-20T13:34:48Z2009-11-20T13:34:48Z<p>If you can't use NUnit (and presumably MBUnit etc.), then you have two options: upgrade to VS2005 Team System or VS2008 Professional. Sure, it will possibly cost money, but if challenged when presenting your case to the manager, point out that their "policy" is what's costing them the money.</p>
http://stackoverflow.com/questions/1770230/how-to-overcome-the-emotional-drawbacks-of-pair-programming/1770439#17704390Answer by harriyott for How to overcome the emotional drawbacks of Pair Programming?harriyott2009-11-20T13:31:57Z2009-11-20T13:31:57Z<p>Chances are that the other developer has similar concerns - generally we all know we're not as good as we would like - and they could learn from you. If you're a deep thinker, then you have definitely got something to offer a more impulsive developer who may take the first approach that passes the unit test without considering the best way first.</p>
http://stackoverflow.com/questions/1770369/how-to-make-documents-evolve/1770381#17703816Answer by harriyott for How to make documents evolve?harriyott2009-11-20T13:20:14Z2009-11-20T13:26:55Z<p>I like using a wiki for this kind of information. Because it's a wiki, almost by definition people understand that it's a live document, and in my experience people do keep it updated, especially if there are links to the individual pages in the source code.</p>
http://stackoverflow.com/questions/1756991/can-anyone-recommend-a-nhibernate-generating-tool/1757617#17576170Answer by harriyott for Can anyone recommend a NHibernate generating tool?harriyott2009-11-18T17:18:07Z2009-11-18T17:18:07Z<p>I've used the <a href="http://secretgeek.net/wscg.htm" rel="nofollow">World's Simplest Code Generator</a> for this. I paste the class properties into the top window, the following pattern into the second window, and set the "Columns separated by" to a space.</p>
<pre><code><property name="$3" />
</code></pre>
<p>I've saved this as a macro (click **** ADD your own ** in the drop down) so I can do it repeatedly. Obviously this doesn't cover primary key generation, many-to-one etc. but it is a good start to get most of it done quickly</p>
http://stackoverflow.com/questions/1756868/splitting-a-string-in-c/1756883#17568832Answer by harriyott for Splitting a string in C#harriyott2009-11-18T15:42:37Z2009-11-18T15:42:37Z<p>That's rather a large problem for <code>String.Split()</code>. I'd recommend using an XML parser instead.</p>
http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/1744093#17440931Answer by harriyott for The funniest/weirdest error message you've got from a development environment/applicationharriyott2009-11-16T18:51:05Z2009-11-16T18:51:05Z<p>"When casting from a number, the value must be a <a href="http://harriyott.com/2005/07/thats-where-im-going-wrong.aspx" rel="nofollow">number less than infinity</a>."</p>
<p>Silly me trying to use numbers bigger than infinity!</p>
http://stackoverflow.com/questions/1742282/crash-within-cstring/1742433#17424330Answer by harriyott for Crash within CStringharriyott2009-11-16T14:16:20Z2009-11-16T14:16:20Z<p>I'm sure you'll have checked the obvious: wMsgLen >= 32</p>
http://stackoverflow.com/questions/1728877/what-t-sql-data-type-would-you-typically-use-for-weight-and-length/1728949#17289491Answer by harriyott for What T-SQL data type would you typically use for weight and length?harriyott2009-11-13T12:31:49Z2009-11-13T12:31:49Z<p>Don't forget to put the <a href="http://harriyott.com/2008/02/tip-using-units-of-measure.aspx" rel="nofollow">units of measure in the column name</a>, e.g. WeightInKilos, LengthInMetres</p>
http://stackoverflow.com/questions/1716939/should-i-recompile-the-libraries-for-net-4-0/1716956#17169560Answer by harriyott for Should I recompile the libraries for .NET 4.0?harriyott2009-11-11T17:53:38Z2009-11-11T17:53:38Z<p>I would recommend it, even if it is just to satisfy everyone that there are no risks in using the libraries in .NET 4.0</p>
http://stackoverflow.com/questions/1693402/obfuscationreflection/1693514#16935141Answer by harriyott for Obfuscation+Reflection.harriyott2009-11-07T16:08:12Z2009-11-07T16:08:12Z<p>Depending on the obfuscator, a mapping file might be generated. I've used this to lookup which properties have been mapped to which obfuscated ones. The problem is shipping the mapping file with the assembly kind of defeats the object of obfuscating.</p>
http://stackoverflow.com/questions/1674762/mssql-2005-management-studio-recover-accidentally-closed-tab/1674796#16747963Answer by harriyott for MSSQL 2005 Management Studio - Recover Accidentally Closed Tabharriyott2009-11-04T16:03:04Z2009-11-04T16:03:04Z<p>I'm not sure that there is, but using <a href="http://www.timesnapper.com/" rel="nofollow">TimeSnapper</a> can be a help to show what was previously in the window.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/58646#58646448Answer by harriyott for Great programming quotesharriyott2008-09-12T10:41:58Z2009-10-23T22:53:08Z<p>"Some people, when confronted with a problem, think "I know, I’ll use regular expressions." Now they have two problems." -- Jamie Zawinski</p>
http://stackoverflow.com/questions/1606807/staying-current-with-your-programming-language/1606818#16068182Answer by harriyott for Staying current with your programming language? harriyott2009-10-22T12:20:00Z2009-10-22T12:20:00Z<p>I pick a language, and implement something small but useful with it in my spare time. For example, I'm learning ASP.NET MVC and NHibernate, and so I'm using it on a new website for a local skatepark.</p>
http://stackoverflow.com/questions/1600462/favourite-features-of-vs-2010/1601281#16012811Answer by harriyott for Favourite Features of VS 2010harriyott2009-10-21T14:40:00Z2009-10-21T14:40:00Z<p><a href="http://vishaljoshi.blogspot.com/2009/05/web-1-click-publish-with-vs-2010.html" rel="nofollow">One-click web publishing</a> will be handy.</p>
http://stackoverflow.com/questions/1490940/what-precautions-should-you-take-when-a-senior-employee-leaves/1491526#14915261Answer by harriyott for What precautions should you take when a senior employee leaves?harriyott2009-09-29T09:36:14Z2009-09-29T09:36:14Z<p>Make sure they don't have copies of source code. Hard to prove, but get them to sign something to say that they don't.</p>
http://stackoverflow.com/questions/1486620/what-is-important-to-put-on-a-resume-when-searching-for-an-entry-level-job-in-sof/1486665#14866654Answer by harriyott for What is important to put on a resume when searching for an entry level job in Software Development?harriyott2009-09-28T11:55:03Z2009-09-28T11:55:03Z<p>I would recommend putting on the things you do in your own time: any websites you've written, open source projects you've contributed, conferences / user groups you attend. Anything that shows you're interested in learning in your time is positive.</p>
http://stackoverflow.com/questions/1244712/calling-across-two-visual-studio-localhosts-with-webclient1Calling across two Visual Studio localhosts with WebClientharriyott2009-08-07T13:32:19Z2009-09-17T18:04:45Z
<p>I have two ASP.NET projects in my solution, and run on different localhost ports when I start debugging. I have a generic handler in site A, which is called by site B:</p>
<pre><code>String url = "http://localhost:1234/UrlOnSiteA.ashx";
WebClient client = New WebClient();
client.Credentials = CredentialCache.DefaultNetworkCredentials;
client.OpenRead(url);
</code></pre>
<p>The OpenRead call throws an exception with a 500 error, and I don't know why. The error message is:</p>
<blockquote>
<p>System.Net.WebException: The remote server returned an error: (500) Internal Server Error.</p>
</blockquote>
<p>Other info:</p>
<ul>
<li>A breakpoint on the very first line of the handler code isn't hit.</li>
<li>The handler runs properly (and hits the breakpoint) when its URL is used in a browser.</li>
<li>Visual Studio 2008 Professional, running .NET 2.0 sites.</li>
</ul>
<p>I suspect it's a configuration issue. Any ideas?</p>
http://stackoverflow.com/questions/1420150/how-to-fetch-notifications-from-facebook/1420166#14201660Answer by harriyott for How to fetch notifications from Facebookharriyott2009-09-14T07:41:11Z2009-09-14T07:41:11Z<p>There's an RSS feed for the notifications.</p>
http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411918#14119180Answer by harriyott for How to become a "faster" programmer?harriyott2009-09-11T16:17:04Z2009-09-11T16:17:04Z<p>Re-negotiate the estimates and timescales. Make sure <strong>you</strong> are the one who says how long something will take, and don't succumb to any "well, we need it done sooner" or "how about a stretch-target" suggestions.</p>
<p>Read Joel Spolsky's article on estimates, which basically advocates breaking the piece of work into small chunks, and estimate each one. If any of them are counted in days, break them down further until you have everything estimated in hours.</p>
http://stackoverflow.com/questions/1244105/sharing-an-httpruntime-cache-across-two-iis-applications1Sharing an HttpRuntime.Cache across two IIS applicationsharriyott2009-08-07T10:49:10Z2009-08-07T10:53:21Z
<p>I have two ASP.NET 2.0 applications in IIS; a public booking system and an admin system to manage prices. There is a shared DLL project that accesses the database, used by both applications.</p>
<p>To improve performance, the prices are cached in DLL code to save hitting the database on every request. However, when the administrator changes the prices, the cache is refreshed on the admin application (and obviously it isn't refreshed on the public application)</p>
<p>So, to the question. Is it possible to configure IIS so that these two applications share the HttpRuntime.Cache? If so, how should it be set up?</p>
http://stackoverflow.com/questions/1243563/how-do-i-convince-my-colleagues-not-to-implement-idisposable-on-everything/1243605#12436052Answer by harriyott for How do I convince my colleagues not to implement IDisposable on everything?harriyott2009-08-07T08:33:39Z2009-08-07T08:33:39Z<p>It's a hard one to pull off, but I've found the best way to get people to do something you want is to let them think it's their idea. You know them better than me, but phrases like "If only there was a way to find out why the objects are hanging around so long" and "I wish I knew more about events holding on to objects" might be a starting point. </p>
http://stackoverflow.com/questions/782315/wpf-data-binding-manual-update0WPF data-binding manual update harriyott2009-04-23T15:40:01Z2009-08-06T17:36:47Z
<p>I have a List<Foo> from a non-WPF assembly which I'm attempting to databind to a WPF <ListBox>. Initially, the list items display correctly, but when I add a new item to the List<Foo>, the listbox doesn't add a list item. How do I tell the list box to re-bind / update / refresh the data and show the new item?</p>
<p>(n.b. complete WPF n00b)</p>
http://stackoverflow.com/questions/1231960/what-version-of-visual-studio-2008-are-you-using/1232098#12320980Answer by harriyott for What version of Visual Studio 2008 are you using?harriyott2009-08-05T09:22:38Z2009-08-05T09:22:38Z<p>I'm on the <a href="http://www.microsoft.com/bizspark/" rel="nofollow">BizSpark program</a>, so I get any edition for free, for three years. At the end of three years, I pay $100. I'm using 2008 Professional at the moment.</p>
http://stackoverflow.com/questions/1165318/why-cant-i-keep-2-languages-in-my-head-at-the-same-time/1165346#116534610Answer by harriyott for Why can't I keep 2 languages in my head at the same time?harriyott2009-07-22T13:42:22Z2009-07-22T17:08:48Z<p>If it's that bad, can you start the project again in C#? It may be quicker than waiting for your java-mood to return. It should be quicker than starting from scratch, as you've coded the logic and domain already, so you may be able to translate-and-type your way through that bit. </p>
http://stackoverflow.com/questions/123085/bypass-net-v3-5-verification-when-installing-sql-server-2008-express/1773567#1773567Comment by harriyott on Bypass .Net v3.5 verification when installing SQL Server 2008 Expressharriyott2009-11-20T22:09:10Z2009-11-20T22:09:10ZHowever, it didn't install on Windows 7http://stackoverflow.com/questions/1770369/how-to-make-documents-evolve/1770381#1770381Comment by harriyott on How to make documents evolve?harriyott2009-11-20T19:17:31Z2009-11-20T19:17:31ZFortunately that's easy with a wikihttp://stackoverflow.com/questions/1770410/how-to-do-unit-testing-in-visual-studio-2005/1770456#1770456Comment by harriyott on How to do unit testing in Visual Studio 2005?harriyott2009-11-20T13:39:28Z2009-11-20T13:39:28ZTime to change jobs? ;-)
http://stackoverflow.com/questions/1756868/splitting-a-string-in-c/1756883#1756883Comment by harriyott on Splitting a string in C#harriyott2009-11-18T15:45:16Z2009-11-18T15:45:16ZAh, ok. Is there any chance the opening <p> tag will have attributes (e.g <p class="article">)?
http://stackoverflow.com/questions/1693402/obfuscationreflectionComment by harriyott on Obfuscation+Reflection.harriyott2009-11-07T16:07:25Z2009-11-07T16:07:25ZThe type name might be obfuscated too, if it's a class in the same assembly
http://stackoverflow.com/questions/1674762/mssql-2005-management-studio-recover-accidentally-closed-tab/1674796#1674796Comment by harriyott on MSSQL 2005 Management Studio - Recover Accidentally Closed Tabharriyott2009-11-05T08:33:42Z2009-11-05T08:33:42ZUnfortunately not. That would be a good feature though, I'll suggest it ;-)http://stackoverflow.com/questions/514754/why-does-publish-fail-in-vs2008-without-an-error-message/649306#649306Comment by harriyott on Why does Publish fail in VS2008 without an error message?harriyott2009-11-04T10:53:57Z2009-11-04T10:53:57ZWow, who'd have thought it? It fixed it for me too.http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application/71276#71276Comment by harriyott on Should you obfuscate a commercial .Net application?harriyott2009-10-21T14:26:46Z2009-10-21T14:26:46ZThere's a mapping file generated, so (although tedious) it is possible to match them up again.http://stackoverflow.com/questions/1098597/generate-a-z-from-asp-net-sitemapComment by harriyott on Generate A-Z from ASP.NET SiteMapharriyott2009-09-24T10:39:49Z2009-09-24T10:39:49ZIt's nice to know that you're using my codehttp://stackoverflow.com/questions/1244712/calling-across-two-visual-studio-localhosts-with-webclientComment by harriyott on Calling across two Visual Studio localhosts with WebClientharriyott2009-09-23T22:19:34Z2009-09-23T22:19:34ZThanks for answering Justin. Good suggestions, but having got a tumbleweed badge for the question I moved on, and don't actually need to fix it any more. I'll accept your answer for completeness.http://stackoverflow.com/questions/1244105/sharing-an-httpruntime-cache-across-two-iis-applications/1244122#1244122Comment by harriyott on Sharing an HttpRuntime.Cache across two IIS applicationsharriyott2009-08-07T11:11:28Z2009-08-07T11:11:28ZThanks Thies. That's what I suspected. I have already added a generic handler to the public site that is called by the admin site, but I was wondering if there was a neater way.http://stackoverflow.com/questions/1243822/threading-nested-foreach-loopsComment by harriyott on Threading nested foreach-loops?harriyott2009-08-07T09:33:00Z2009-08-07T09:33:00ZNice question. Looking forward to seeing the responses.http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application/71276#71276Comment by harriyott on Should you obfuscate a commercial .Net application?harriyott2009-08-05T09:08:13Z2009-08-05T09:08:13ZNo it isn't. There are some things that aren't obfuscated in CE, and loading the obfuscated DLL in Reflector shows up the unobfuscated items as clearly readable. After obfuscating with the second tool, these items are obfuscated, and there is nothing readable in Reflector.
http://stackoverflow.com/questions/1165318/why-cant-i-keep-2-languages-in-my-head-at-the-same-time/1165346#1165346Comment by harriyott on Why can't I keep 2 languages in my head at the same time?harriyott2009-07-23T08:37:27Z2009-07-23T08:37:27ZProbably should. Maybe best to think of it as pseudo-code...http://stackoverflow.com/questions/1165318/why-cant-i-keep-2-languages-in-my-head-at-the-same-time/1165346#1165346Comment by harriyott on Why can't I keep 2 languages in my head at the same time?harriyott2009-07-22T17:08:16Z2009-07-22T17:08:16ZOK, so comments can't be formatted :-|