User Gareth Jenkins - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T20:24:23Zhttp://stackoverflow.com/feeds/user/1521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13129/whats-a-good-starting-development-environment-for-teaching-learning-python8What's a good starting development environment for teaching/learning Python?Gareth Jenkins2008-08-16T13:50:11Z2009-05-06T10:01:42Z
<p>I'm a seasoned .Net developer with a good chunk of experience on the MS stack and in related areas. I'm about to learn Python and was curious about the ideal development environment on Windows - IDE, tools etc.</p>
<p>I'd normally be happy to go out there and have a play with what's available, adapting as I go along. I'd also likely switch between OSX, Linux and Windows to get a good feel for everything that's available. However... I'm also going to be teaching two novice programmers how to program, using Python (thanks to the great information in <a href="http://beta.stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program" rel="nofollow" title="dp">this SO question</a>.)</p>
<p>So, I guess the real question is what's a good starting point, tools-wise for Python, for a couple of smart, tecnhnically-comfortable windows users who don't yet know how to program but will have the help of someone who does?</p>
http://stackoverflow.com/questions/36715/how-can-i-access-a-website-configured-with-host-headers-in-iis-on-the-local-machi0How can I access a website configured with host headers in IIS on the local machine?Gareth Jenkins2008-08-31T09:31:50Z2008-12-11T17:13:16Z
<p>When using host headers to host multiple websites on the same IP address in IIS, is there any way of accessing that website from a browser running on the local machine?</p>
<p>This is normally required when a given web component only allows configuration from the local machine. It's also useful when things like ASP.Net's built in error handling isn't working and you can only view the error in the browser but don't want to allow remote users to see it. </p>
<p>This has baffled me for a while and everytime I come across it I end up giving up in frustration and reconfigure stuff so I can accomplish such tasks remotely.</p>
<p><strong>Added:</strong> @Ishmaeel - modifying hosts doesn't seem to help - you either get a 400 error (if all websites have host headers) or whichever site is configured without a host header.</p>
http://stackoverflow.com/questions/13087/how-do-i-convert-a-date-to-a-http-formatted-date-in-net-c8How do I convert a date to a HTTP-formatted date in .Net / C#Gareth Jenkins2008-08-16T10:33:42Z2008-09-17T07:59:10Z
<p>How does one convert a .Net DateTime into a valid HTTP-formatted date string?</p>
http://stackoverflow.com/questions/72168/does-linq-to-sql-provide-faster-response-times-than-using-ado-net-and-oledb/72308#723082Answer by Gareth Jenkins for Does LINQ To SQL provide faster response times than using ado.net and oledb?Gareth Jenkins2008-09-16T13:41:20Z2008-09-16T14:24:31Z<p>If you're interested in benchmarking, Rico Mariani has an <a href="http://blogs.msdn.com/ricom/archive/2007/06/22/dlinq-linq-to-sql-performance-part-1.aspx" rel="nofollow">excellent 5-part study</a> that covers the qualitative and quantitative differences.</p>
<p>He may be an MS guy, but he's known as a performance nut - his benchmarks are thorough and well thought out.</p>
http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72523#725237Answer by Gareth Jenkins for What should a developer know before building a public web site?Gareth Jenkins2008-09-16T13:56:20Z2008-09-16T13:56:20Z<p>Ensure that whatever framework/server-side scripting/web server/other you're using doesn't expose error messages directly to the user.</p>
<p>Checking that whatever has been put in place to facilitate the above during development is switched off or reversed. Obviously the preference is to have this stuff properly configured in first place - but it will still occur time and time again.</p>
<p>That's mainly written from a security standpoint, but very much related is the usability issue of ensuring that should errors occur, the user get something that makes sense to them and tries as best possible to get them back to what they were doing.</p>
http://stackoverflow.com/questions/59628/ajax-partial-page-load/59652#596520Answer by Gareth Jenkins for AJAX Partial Page Load?Gareth Jenkins2008-09-12T18:10:44Z2008-09-12T18:10:44Z<p>Could you put the DataGrids inside panels that have their visibility set to false, then call a client-side javascript function from the body's onload event that calls a server side function that sets the visibility of the panels to true?</p>
<p>If you combined this with an asp:updateProgress control and wrapped the whole thing in an UpdatePanel, you should get something close to what you're looking for - especially if you rigged the js function called in onload to only show one panel and call a return function that showed the next etc.</p>
http://stackoverflow.com/questions/53435/getting-iis-worker-process-crash-dumps/53457#534571Answer by Gareth Jenkins for Getting IIS Worker Process Crash dumpsGareth Jenkins2008-09-10T05:14:30Z2008-09-10T05:14:30Z<p>A quick search found <a href="http://www.iisfaq.com/default.aspx?view=P197" rel="nofollow">IISState</a> - it relies on the <a href="http://www.microsoft.com/whdc/devtools/debugging/default.mspx" rel="nofollow">Windows debugging tools</a> and needs to be running when a crash occurs, but given the circumstances you've described, this shouldn't be a problem,</p>
http://stackoverflow.com/questions/45293/asp-net-and-sending-sms-making-phone-calls/45312#453121Answer by Gareth Jenkins for ASP.NET and sending SMS/making phone callsGareth Jenkins2008-09-05T06:09:27Z2008-09-05T06:09:27Z<p>Not sure if you're looking for hardware solutions to automate yourself, or external services. However, I've used BT's <a href="http://web21c.bt.com/" rel="nofollow">Web21C</a> pretty extensively.</p>
<p>They have an excellent .Net API and a host of functionality. Their pricing is the best in the UK, but might fall down with US SMS, which is obviously cheaper - there are plenty of other SMS API providers though.</p>
<p>What BT do offer, which is rare, is an API interface for automating call dialling, conferencing and managing call flow.</p>
http://stackoverflow.com/questions/39632/best-practices-xsd-nested-types-vs-global-types/39748#397482Answer by Gareth Jenkins for [Best Practices] XSD: Nested Types vs Global TypesGareth Jenkins2008-09-02T15:07:49Z2008-09-02T15:07:49Z<p>In the example given, there's no real difference between the two - and no significant advantages or disadvantages to either.</p>
<p>However, in larger schemas things can get very untidy and difficult to manage when the practice for choosing nested over global isn't clearly defined.</p>
<p>The obvious reasons for using global types (primarily reuse, also nesting) tend to dictate - in general I prefer one mode or the other. I.e. if you're reusing some complexTypes but not others, make them all global. If you're not reusing anything, make them all nested.</p>
<p>The exception to this (and this is something I've come across frequently) is if the definition of the types make up the bulk of the complexity (!) of your schema, and the their containment is relatively simple. In this case, regardless of whether they're reused, I'd recommend making them global as it's far easier to restructure/reorder your document when you don't have to wade through massive complexType definitions. They're also theoretically more portable.</p>
<p>There are also cases where you can't acheive certain document structures with nested types - an example of this is using two complexTypes in a sequence that can contain 0 to unbounded instances of each type, in any mixed order. This isn't possible with nested types, but it is with referenced global types.</p>
http://stackoverflow.com/questions/36772/dual-screen-visual-studio-enviornments/36785#367850Answer by Gareth Jenkins for Dual-Screen Visual studio enviornmentsGareth Jenkins2008-08-31T11:34:45Z2008-08-31T11:34:45Z<p>Hi Zaki - this doesn't appear to be a question, can you clarify?</p>
<p>Out of interest, I've used dual monitors with Visual Studio since it was called Visual Studio and whilst there's a lot that can help - debug windows, find in files, source control plugins etc - on the second monitor, the lack of actual support really doesn't help.</p>
<p>I've spotted in various places mentions of better dual monitor support in VS10/Hawaii. This would be much appreciated by many, I'm sure. Having said that, it would mean a third monitor for all the stuff I currently stick on the second (non-VS tool window) half of my second monitor - browsers, VPCs, firebug etc.</p>
http://stackoverflow.com/questions/33664/best-practices-for-managing-linq-to-sql-dbml-files/36749#367495Answer by Gareth Jenkins for Best Practices for Managing Linq to SQL Dbml Files?Gareth Jenkins2008-08-31T10:21:21Z2008-08-31T10:21:21Z<p>Have you looked at <a href="http://msdn.microsoft.com/en-us/library/bb386987.aspx" rel="nofollow">SqlMetal</a>? It's officially supported, although not promoted too much. You can use it to build dbmls from the commandline - we've used it as part of a db's continous integration updates (make sure you have really good code separation if you do this though - partial classes are a saviour - as the dbml will get overwritten).</p>
<p>If I recall correctly it doesn't have quite the same features as the model designer in Visual Studio (I think it handles pluralisation differently). There a <a href="http://blog.benhall.me.uk/2007/08/power-of-sqlmetal.html" rel="nofollow">good post about it on Ben Hall's blog</a>.</p>
http://stackoverflow.com/questions/32943/what-is-the-best-way-to-get-yourself-motivated/32956#329562Answer by Gareth Jenkins for What is the "best" way to get yourself motivated?Gareth Jenkins2008-08-28T18:09:24Z2008-08-28T18:09:24Z<p>I agree with Thomas, getting far away generally does work. Sometimes, though I find working on an unrelated bit of code or a different problem (math puzzles, IQ tests etc) gets me fired up.</p>
<p>..I also like eating and thinking about food, but that could just be me...</p>
<p>If embedded in a large project, I also find that looking at other people's work or helping other people with problem (such as those here on SO) can really help too.</p>
http://stackoverflow.com/questions/32144/why-cant-sql-server-run-on-a-novell-server/32165#321650Answer by Gareth Jenkins for Why can't SQL Server run on a Novell server?Gareth Jenkins2008-08-28T13:00:01Z2008-08-28T13:00:01Z<p>SQL Server, although rooted in a Sybase/Unix/VMS background, is a native windows application. Apart from the compact edition (which runs on some Windows mobile platforms), SQL Server runs on Windows desktop and server operating systems.</p>
<p>More informaiton can be found at <a href="http://en.wikipedia.org/wiki/Microsoft_SQL_Server" rel="nofollow">wikipedia</a>.</p>
http://stackoverflow.com/questions/31297/cannot-access-a-webservice-from-mobile-device/31730#317300Answer by Gareth Jenkins for Cannot access a webservice from mobile deviceGareth Jenkins2008-08-28T06:43:41Z2008-08-28T06:43:41Z<p>This looks like a network issue, unless there's an odd bug in .Net CF that doesn't allow you to traverse subnets in certain situations (I can find no evidence of such a thing from googling).</p>
<p>Can you get any support from the network/IT team? Also, have you tried it from a different subnet? I.e. not the same as the XP machine (192.168.5.x) and not the same as the one that's not worked so far (192.168.10.).</p>
<p>@Shaun Austin - that wouldn't explain why they can get at a regular web page on the XP machine from the different subnet.</p>
http://stackoverflow.com/questions/31242/net-compact-framework-scrollbars-horizontal-always-show-when-vertical-shows/31717#317170Answer by Gareth Jenkins for .Net Compact Framework scrollbars - horizontal always show when vertical showsGareth Jenkins2008-08-28T06:27:24Z2008-08-28T06:27:24Z<p>Yes - I've got experience with that - unfortunately it was no different from your own. I've generally avoided scrolling forms and used paging wherever possible on .Net CF. If this is an option for you, I'd recommend it.</p>
<p>I'd assume the scroll bar issue is to do with the form size being fixed to the width of the available screen (regardless of design-time settings) so the introduction of a vertical scroll bar obscures part of the (not needed) full-width form.</p>
http://stackoverflow.com/questions/25878/what-is-a-data-binding2What is a data binding?Gareth Jenkins2008-08-25T11:29:02Z2008-08-25T15:25:39Z
<p>What is a data binding?</p>
http://stackoverflow.com/questions/13786/should-we-support-ie6-anymore/13930#1393010Answer by Gareth Jenkins for Should we support IE6 anymore?Gareth Jenkins2008-08-17T21:08:32Z2008-08-25T11:31:58Z<p>This depends so much on the context of the application, and of its users. There are two key aspects: what browsers are your users using; and how important is it that they can access/interact with your site.</p>
<p>The first part is generally easily establish, <strong>if</strong> you have an existing version with stats (Google Analytics or similar is simple and great) or you have access to such data from a similar app / product.</p>
<p>The later is a little harder to decide. If you're developing a publically availalbe, ad-sponsored site for exmple, it's just a numbers game - work out how much of your audience you loose and factor what that's worth against the additional development time. If, however you're doing something specifically at the request of a group of users - like an enterprise web app for example - you may be stuck with what those users are browsing with.</p>
<p>In my experience those two things can change significantly for different apps. We've got web apps still (stats from last week) with close to 70% IE6 usage (20% IE7, the rest split between IE5.5 and FF2) and others with close to 0% IE6. For relatively ovbivous reasons, the latter are the kind of apps where loosing a few users isn't so important.</p>
<p>Having said all that, we generally find it easy to support IE6 (and IE5.5 as others point out) simply because we've been doing so for a while. Yes, it's a pain and yes, it takes more time, but often not too much. There are very few situations where having to support IE6 drastically changes what kind development you do - it just means a little more work. The other nice benefit of supporting it (and testing for it) is that you generally end up doing better all-round browser and quirks testing as a result of the polarity of IE6's behaviours.</p>
<p>You need to decide whether or not you're supposed to find workarounds, based on the requirements of your app/product. That's it's IE6 isn't really that relevant - this kind of problem happens all the time in other situations, it just so happens that IE6 is a great example of the costs and implications of mixed standards, versioning and legacy support.</p>
http://stackoverflow.com/questions/25865/what-is-a-language-binding/25874#258741Answer by Gareth Jenkins for What is a language binding?Gareth Jenkins2008-08-25T11:24:41Z2008-08-25T11:30:20Z<p><strong>Okay, now the question has been clarified, this isn't really relevant so I'm moving it to <a href="http://beta.stackoverflow.com/questions/25878/what-is-a-data-binding" rel="nofollow">a new question</a></strong></p>
<p>Binding generally refers to a mapping of one thing to another - i.e. a datasource to a presentation object. It can typically refer to binding data from a database, or similar source (XML file, web service etc) to a presentation control or element - think list or table in HTML, combo box or data grid in desktop software.</p>
<p><em>...If that's the kind of binding you're interested in, read on...</em></p>
<p>You generally have to bind the presentation element to the datasource, not the other way around. This would involve some kind of mapping - i.e. which fields from the datasource do you want to appear in the output.</p>
<p>For more information in a couple of environments see:</p>
<ul>
<li>Data binding in .Net using Windows Forms
<ul>
<li><a href="http://www.codeproject.com/KB/database/databindingconcepts.aspx" rel="nofollow">http://www.codeproject.com/KB/database/databindingconcepts.aspx</a></li>
<li><a href="http://www.akadia.com/services/dotnet_databinding.html" rel="nofollow">http://www.akadia.com/services/dotnet_databinding.html</a></li>
</ul></li>
<li>ASP.NET data binding
<ul>
<li><a href="http://support.microsoft.com/kb/307860" rel="nofollow">http://support.microsoft.com/kb/307860</a></li>
<li><a href="http://www.15seconds.com/issue/040630.htm" rel="nofollow">http://www.15seconds.com/issue/040630.htm</a></li>
<li><a href="http://www.akadia.com/services/dotnet_databinding.html" rel="nofollow">http://www.w3schools.com/ASPNET/aspnet_databinding.asp</a></li>
</ul></li>
<li>Java data binding
<ul>
<li><a href="http://www.xml.com/pub/a/2003/09/03/binding.html" rel="nofollow">http://www.xml.com/pub/a/2003/09/03/binding.html</a></li>
</ul></li>
<li>Python data binding
<ul>
<li><a href="http://www.xml.com/pub/a/2005/07/27/py-xml.html" rel="nofollow">http://www.xml.com/pub/a/2005/07/27/py-xml.html</a></li>
</ul></li>
<li>General XML data binding
<ul>
<li><a href="http://www.rpbourret.com/xml/XMLDataBinding.htm" rel="nofollow">http://www.rpbourret.com/xml/XMLDataBinding.htm</a></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/25878/what-is-a-data-binding/25879#258794Answer by Gareth Jenkins for What is a data binding?Gareth Jenkins2008-08-25T11:29:21Z2008-08-25T11:29:21Z<p>Binding generally refers to a mapping of one thing to another - i.e. a datasource to a presentation object. It can typically refer to binding data from a database, or similar source (XML file, web service etc) to a presentation control or element - think list or table in HTML, combo box or data grid in desktop software.</p>
<p>You generally have to bind the presentation element to the datasource, not the other way around. This would involve some kind of mapping - i.e. which fields from the datasource do you want to appear in the output.</p>
<p>For more information in a couple of environments see:</p>
<ul>
<li>Data binding in .Net using Windows Forms
<ul>
<li><a href="http://www.codeproject.com/KB/database/databindingconcepts.aspx" rel="nofollow">http://www.codeproject.com/KB/database/databindingconcepts.aspx</a></li>
<li><a href="http://www.akadia.com/services/dotnet_databinding.html" rel="nofollow">http://www.akadia.com/services/dotnet_databinding.html</a></li>
</ul></li>
<li>ASP.NET data binding
<ul>
<li><a href="http://support.microsoft.com/kb/307860" rel="nofollow">http://support.microsoft.com/kb/307860</a></li>
<li><a href="http://www.15seconds.com/issue/040630.htm" rel="nofollow">http://www.15seconds.com/issue/040630.htm</a></li>
<li><a href="http://www.akadia.com/services/dotnet_databinding.html" rel="nofollow">http://www.w3schools.com/ASPNET/aspnet_databinding.asp</a></li>
</ul></li>
<li>Java data binding
<ul>
<li><a href="http://www.xml.com/pub/a/2003/09/03/binding.html" rel="nofollow">http://www.xml.com/pub/a/2003/09/03/binding.html</a></li>
</ul></li>
<li>Python data binding
<ul>
<li><a href="http://www.xml.com/pub/a/2005/07/27/py-xml.html" rel="nofollow">http://www.xml.com/pub/a/2005/07/27/py-xml.html</a></li>
</ul></li>
<li>General XML data binding
<ul>
<li><a href="http://www.rpbourret.com/xml/XMLDataBinding.htm" rel="nofollow">http://www.rpbourret.com/xml/XMLDataBinding.htm</a></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/25827/what-do-i-look-for-when-hiring-an-operations-director/25862#258622Answer by Gareth Jenkins for What do I look for when hiring an Operations Director?Gareth Jenkins2008-08-25T11:11:51Z2008-08-25T11:11:51Z<p>This is by no means definitive, comprehensive or even accurate - but in my experience, the following apply.</p>
<ul>
<li><p>Personality type is really dependent upon the rest of the team. With only 20 people you should still just about be able to get some common ground on this. You're looking at a role that other people may not entirely understand the function of - it'd be useful to get a feel for the team's expectations. As you interview/meet people you should then be able to match their personality against expectations (even if those expectations are of skills and responsibilities, not specific personalities). It is very difficult to judge somebody's personality in a short period of time (even if they're ostensibly nice/arrogant/rude or whatever) - accordingly, you should set the role up so that it can wrap around their personality, not the other way around. This is far easier with a new position.</p></li>
<li><p>Technical background is generally helpful. Whilst it's not necessarily (responsibilities-wise) if they don't have one, it can cause clashes if they are managing/working with people who don't feel like they can be understood. However, avoid people who have a very specific technical background or are specialists in only one area (regardless of whether it's relevant to their new role) as they will be fighting a constant battle against their better judgement (and that of others) when it comes to operational issues.</p></li>
<li><p>Age is, again, dependent on the rest of the team - not their ages, but their mindset. You need somebody with good experience, a rounded outlook on things and time spent working with different types of people. This will probably get you somewhere close to 30 already, because it's very difficult to get those things otherwise.</p></li>
<li><p>I've never seen anything specific or consistent in terms of other factors - however - operations gurus seem to fall into one of two categories: those with few hobbies and passions outside of work; and those with many - particularly those into sports and physical activity. This could just be a weird by-product of the decent ops folk I've worked with, but it's certainly noticeable. The typical geeky kind have tended not to be great at operations, in my experience.</p></li>
</ul>
http://stackoverflow.com/questions/17653/which-vista-edition-is-the-best-for-developer-machine/17686#176866Answer by Gareth Jenkins for Which Vista edition is the best for developer machine?Gareth Jenkins2008-08-20T09:51:08Z2008-08-20T09:51:08Z<p>I guess it depends on what kind of development you're doing - and on your tool set.</p>
<p>If you develop primarily on the MS stack and have access to a MSDN or similar subscription, I'd recommend that should you have a decently specified machine, install Ultimate x64 as the primary OS and then use Virtual PC to host other versions of Vista for testing etc.</p>
<p>This, of course, assumes that you're doing development of a kind that requires testing on the desktop. I do primarily web development but still find it useful to have a couple of Vista Business x86 virtual machines for testing different browsers and configurations.</p>
<p>The differences between Ultimate, Enterprise and Business seem negligible in my experience, but from what I've found there's nothing missing from Ultimate. Again, if you're using MSDN or Technet media, you'll find you can install Ultimate from the same ISO as the other 'consumer' editions - business and enterprise generally have different images. As other posters have mentioned, the more basic consumer offerings should be avoided because of the lack of Remote Desktop Support, IIS and a whole bunch of other bits.</p>
<p>I see no reason to stay with XP - I've used Vista in various flavours for development work since it went RTM. I've not had problems with drivers, or anything else for that matter, apart from some stuff very early on with NVidia cards on x64 - those problems were sorted very quickly though. Installing XP on a VPC in Vista is an absolute doddle if you need it.</p>
<p>You'll also find other advantages in Vista over a plain install of XP - the most significant being the behaviour of the Start key to launch applications. As any regular user (particularly one who like keyboard shortcuts) will tell you, it can be <strong>really</strong> difficult starting applications on XP when the need arises.</p>
http://stackoverflow.com/questions/13087/how-do-i-convert-a-date-to-a-http-formatted-date-in-net-c/13089#1308912Answer by Gareth Jenkins for How do I convert a date to a HTTP-formatted date in .Net / C#Gareth Jenkins2008-08-16T10:37:41Z2008-08-16T10:37:41Z<p>Dates can be converted to HTTP valid dates (RFC 1123) by using the "r" format string in .Net. HTTP dates need to be GMT / not offset - this can be done using the ToUniversalTime() method.</p>
<p>So, in C# for example:</p>
<pre><code>string HttpDate = SomeDate.ToUniversalTime().ToString("r");
</code></pre>
<p>Right now, that produces HttpDate = "Sat, 16 Aug 2008 10:38:39 GMT"</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/az4se3k1.aspx" rel="nofollow"><a href="http://msdn.microsoft.com/en-us/library/az4se3k1.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/az4se3k1.aspx</a></a> for a list of .Net standard date & time format strings.</p>
<p>See <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html" rel="nofollow"><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html" rel="nofollow">http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html</a></a> for the HTTP date specification, and background to other valid (but dated) RFC types for HTTP dates.</p>