User harriyott - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:39:07Z http://stackoverflow.com/feeds/user/5744 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/123085/bypass-net-v3-5-verification-when-installing-sql-server-2008-express/1773567#1773567 0 Answer by harriyott for Bypass .Net v3.5 verification when installing SQL Server 2008 Express harriyott 2009-11-20T22:08:34Z 2009-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#1772761 7 Answer by harriyott for Year end budget - what development software should be considered? harriyott 2009-11-20T19:36:27Z 2009-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#1772787 5 Answer by harriyott for Year end budget - what development software should be considered? harriyott 2009-11-20T19:41:15Z 2009-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#1772782 5 Answer by harriyott for Year end budget - what development software should be considered? harriyott 2009-11-20T19:40:03Z 2009-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#1772777 3 Answer by harriyott for Year end budget - what development software should be considered? harriyott 2009-11-20T19:38:51Z 2009-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#1770510 2 Answer by harriyott for Set values of LI tag in HTML harriyott 2009-11-20T13:45:35Z 2009-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>&lt;li value="35"&gt;35.apple&lt;/li&gt; </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#1770456 4 Answer by harriyott for How to do unit testing in Visual Studio 2005? harriyott 2009-11-20T13:34:48Z 2009-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#1770439 0 Answer by harriyott for How to overcome the emotional drawbacks of Pair Programming? harriyott 2009-11-20T13:31:57Z 2009-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#1770381 6 Answer by harriyott for How to make documents evolve? harriyott 2009-11-20T13:20:14Z 2009-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#1757617 0 Answer by harriyott for Can anyone recommend a NHibernate generating tool? harriyott 2009-11-18T17:18:07Z 2009-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>&lt;property name="$3" /&gt; </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#1756883 2 Answer by harriyott for Splitting a string in C# harriyott 2009-11-18T15:42:37Z 2009-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#1744093 1 Answer by harriyott for The funniest/weirdest error message you've got from a development environment/application harriyott 2009-11-16T18:51:05Z 2009-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#1742433 0 Answer by harriyott for Crash within CString harriyott 2009-11-16T14:16:20Z 2009-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#1728949 1 Answer by harriyott for What T-SQL data type would you typically use for weight and length? harriyott 2009-11-13T12:31:49Z 2009-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#1716956 0 Answer by harriyott for Should I recompile the libraries for .NET 4.0? harriyott 2009-11-11T17:53:38Z 2009-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#1693514 1 Answer by harriyott for Obfuscation+Reflection. harriyott 2009-11-07T16:08:12Z 2009-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#1674796 3 Answer by harriyott for MSSQL 2005 Management Studio - Recover Accidentally Closed Tab harriyott 2009-11-04T16:03:04Z 2009-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#58646 448 Answer by harriyott for Great programming quotes harriyott 2008-09-12T10:41:58Z 2009-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#1606818 2 Answer by harriyott for Staying current with your programming language? harriyott 2009-10-22T12:20:00Z 2009-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#1601281 1 Answer by harriyott for Favourite Features of VS 2010 harriyott 2009-10-21T14:40:00Z 2009-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#1491526 1 Answer by harriyott for What precautions should you take when a senior employee leaves? harriyott 2009-09-29T09:36:14Z 2009-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#1486665 4 Answer by harriyott for What is important to put on a resume when searching for an entry level job in Software Development? harriyott 2009-09-28T11:55:03Z 2009-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-webclient 1 Calling across two Visual Studio localhosts with WebClient harriyott 2009-08-07T13:32:19Z 2009-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#1420166 0 Answer by harriyott for How to fetch notifications from Facebook harriyott 2009-09-14T07:41:11Z 2009-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#1411918 0 Answer by harriyott for How to become a "faster" programmer? harriyott 2009-09-11T16:17:04Z 2009-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-applications 1 Sharing an HttpRuntime.Cache across two IIS applications harriyott 2009-08-07T10:49:10Z 2009-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#1243605 2 Answer by harriyott for How do I convince my colleagues not to implement IDisposable on everything? harriyott 2009-08-07T08:33:39Z 2009-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-update 0 WPF data-binding manual update harriyott 2009-04-23T15:40:01Z 2009-08-06T17:36:47Z <p>I have a List&lt;Foo&gt; from a non-WPF assembly which I'm attempting to databind to a WPF &lt;ListBox&gt;. Initially, the list items display correctly, but when I add a new item to the List&lt;Foo&gt;, 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#1232098 0 Answer by harriyott for What version of Visual Studio 2008 are you using? harriyott 2009-08-05T09:22:38Z 2009-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#1165346 10 Answer by harriyott for Why can't I keep 2 languages in my head at the same time? harriyott 2009-07-22T13:42:22Z 2009-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#1773567 Comment by harriyott on Bypass .Net v3.5 verification when installing SQL Server 2008 Express harriyott 2009-11-20T22:09:10Z 2009-11-20T22:09:10Z However, it didn't install on Windows 7 http://stackoverflow.com/questions/1770369/how-to-make-documents-evolve/1770381#1770381 Comment by harriyott on How to make documents evolve? harriyott 2009-11-20T19:17:31Z 2009-11-20T19:17:31Z Fortunately that's easy with a wiki http://stackoverflow.com/questions/1770410/how-to-do-unit-testing-in-visual-studio-2005/1770456#1770456 Comment by harriyott on How to do unit testing in Visual Studio 2005? harriyott 2009-11-20T13:39:28Z 2009-11-20T13:39:28Z Time to change jobs? ;-) http://stackoverflow.com/questions/1756868/splitting-a-string-in-c/1756883#1756883 Comment by harriyott on Splitting a string in C# harriyott 2009-11-18T15:45:16Z 2009-11-18T15:45:16Z Ah, ok. Is there any chance the opening &lt;p&gt; tag will have attributes (e.g &lt;p class=&quot;article&quot;&gt;)? http://stackoverflow.com/questions/1693402/obfuscationreflection Comment by harriyott on Obfuscation+Reflection. harriyott 2009-11-07T16:07:25Z 2009-11-07T16:07:25Z The 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#1674796 Comment by harriyott on MSSQL 2005 Management Studio - Recover Accidentally Closed Tab harriyott 2009-11-05T08:33:42Z 2009-11-05T08:33:42Z Unfortunately 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#649306 Comment by harriyott on Why does Publish fail in VS2008 without an error message? harriyott 2009-11-04T10:53:57Z 2009-11-04T10:53:57Z Wow, who'd have thought it? It fixed it for me too. http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application/71276#71276 Comment by harriyott on Should you obfuscate a commercial .Net application? harriyott 2009-10-21T14:26:46Z 2009-10-21T14:26:46Z There'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-sitemap Comment by harriyott on Generate A-Z from ASP.NET SiteMap harriyott 2009-09-24T10:39:49Z 2009-09-24T10:39:49Z It's nice to know that you're using my code http://stackoverflow.com/questions/1244712/calling-across-two-visual-studio-localhosts-with-webclient Comment by harriyott on Calling across two Visual Studio localhosts with WebClient harriyott 2009-09-23T22:19:34Z 2009-09-23T22:19:34Z Thanks 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#1244122 Comment by harriyott on Sharing an HttpRuntime.Cache across two IIS applications harriyott 2009-08-07T11:11:28Z 2009-08-07T11:11:28Z Thanks 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-loops Comment by harriyott on Threading nested foreach-loops? harriyott 2009-08-07T09:33:00Z 2009-08-07T09:33:00Z Nice question. Looking forward to seeing the responses. http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application/71276#71276 Comment by harriyott on Should you obfuscate a commercial .Net application? harriyott 2009-08-05T09:08:13Z 2009-08-05T09:08:13Z No 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#1165346 Comment by harriyott on Why can't I keep 2 languages in my head at the same time? harriyott 2009-07-23T08:37:27Z 2009-07-23T08:37:27Z Probably 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#1165346 Comment by harriyott on Why can't I keep 2 languages in my head at the same time? harriyott 2009-07-22T17:08:16Z 2009-07-22T17:08:16Z OK, so comments can't be formatted :-|