User John Downey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:01:57Z http://stackoverflow.com/feeds/user/200 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19818#19818 3 Answer by John Downey for What interview question weeds out 'bad' applicants? John Downey 2008-08-21T13:08:40Z 2009-11-10T23:56:56Z <p>I think asking someone what they do in their free time to better their understanding of technology is a good one. It is definitely a positive sign if they read blogs, contribute to open source, or tinker with projects. Beware those who can come up with nothing they do in their free time related to technology.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1719#1719 161 Answer by John Downey for What is the single most influential book every programmer should read? John Downey 2008-08-04T23:53:17Z 2009-10-01T18:18:51Z <p>In <a href="http://blog.stackoverflow.com/2008/07/podcast-12/" rel="nofollow">podcast 12</a>, Jeff and Joel list a myriad of recommended books. Personally though I highly recommend <a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">The Mythical Man-Month</a>. </p> <p><img src="http://upload.wikimedia.org/wikipedia/en/f/fd/Mythical%5Fman-month%5F%28book%5Fcover%29.jpg" alt="image" /></p> http://stackoverflow.com/questions/687/keyboard-for-programmers/689#689 4 Answer by John Downey for Keyboard for programmers John Downey 2008-08-03T13:34:21Z 2009-08-15T11:23:03Z <p>I recently acquired a <a href="http://www.daskeyboard.com/" rel="nofollow">Das Keyboard</a> Professional (not the one with blank keys) and I love the way the keys throw as I type. It is hard to explain but it just feels better when you type. I definitely think it has made me more productive.</p> <p><img src="http://www.daskeyboard.com/images/front-view-pro-794x395.png" alt="alt text" /></p> http://stackoverflow.com/questions/1110762/check-if-iscallback-on-applicationbeginrequest/1110927#1110927 0 Answer by John Downey for Check if IsCallback on Application_BeginRequest John Downey 2009-07-10T17:35:04Z 2009-07-10T17:35:04Z <p>From my understanding all IsCallback does is check if the form has a post variable named __CALLBACKARGUMENT. You could check the form yourself in Context.Request.Form and that should tell you the same thing as IsCallback.</p> http://stackoverflow.com/questions/1049867/linq-repository-pattern-and-database-abstraction-problem/1049982#1049982 2 Answer by John Downey for Linq, repository pattern and database abstraction problem John Downey 2009-06-26T16:13:25Z 2009-06-26T16:13:25Z <p>In my repositories I have a separate build method that takes in a LINQ to SQL entity and returns a business object.</p> <p>The build method looks something like (this.Container is a Unity IoC container and not important for the example):</p> <pre><code>private IGroup BuildGroup(Entities.Group group) { IGroup result = this.Container.Resolve&lt;IGroup&gt;(); result.ID = group.GroupID; result.Name = group.Name; return result; } </code></pre> <p>Then each method uses the build method to return a business object:</p> <pre><code>public override IGroup GetByID(int id) { try { return (from g in this.Context.Groups where g.GroupID == id &amp;&amp; g.ActiveFlag select this.BuildGroup(g)).Single(); } catch (InvalidOperationException) { return null; } } </code></pre> <p>This works by getting back each LINQ to SQL entity from the database and running it through the build method so your result in this case would be an enumerable of your business objects instead of LINQ to SQL entities.</p> http://stackoverflow.com/questions/5794/other-browsers/5818#5818 3 Answer by John Downey for Other browsers John Downey 2008-08-08T11:33:36Z 2009-06-16T21:44:10Z <p>I would pay more attention to Layout Engines then actual browsers. It is the layout engine that ultimately renders the page how you'd like it or not. For example Safari and Konqueror use pretty much the same layout engine. Same for Flock and Firefox.</p> http://stackoverflow.com/questions/727181/asp-net-mvc-system-web-compilation-compilationlock/987801#987801 0 Answer by John Downey for ASP.NET Mvc - System.Web.Compilation.CompilationLock John Downey 2009-06-12T16:59:16Z 2009-06-12T16:59:16Z <p>I ran into this same issue when attempting to unit test a controller factory I wrote.</p> <p>The issue appears to come from the ControllerTypeCache attempting to iterate through all associated assemblies on first invocation and uses BuildManager in doing this. The DefaultControllerFactory looks to be pretty extensible in this by using a BuildManager property to interact with an instance instead of directly being coupled but unfortunantely the property is marked internal. The MVC framework unit tests are able to access the internals of the MVC assembly unlike the rest of us.</p> <p>After looking at how MVCContrib unit tests their controller factories I found they are using an extension method helper that overrides the controller cache using reflection to access a private property.</p> <pre><code>using System; using System.Linq; using System.Reflection; using System.Web.Mvc; public static class ControllerFactoryTestExtension { private static readonly PropertyInfo _typeCacheProperty; private static readonly FieldInfo _cacheField; static ControllerFactoryTestExtension() { _typeCacheProperty = typeof(DefaultControllerFactory).GetProperty("ControllerTypeCache", BindingFlags.Instance | BindingFlags.NonPublic); _cacheField = _typeCacheProperty.PropertyType.GetField("_cache", BindingFlags.NonPublic | BindingFlags.Instance); } /// &lt;summary&gt; /// Replaces the cache field of a the DefaultControllerFactory's ControllerTypeCache. /// This ensures that only the specified controller types will be searched when instantiating a controller. /// As the ControllerTypeCache is internal, this uses some reflection hackery. /// &lt;/summary&gt; public static void InitializeWithControllerTypes(this IControllerFactory factory, params Type[] controllerTypes) { var cache = controllerTypes .GroupBy(t =&gt; t.Name.Substring(0, t.Name.Length - "Controller".Length), StringComparer.OrdinalIgnoreCase) .ToDictionary(g =&gt; g.Key, g =&gt; g.ToLookup(t =&gt; t.Namespace ?? string.Empty, StringComparer.OrdinalIgnoreCase), StringComparer.OrdinalIgnoreCase); var buildManager = _typeCacheProperty.GetValue(factory, null); _cacheField.SetValue(buildManager, cache); } } </code></pre> <p>After adding that to my unit test project I was able to add my own MockController type to the controller type cache using <code>controllerFactory.InitializeWithControllerTypes(new[] {typeof(MockController)});</code></p> http://stackoverflow.com/questions/927703/mysql-adjusting-for-timezones-and-dst/927744#927744 0 Answer by John Downey for [MySQL] Adjusting for timezones and DST John Downey 2009-05-29T19:34:24Z 2009-05-29T19:34:24Z <p>MySQL stores its native date/time types as UTC on the server and converts them to other timezones on a per-connection basis. If a connection does not specify a timezone it tries to use the servers time. You can read more about this <a href="http://dev.mysql.com/doc/refman/5.0/en/time-zone-support.html" rel="nofollow">in the documentation</a>. But you should be able to do:</p> <p><code>SET time_zone = timezone;</code></p> <p>to the client timezone at the start of the query or if you do per request connections.</p> http://stackoverflow.com/questions/878695/how-to-return-an-xml-string-as-an-action-result-in-mvc/878727#878727 5 Answer by John Downey for How to return an XML string as an action result in MVC John Downey 2009-05-18T17:01:56Z 2009-05-18T17:01:56Z <p>You could use <code>return this.Content(xmlString, "text/xml");</code> to return a built XML string from an action.</p> http://stackoverflow.com/questions/877431/postgresql-best-way-to-create-new-duplicate-existing-tables-every-year/877454#877454 3 Answer by John Downey for PostgreSQL: best way to create new/duplicate existing tables every year John Downey 2009-05-18T12:18:02Z 2009-05-18T12:18:02Z <p>PostgreSQL has a feature that lets you create a table that inherits fields from another table. The documentation can be found in <a href="http://www.postgresql.org/docs/8.3/static/ddl-inherit.html" rel="nofollow">their manual</a>. That might simplify your process a bit.</p> http://stackoverflow.com/questions/844979/how-to-do-long-time-batch-processes-in-php/844987#844987 1 Answer by John Downey for How to do long time batch processes in PHP ? John Downey 2009-05-10T09:13:16Z 2009-05-10T09:13:16Z <p>The <a href="http://pear.php.net" rel="nofollow">PEAR</a> has a package called <a href="http://pear.php.net/package/Benchmark" rel="nofollow">Benchmark</a> has a Benchmark_Profiler class that can help you find the slowest section of your code so you can optimize.</p> http://stackoverflow.com/questions/833837/design-patterns-for-event-driven-logic/833852#833852 0 Answer by John Downey for Design patterns for event-driven logic John Downey 2009-05-07T10:18:26Z 2009-05-07T10:18:26Z <p>Probably one of the best known design patterns for event driven systems is the <a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">observer pattern</a>.</p> http://stackoverflow.com/questions/828797/handling-complex-urls-in-asp-mvc/829050#829050 1 Answer by John Downey for Handling complex URLs in ASP MVC John Downey 2009-05-06T10:48:38Z 2009-05-06T10:48:38Z <p>You first need to add the tokens to your routes like <code>{company}/projects/{project}{controller}/{action}/{id}</code>. Then if you wrote your own IControllerFactory then it would be very easy to push the values from the RouteData into the controller via the constructor or however you wanted to do it. Probably the easiest way to get started would be to subclass DefaultControllerFactory and override the CreateController method.</p> http://stackoverflow.com/questions/826598/infinite-ienumerable-in-a-foreach-loop/826618#826618 -1 Answer by John Downey for Infinite IEnumerable in a foreach loop John Downey 2009-05-05T19:48:03Z 2009-05-05T19:48:03Z <p>I don't think this is possible unless you write your own LINQ provider. In the example you gave you are using LINQ to Objects which will need to completely evaluate the IEnumerable before it can apply a filter to it.</p> http://stackoverflow.com/questions/826479/what-is-the-current-version-of-safari-for-iphone/826519#826519 1 Answer by John Downey for What is the current version of Safari for iPhone? John Downey 2009-05-05T19:24:09Z 2009-05-05T19:24:09Z <p>The iPhone does not currently support Java in either the browser or as a programming language for applications.</p> http://stackoverflow.com/questions/826465/adding-a-parameter-to-the-url-in-asp-mvc/826505#826505 1 Answer by John Downey for Adding a parameter to the URL in ASP MVC John Downey 2009-05-05T19:22:11Z 2009-05-05T19:22:11Z <p>Your error sounds like you are not giving a default for action in your route defaults.</p> http://stackoverflow.com/questions/826038/system-badimageformatexception-how-to-fix-net-version-mismatch/826050#826050 1 Answer by John Downey for System.BadImageFormatException: How to fix .NET version mismatch? John Downey 2009-05-05T17:31:47Z 2009-05-05T17:31:47Z <p>I got this error when I was running the 64bit version of the CLR and trying to load an assembly that was marked 32bit only. The specific assembly in my case was the Oracle.DataAccess.dll that comes as part of ODP.NET.</p> http://stackoverflow.com/questions/825052/php-class-name-conflict/825074#825074 1 Answer by John Downey for PHP Class Name Conflict John Downey 2009-05-05T14:17:06Z 2009-05-05T14:17:06Z <p>Namespaces for PHP will be introduced in PHP 5.3. Currently your best bet is to manually prefix the class names for each framework.</p> http://stackoverflow.com/questions/822494/how-will-this-work-interfaces-and-non-virtual-functions/822511#822511 1 Answer by John Downey for How will this work? (interfaces and non virtual functions) John Downey 2009-05-04T22:53:27Z 2009-05-04T22:53:27Z <p>It does not matter that you are talking to the contract provided by a base class or interface they will all return 1 because you are talking to an instance of class B.</p> http://stackoverflow.com/questions/821873/how-to-open-an-stdfstream-ofstream-or-ifstream-with-a-unicode-filename/821979#821979 1 Answer by John Downey for How to open an std::fstream (ofstream or ifstream) with a unicode filename ? John Downey 2009-05-04T20:45:35Z 2009-05-04T20:45:35Z <p>The current versions of Visual C++ the std::basic_fstream have an <code>open()</code> method that take a wchar_t* according to <a href="http://msdn.microsoft.com/en-us/library/4dx08bh4.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/4dx08bh4.aspx</a>. </p> http://stackoverflow.com/questions/821817/php-md5-algorithm-that-gives-same-result-as-c/821846#821846 8 Answer by John Downey for php md5 algorithm that gives same result as c# John Downey 2009-05-04T20:19:24Z 2009-05-04T20:24:34Z <p>The issue is PHP's <code>md5()</code> function by default returns the hex variation of the hash where C# is returning the raw byte output that must then be made text safe with base64 encoding. If you are running PHP5 you can use <code>base64_encode(md5('asd', true))</code>. Notice the second parameter to <code>md5()</code> is true which makes <code>md5()</code> return the raw bytes instead of the hex.</p> http://stackoverflow.com/questions/898/internationalization-in-your-projects 20 Internationalization in your projects John Downey 2008-08-04T00:08:51Z 2008-12-27T06:48:52Z <p>How have you implement Internationalization (18n) in actual projects you've worked on? I took an interest in making software cross-cultural after I read the famous post by Joel, <a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)</a>. However I have yet to able to take advantage of this in a real project besides making sure I used Unicode strings where possible. But making all your strings Unicode and ensuring you understand what encoding everything you work with is in is just the tip of the i18n iceberg.</p> <p>Everything I have worked on to date has been for use by a controlled set of US English speaking people or i18n just wasn't someone we had time to work on before pushing the project live. So I am looking for any tips or war stories people have about making software more localized in real world projects.</p> http://stackoverflow.com/questions/842/best-way-to-implement-unit-testing-in-php/846#846 15 Answer by John Downey for Best way to implement unit testing in PHP John Downey 2008-08-03T21:46:27Z 2008-11-03T18:10:11Z <p>There is a <a href="http://www.phpunit.de/" rel="nofollow">PHPUnit</a> testing framework that is developed in native PHP and used by projects such as the <a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a>. I haven't used it since it split from the PEAR project but it was pretty good back then so I imagine it has only gotten better. As for productivity increase, that is all in how you or your team cope with unit testing and your millage may vary.</p> http://stackoverflow.com/questions/20627/why-are-downloads-sometimes-tagged-md5-sha1-and-other-hash-indicators/20666#20666 1 Answer by John Downey for why are downloads sometimes tagged md5, sha1 and other hash indicators? John Downey 2008-08-21T17:57:19Z 2008-08-21T17:57:19Z <p>To go along with what everyone here is saying I use <a href="http://beeblebrox.org/hashtab/" rel="nofollow">HashTab</a> when I need to generate/compare MD5 and SHA1 hashes on Windows. It adds a new tab to the file properties window and will calculate the hashes.</p> http://stackoverflow.com/questions/20463/what-is-the-point-of-interfaces-in-php/20470#20470 2 Answer by John Downey for What is the point of interfaces in PHP? John Downey 2008-08-21T16:39:23Z 2008-08-21T16:39:23Z <p>The concept is useful all around in object oriented programming. To me I think of an interface as a contract. So long my class and your class agree on this method signature contract we can "interface". As for abstract classes those I see as more of base classes that stub out some methods and I need to fill in the details.</p> http://stackoverflow.com/questions/18097/in-c-do-you-need-to-call-the-base-constructor/18102#18102 3 Answer by John Downey for In C#, do you need to call the base constructor? John Downey 2008-08-20T14:28:50Z 2008-08-20T14:28:50Z <p>It is implied.</p> http://stackoverflow.com/questions/16689/java-and-c-interoperability/16697#16697 0 Answer by John Downey for Java and c# interoperability John Downey 2008-08-19T18:34:19Z 2008-08-19T18:34:19Z <p>I am a big fan of <a href="http://developers.facebook.com/thrift/" rel="nofollow">Thrift</a> an interoperability stack from Facebook. You said they code will probably run on the same machine so it could be overkill but you can still use it.</p> http://stackoverflow.com/questions/15674/subversion-revision-number-across-multiple-projects/15676#15676 4 Answer by John Downey for Subversion revision number across multiple projects John Downey 2008-08-19T04:12:56Z 2008-08-19T04:12:56Z <p>This is due to how subversion works. Each revision is really a snapshot of the repository identified by that revision number. If all your projects share a repository then it is unavoidable. Typically, in my experience, however you would setup separate repositories for completely unrelated projects. So short answer is no you are doing nothing wrong it is a common question surrounding subversion but it makes sense when you think about how it stores repository information.</p> http://stackoverflow.com/questions/14443/bug-repository/14455#14455 0 Answer by John Downey for Bug Repository John Downey 2008-08-18T11:00:16Z 2008-08-18T11:00:16Z <p>There is <a href="http://www.securityfocus.com/archive/1" rel="nofollow">BugTraq</a>, however it focuses more on the security implications of the bugs founds.</p> http://stackoverflow.com/questions/13647/is-there-and-easy-way-to-convert-c-classes-to-php/13663#13663 1 Answer by John Downey for Is there and Easy way to convert C# classes to PHP John Downey 2008-08-17T15:05:51Z 2008-08-17T15:05:51Z <p>It is entirely possible to write a PHP application almost entirely in an object-oriented methodology. You will have to write some procedural code to create and launch your first object but beyond that there are plenty of MVC frameworks for PHP that are all object-oriented. One that I would look at as an example is <a href="http://codeigniter.com" rel="nofollow">Code Igniter</a> because it is a little lighter weight in my opinion.</p> http://stackoverflow.com/questions/826038/system-badimageformatexception-how-to-fix-net-version-mismatch/826050#826050 Comment by John Downey on System.BadImageFormatException: How to fix .NET version mismatch? John Downey 2009-10-28T09:06:48Z 2009-10-28T09:06:48Z You need to just make sure you run the 32bit CLR when loading 32bit only assemblies http://stackoverflow.com/questions/1479268/yield-return-versus-return-select/1479328#1479328 Comment by John Downey on yield return versus return select John Downey 2009-09-25T20:14:46Z 2009-09-25T20:14:46Z I am pretty sure Silverlight (CoreCLR) ships with support for LINQ to Objects http://stackoverflow.com/questions/1117192/asp-net-web-service-inside-forms-authentication-application Comment by John Downey on ASP.NET Web Service inside Forms Authentication Application John Downey 2009-07-12T23:37:51Z 2009-07-12T23:37:51Z Every time I've every used the location tag in a web.config the path has been in the form of &quot;Services/MyService.asmx&quot; not &quot;~/Services/MyService.asmx&quot; have you tried specifying it without the tilde-slash? http://stackoverflow.com/questions/849501/how-do-i-get-vs2008s-intellisense-member-list-to-show-full-signatures/849515#849515 Comment by John Downey on How do I get vs2008's intellisense member list to show full signatures? John Downey 2009-05-11T18:56:08Z 2009-05-11T18:56:08Z You beat me to it. This is an option in ReSharper. http://stackoverflow.com/questions/822494/how-will-this-work-interfaces-and-non-virtual-functions/822511#822511 Comment by John Downey on How will this work? (interfaces and non virtual functions) John Downey 2009-05-08T11:13:45Z 2009-05-08T11:13:45Z C# is a single dispatch language meaning the method to be invoked is determined by the type of the object in all your cases the type is B. http://stackoverflow.com/questions/826465/adding-a-parameter-to-the-url-in-asp-mvc/826505#826505 Comment by John Downey on Adding a parameter to the URL in ASP MVC John Downey 2009-05-05T20:13:06Z 2009-05-05T20:13:06Z Add a string parameter to your action method with the same name and it should get filled in by MVC. http://stackoverflow.com/questions/826598/infinite-ienumerable-in-a-foreach-loop/826618#826618 Comment by John Downey on Infinite IEnumerable in a foreach loop John Downey 2009-05-05T19:59:49Z 2009-05-05T19:59:49Z Joel you are correct, I forgot my basic principals of functional programing where an operation cannot have a side effect. http://stackoverflow.com/questions/821873/how-to-open-an-stdfstream-ofstream-or-ifstream-with-a-unicode-filename/821979#821979 Comment by John Downey on How to open an std::fstream (ofstream or ifstream) with a unicode filename ? John Downey 2009-05-04T22:50:48Z 2009-05-04T22:50:48Z Not all OSs and file systems support Unicode file names so it would not be portable. From what I can gather the wchar_t* open() and constructor on fstream are Microsoft extensions because NTFS does support Unicode file names.