User jammycakes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T07:55:12Z http://stackoverflow.com/feeds/user/886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging 11 Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-26T15:30:47Z 2009-12-02T15:14:12Z <p>There's a feature that I'd like to see in issue tracking software that just doesn't seem to be all that common, and that is the ability to divide a ticket (bug, feature request, etc) into sub-tasks and view them in a hierarchical fashion, perhaps with some kind of progress bar style report of progress on a particular ticket and its child tickets.</p> <p>My thinking is that this would be useful for both developers and project managers: project managers like to have a fairly broad overview of what is going on, whereas developers need to drill down to the details, and very often need to divide a task into sub-tasks. This would also come in handy if someone put two issues into one ticket.</p> <p>Does anyone know of an issue tracker which does this? So far the ones I've looked at (Trac, FogzBugz, and Basecamp) all have a flat organisation of tickets, so they're either useful for the developers or for the project managers but not for both. <a href="http://www.assembla.com/" rel="nofollow">Assembla</a> does allow a ticket to have child tickets (and multiple parent tickets) but it doesn't do a very good job of usability on this specific feature.</p> <p>If there is such an issue tracker, has anyone used it for both developers and project managers, and if so, how much success did you have with it? Alternatively, is there a better approach that can be usable by both categories of users?</p> <p>(<strong>Update:</strong> This is <em>not</em> a subjective "what is your favourite bug tracking software" question. I am asking about bug trackers with a specific feature for a specific purpose, so please don't post your favourite bug tracker if it doesn't do what I've asked for. The only arguably subjective element is how well it works for this particular purpose.)</p> http://stackoverflow.com/questions/371807/traversing-an-arbitrary-c-object-graph-using-xpath-applying-xsl-transforms 3 Traversing an arbitrary C# object graph using XPath/applying XSL transforms jammycakes 2008-12-16T16:20:45Z 2009-11-13T21:09:25Z <p>I've been looking for a component that would allow me to pass an arbitrary C# object to an XSL transform.</p> <p>The naive way of doing this is to serialise the object graph using an XmlSerializer; however, if you have a large object graph, this could cause problems as far as performance is concerned. Issues such as circular references, lazy loading, proxies etc may further muddy the waters here.</p> <p>A better approach is to have some kind of Adapter class that implements IXPathNavigable and XPathNavigator. One such example that I've encountered is the <a href="http://blogs.byte-force.com/media/g/objectxpathnavigator/default.aspx" rel="nofollow">ObjectXPathNavigator from Byte-Force</a> -- however, most of its key documentation is in Russian, and my initial tests seem to indicate that it has a few quirks and idiosyncrasies.</p> <p>Does anyone know of either (a) any resources (overviews, tutorials, blog posts etc) about this particular in <strong>English</strong> or (b) any other alternatives that offer the same or similar functionality?</p> http://stackoverflow.com/questions/61622/nhibernate-and-shared-web-hosting 2 NHibernate and shared web hosting jammycakes 2008-09-14T20:37:13Z 2009-11-11T22:23:18Z <p>Has anyone been able to get an NHibernate-based project up and running on a shared web host?</p> <p>NHibernate does a whole lot of fancy stuff with reflection behind the scenes but the host that I'm using at the moment only allows applications to run in medium trust, which limits what you can do with reflection, and it's throwing up all sorts of security permission errors. This is the case even though I'm only using public properties in my mapping files, though I do have some classes defined as proxies.</p> <p>Which companies offer decent (and reasonably priced) web hosting that allows NHibernate to run without complaining?</p> <p><strong>Update:</strong> It seems from these answers (and my experimentation -- sorry Ayende, but I still can't get it to work on my web host even after going through the article you linked to) is to choose your hosting provider wisely and shop around. It seems that WebHost4Life are pretty good in this respect. However, has anyone tried NHibernate with Windows shared hosting with 1and1? I have a Linux account with them already and I'm fairly satisfied on that front, and if I could get NHibernate to work seamlessly with Windows I'd probably stick with them.</p> http://stackoverflow.com/questions/778317/need-a-better-way-to-manage-database-schema-changes/1467130#1467130 0 Answer by jammycakes for Need a better way to manage database schema changes jammycakes 2009-09-23T16:23:47Z 2009-09-23T16:23:47Z <p>There have been several people here mention SQL diff tools. These can be a lifesaver if you're trying to unpick the difference between two databases in an unknown state, but their usefulness for managing database migrations is <strong>very limited</strong> and in some cases unreliable. I wrote a blog entry <a href="http://jamesmckay.net/2009/06/why-sql-server-2005-database-projects-in-vsts-are-a-bad-idea/" rel="nofollow">giving a critique of this approach</a> some time ago.</p> <p>It sounds like your existing approach, of database migration scripts, is a fairly good one. My recommendation is to build some kind of script runner to apply them all to a blank (or reference) database as part of your unit test suite: then if anyone checks in a broken script, it breaks the build. Another thing you need to do is keep a record in the database itself of which change scripts have been run.</p> <p>I'd recommend that you check out this series of posts by K Scott Allen:</p> <ol> <li><a href="http://odetocode.com/Blogs/scott/archive/2008/01/30/11702.aspx" rel="nofollow">Three rules for database work</a></li> <li><a href="http://odetocode.com/Blogs/scott/archive/2008/01/31/11710.aspx" rel="nofollow">The Baseline</a></li> <li><a href="http://odetocode.com/Blogs/scott/archive/2008/02/02/11721.aspx" rel="nofollow">Change Scripts</a></li> <li><a href="http://odetocode.com/Blogs/scott/archive/2008/02/02/11737.aspx" rel="nofollow">Views, Stored Procedures and the Like</a></li> <li><a href="http://odetocode.com/Blogs/scott/archive/2008/02/03/11746.aspx" rel="nofollow">Branching and Merging</a> </li> </ol> <p>(via Jeff Atwood, <a href="http://www.codinghorror.com/blog/archives/001050.html" rel="nofollow">Get Your Database Under Version Control</a>)</p> <p>I'd also recommend the book "Refactoring Databases" by Scott Ambler and Pramod J Sadalage (Addison-Wesley Signature Series) for a more in-depth treatment of the whole database lifecycle management process.</p> http://stackoverflow.com/questions/1453540/is-it-safe-to-allow-users-to-edit-css/1453583#1453583 6 Answer by jammycakes for Is it safe to allow users to edit css? jammycakes 2009-09-21T09:20:32Z 2009-09-21T09:20:32Z <p>Short answer: no it isn't. HTC in IE and XBL in Mozilla are both potential attack vectors. A hack of this nature was used to steal 30,000 MySpace passwords a while back.</p> <p>Source: Simon Willison, <a href="http://www.slideshare.net/simon/web-security-horror-stories-presentation" rel="nofollow">Web Security Horror Stories</a></p> http://stackoverflow.com/questions/1152541/is-it-better-to-use-exception-or-return-code-in-python/1153149#1153149 2 Answer by jammycakes for Is it better to use exception or return code in python? jammycakes 2009-07-20T12:02:16Z 2009-07-20T12:02:16Z <p>The best way to understand exceptions is "<a href="http://www.hanselman.com/blog/IfYourMethodCantDoWhatItsNamePromisesItCanThrow.aspx" rel="nofollow">if your method can't do what its name says it does, throw</a>." My personal opinion is that this advice should be applied equally to both .NET and Python.</p> <p>The key difference is where you have methods that frequently can't do what their name says they should do, for instance, parsing strings as integers or retrieving a record from a database. The C# style is to avoid an exception being thrown in the first place:</p> <pre><code>int i; if (Int32.TryParse(myString, out i)) { doWhatever(i); } else { doWhatever(0); } </code></pre> <p>whereas Python is much more at ease with this kind of thing:</p> <pre><code>try: i = int(myString) except ValueError: i = 0 doWhatever(i); </code></pre> http://stackoverflow.com/questions/382482/best-practices-for-using-the-sql-server-2005-database-project-in-visual-studio-20/1068019#1068019 1 Answer by jammycakes for best practices for using the sql server 2005 database project in visual studio 2008 jammycakes 2009-07-01T08:45:33Z 2009-07-01T09:08:53Z <p>The best practices for managing the lifecycle of <strong>any</strong> database, regardless of technology, are:</p> <ol> <li>You should be able to build your project in one step. This includes running your unit tests, integration tests, regression tests, and by extension testing your migrations. (This is, of course, point 2 in <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">The Joel Test</a>.)</li> <li>By extension, you should be able to deploy your database changes in one step.</li> </ol> <p>At the very least, you should get something out of your automated build that you can run, without tweaking, on your production server, to upgrade your database to the new version when you are upgrading your program. Ruby on Rails migrations are a good example of how it should be done.</p> <p>Unfortunately, SQL Server 2005 database projects take a completely different approach, which, as far as I can see, is totally incompatible with these principles. They do offer "incremental deployment," but it seems that this is based entirely on schema comparison tools. Schema comparisons are useful as a starting point, but there are many database refactorings that they can not handle, and more often than not, you are going to have to tweak them (a process made all the harder by the long-winded, difficult to read, spaghetti code that they generate.)</p> <p>I've written a blog post where I <a href="http://jamesmckay.net/2009/06/why-sql-server-2005-database-projects-in-vsts-are-a-bad-idea/" rel="nofollow">examine these issues in more detail</a>.</p> http://stackoverflow.com/questions/7603/where-can-i-find-some-good-ws-security-introductions-and-tutorials 2 Where can I find some good WS-Security introductions and tutorials? jammycakes 2008-08-11T08:10:27Z 2009-05-13T03:22:13Z <p>Can anyone point me to some decent introductions to WS-Security?</p> <p>I'm looking for tutorials or something that provide a fairly gentle introduction to the subject, though I don't mind if it assumes basic knowledge of web services and SOAP. Most of the stuff I've seen so far is very technical and you need a lot of complex, detailed background knowledge to understand it properly.</p> <p>We have to implement a web service in PHP and one or more clients in .NET, so resources covering both would be much appreciated.</p> http://stackoverflow.com/questions/747292/what-computer-science-concepts-should-i-know/747304#747304 34 Answer by jammycakes for What Computer Science concepts should I know? jammycakes 2009-04-14T12:31:25Z 2009-04-14T12:38:05Z <p>Take a look at this blog post by Steve Yegge (formerly of Amazon, now at Google):</p> <ul> <li><a href="http://steve.yegge.googlepages.com/five-essential-phone-screen-questions" rel="nofollow">The Five Essential Phone Screen Questions</a></li> </ul> <p>It goes into some detail about the the five most important concepts that developers should be required to know:</p> <ol> <li>Basic programming (including recursion, file I/O, formatted output, loops etc)</li> <li>Object oriented design (including design patterns etc). You should be able to produce sensible OO designs as well as understanding the concepts.</li> <li>Scripting and regexes.</li> <li>Data structures -- lists, sets, hashtables, trees, graphs, and so on -- as well as Big O notation and algorithmic complexity.</li> <li>Bits, bytes and binary numbers -- how numbers are represented within the computer, and how to manipulate them.</li> </ol> http://stackoverflow.com/questions/666645/would-you-ever-not-catch-an-exception-or-throw-an-exception-that-wont-be-caught/666866#666866 3 Answer by jammycakes for Would you ever NOT catch an exception, or throw an exception that won't be caught? jammycakes 2009-03-20T16:15:01Z 2009-03-20T16:30:58Z <p>There's a very good rule that I came across a while ago:</p> <p><strong>Throw an exception when a method can't do what its name says it does.</strong></p> <p>The idea is that an exception indicates that something has gone wrong. When you are implementing a method, it is not your responsibility to be aware of whether it will be used correctly or not. Whether the code using your method catches the exception or not is not your responsibility, but the responsibility of the person using your method.</p> <p>Another rule to follow is:</p> <p><strong>Don't catch an exception unless you know what you want to do with it.</strong></p> <p>Obviously, you should include cleanup code in a try...finally block, but you should never just catch an exception just for the sake of catching it. And you should never swallow exceptions silently. While there are occasions when you may want to catch all exceptions (e.g. by doing catch (Exception ex) in C#), these are fairly uncommon and generally have a very specific technical reason. For example, when you are using threads in .NET 2.0 or later, if an exception escapes from your thread, it will cause the entire application domain to unload. In these cases, however, at the very minimum you should log the exception details as an error and provide an explanation in the comments.</p> http://stackoverflow.com/questions/7174/how-can-i-improve-the-edit-compile-test-loop-when-developing-a-sharepoint-workflo 1 How can I improve the edit-compile-test loop when developing a SharePoint workflow? jammycakes 2008-08-10T12:12:09Z 2009-01-07T21:39:48Z <p>Recently I had to develop a SharePoint workflow, and I found the experience quite honestly the most painful programming task I've ever had to tackle. One big problem I had was the problems I encountered when I had to step through it in the debugger.</p> <p>There's an article on how to debug a SharePoint workflow <a href="http://www.andrewconnell.com/blog/archive/2008/06/11/SharePoint-Debugging-and-Logging-Tips-and-Tricks.aspx" rel="nofollow" title="BenQ X-Touch">here</a> that tells you how to set breakpoints etc. This involves copying the .pdb file into the GAC alongside the .dll file containing your workflow. You have to do this from a command prompt (or a batch file) because Windows Explorer doesn't let you view the relevant subdirectory of c:\windows\assembly.</p> <p>However, if you do this, the next time you try to deploy the workflow from within Visual Studio, it complains that it can't be deployed because "the file may not be signed" and if you attempt to copy the new version of the dll into the GAC, it tells you that the .dll file is locked.</p> <p>I've found that some of the time, you can get round this by doing an iisreset, but on other occasions you have to restart Visual Studio and there have been frequent times when I've even had to reboot the computer altogether because some mystery process has locked the file. When I don't use the debugger, on the other hand, everything works just fine.</p> <p>Does anyone know of a simpler way of debugging workflows than this?</p> http://stackoverflow.com/questions/171156/best-practices-always-return-a-never-a/171166#171166 10 Answer by jammycakes for Best Practices: Always return a ____, never a ____ jammycakes 2008-10-04T23:11:39Z 2008-10-04T23:19:39Z <p>In C# at least, returning an Array is probably not a good idea. For reasons why, see <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/22/arrays-considered-somewhat-harmful.aspx" rel="nofollow">this blog post by Eric Lippert</a>.</p> <p>In a nutshell, if you are returning an array that is a private member of your class, then you will be exposing your class's internal state to the caller, and they can then make changes which may have unintended side effects.</p> <p>To get round this, you would have to create a copy of the array every time you return it, which is an O(n) operation that may have a negative impact on performance for large arrays.</p> <p>All in all, his statement seems a bit muddled to me. There's no reason why you shouldn't return bool or an instance (returning an instance of something is what the Abstract Factory design pattern and friends are all about) and while null can be a pain in the neck at times, there may be some places where you will want to return it, e.g. to indicate a record not found in a database.</p> http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/143616#143616 3 Answer by jammycakes for Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T13:07:01Z 2008-09-27T13:07:01Z <p>Based on one of the other answers I've had a look at <a href="http://www.atlassian.com/software/jira/" rel="nofollow">Jira</a>, which goes part of the way towards doing what I'm looking for and seems to work reasonably well, though it isn't quite as slick as I'd hoped. However, it only allows sub-tasks in the Professional and Enterprise versions; this feature is disabled by default; and you only get a single level of sub-tasks. The default reports also list top level tasks as well as sub-tasks together in a flat view, so you have to specifically create a custom report if you want to view just the top level ones.</p> <p>Another feature that I intend to investigate when I get a chance is Mantis, which apparently has similar functionality. I will update here once I've tried it.</p> http://stackoverflow.com/questions/95910/find-a-private-field-with-reflection/96020#96020 3 Answer by jammycakes for Find a private field with Reflection? jammycakes 2008-09-18T19:26:11Z 2008-09-18T19:26:11Z <p>One thing that you need to be aware of when reflecting on private members is that if your application is running in medium trust (as, for instance, when you are running on a shared hosting environment), it won't find them -- the BindingFlags.NonPublic option will simply be ignored.</p> http://stackoverflow.com/questions/54482/how-do-i-list-user-defined-types-in-a-sql-server-database 1 How do I list user defined types in a SQL Server database? jammycakes 2008-09-10T15:48:21Z 2008-09-10T16:13:05Z <p>I need to enumerate all the user defined types created in a SQL Server database with CREATE TYPE, and/or find out whether they have already been defined.</p> <p>With tables or stored procedures I'd do something like this:</p> <pre><code>if exists (select * from dbo.sysobjects where name='foobar' and xtype='U') drop table foobar </code></pre> <p>However I can't find the equivalent (or a suitable alternative) for user defined types! I definitely can't see them anywhere in sysobjects. Can anyone enlighten me?</p> http://stackoverflow.com/questions/36432/commenting-code/36512#36512 2 Answer by jammycakes for Commenting code jammycakes 2008-08-31T00:34:49Z 2008-08-31T00:34:49Z <p>I picked up a commenting convention from another developer when I was at university that has served me very well over the years. Its idea is to enable you to scan through a file as quickly and easily as possible, either looking for something or to get an overview of its structure. I prefix every public or protected method or property with the following comment structure:</p> <pre><code>/* ====== MethodName ====== */ /// &lt;summary&gt; /// XML comments go here /// &lt;/summary&gt; void MethodName() </code></pre> <p>Of all the conventions I've seen so far, this one, to my eyes at least, seems to be the clearest way of making each method stand out, and it makes it easiest to scan quickly through a file of source code. Having said that, I hate XML comments with a vengeance because of the visual clutter of the angle bracket tax, and I wish that Microsoft had settled for something more along the lines of Javadoc or PHPdoc:</p> <pre><code>/* ====== methodName ====== */ /** * Doc comments go here * * @param A parameter * @returns A number */ int methodName(String param) </code></pre> <p>Beyond that I try to make the code as self-documenting as possible. Every method should ideally perform one specific task (which may of course be broken up into sub-tasks), and its name should describe what it does.</p> http://stackoverflow.com/questions/27731/whats-wrong-with-c/27753#27753 1 Answer by jammycakes for What's wrong with C#? jammycakes 2008-08-26T11:04:57Z 2008-08-26T11:04:57Z <p>I don't think that C# 3.0 gives you much to complain about, unless you dislike static typing and/or case sensitivity, but that's just a matter of personal taste, and even in the case of static typing, you have type inference to ease a lot of the pain. Recent additions to the language, such as LINQ, lambdas and so on, fill in a lot of gaps.</p> <p>There are only a couple of things that niggle me about C# a bit. One is the fact that it is a compiled language. This means that the edit-compile-test loop can be a bit slow at times, especially when you are doing ASP.NET development and it can take up to a minute between making a change and seeing the effects of it in your browser. However, even then it's a trade-off -- you get a boost in speed, and a lot of syntax errors are trapped at compile time that might well slip through the net in an interpreted scripting language.</p> <p>The other minor niggle is that it can be a bit over-strict in some cases. Covariance is an example -- you can't do this for instance:</p> <pre><code>List&lt;object&gt; myList = new List&lt;string&gt;(); </code></pre> http://stackoverflow.com/questions/21938/is-it-really-that-bad-to-catch-a-general-exception/21995#21995 1 Answer by jammycakes for Is it really that bad to catch a general exception? jammycakes 2008-08-22T09:50:36Z 2008-08-22T09:50:36Z <p>The problem with catching all exceptions is that you may be catching ones that you don't expect, or indeed ones that you should <strong>not</strong> be catching. The fact is that an exception of any kind indicates that something has gone wrong, and you have to sort it out before continuing otherwise you may end up with data integrity problems and other bugs that are not so easy to track down.</p> <p>To give one example, in one project I implemented an exception type called CriticalException. This indicates an error condition that requires intervention by the developers and/or administrative staff otherwise customers get incorrectly billed, or other data integrity problems might result. It can also be used in other similar cases when merely logging the exception is not sufficient, and an e-mail alert needs to be sent out.</p> <p>Another developer who didn't properly understand the concept of exceptions then wrapped some code that could potentially throw this exception in a generic try...catch block which discarded all exceptions. Fortunately, I spotted it, but it could have resulted in serious problems, especially since the "very uncommon" corner case that it was supposed to catch turned out to be a lot more common than I anticipated.</p> <p>So in general, catching generic exceptions is bad unless you are 100% sure that you know <strong>exactly</strong> which kinds of exceptions will be thrown and under which circumstances. If in doubt, let them bubble up to the top level exception handler instead.</p> <p>A similar rule here is never throw exceptions of type System.Exception. You (or another developer) may want to catch your specific exception higher up the call stack while letting others go through.</p> <p>(There is one point to note, however. In .NET 2.0, if a thread encounters any uncaught exceptions it unloads your whole app domain. So you should wrap the main body of a thread in a generic try...catch block and pass any exceptions caught there to your global exception handling code.)</p> http://stackoverflow.com/questions/19883/is-there-a-bug-issue-tracking-system-which-integrates-with-mercurial/19896#19896 6 Answer by jammycakes for Is there a bug/issue tracking system which integrates with Mercurial? jammycakes 2008-08-21T13:37:10Z 2008-08-21T13:37:10Z <p><a href="http://trac.edgewall.org/wiki/TracMercurial" rel="nofollow">TracMercurial</a> integrates Trac with Mercurial. <a href="http://www.assembla.com/" rel="nofollow">Assembla</a> provides free Mercurial hosting with Trac integration.</p> <p>The idea is that you have a central repository as your master and upload all the subsidiary changes from local repositories into the main one.</p> http://stackoverflow.com/questions/14546/wss-moss-book/14585#14585 4 Answer by jammycakes for WSS/MOSS Book jammycakes 2008-08-18T13:28:44Z 2008-08-18T13:28:44Z <p>I've used <a href="http://rads.stackoverflow.com/amzn/click/1590598091" rel="nofollow">Microsoft SharePoint: Building Office 2007 Solutions in C# 2005</a>. It's not too bad and it does walk you through how to do the various key tasks with plenty of examples, but I did find it a bit lacking in terms of explaining why you are doing what you are doing -- essential if you are to avoid ending up in <a href="http://en.wikipedia.org/wiki/Cargo_cult_programming" rel="nofollow">cargo cult programming</a>.</p> <p>Having said that, SharePoint development does involve getting your head round a lot of fairly complex concepts, so it's probably unfair to expect an author to do it more justice than that in only 300 pages when he's trying to give a broad overview. So you'll likely need to pick up some more specialised books along the way too. In particular, you will certainly need something such as <a href="http://rads.stackoverflow.com/amzn/click/1590597001" rel="nofollow">Workflow in the 2007 Microsoft Office System</a> if you want to start developing custom workflows.</p> http://stackoverflow.com/questions/13106/should-i-support-asp-net-1-1 1 Should I support ASP.NET 1.1? jammycakes 2008-08-16T12:34:58Z 2008-08-17T00:42:05Z <p>I've just started working on an ASP.NET project which I hope to open source once it gets to a suitable stage. It's basically going to be a library that can be used by existing websites. My preference is to support ASP.NET 2.0 through 3.5, but I wondered how many people I would be leaving out by not supporting ASP.NET 1.1? More specifically, how many people are there still using ASP.NET 1.1 for whom ASP.NET 2.0/3.5 is not an option? If upgrading your server is not an option for you, why not?</p> http://stackoverflow.com/questions/11246/best-resources-to-learn-javascript/11280#11280 2 Answer by jammycakes for Best resources to learn JavaScript jammycakes 2008-08-14T16:26:07Z 2008-08-14T16:26:07Z <ul> <li><a href="http://www.w3schools.com/JS/default.asp" rel="nofollow" title="excanvas">W3schools</a> have some good tutorials and references -- great for beginners, but I still find myself returning there from time to time.</li> <li><a href="http://devguru.com/technologies/javascript/home.asp" rel="nofollow">DevGuru</a> is a good reference site for core JavaScript functions etc.</li> <li>Once you're familiar with the basics, I heartily recommend John Resig's book <a href="http://rads.stackoverflow.com/amzn/click/1590597273" rel="nofollow">Pro JavaScript Techniques</a> for the more advanced stuff.</li> </ul> http://stackoverflow.com/questions/9122/select-all-columns-except-one-in-mysql/9135#9135 3 Answer by jammycakes for Select all columns except one in MySQL? jammycakes 2008-08-12T19:01:14Z 2008-08-12T19:01:14Z <p>You could use <a href="http://dev.mysql.com/doc/refman/5.0/en/describe.html" rel="nofollow" title="Virtual Workspaces">DESCRIBE my_table</a> and use the results of that to generate the SELECT statement dynamically.</p> http://stackoverflow.com/questions/854/keyboard-layout/8821#8821 0 Answer by jammycakes for Keyboard layout jammycakes 2008-08-12T13:33:17Z 2008-08-12T13:46:26Z <p>I spent about four and a half months on Colemak earlier this year. Its similarities to qwerty make it very easy to learn, and it's very easy to switch between Colemak and qwerty, but at the same time it's tightly optimised to the home row and has a few other tricks up its sleeve that are supposed to make typing faster and more comfortable, so the thinking goes.</p> <p>However, I have found that it gets over-hyped a bit by some of its users. I didn't find any advantage in terms of speed, and you really need a split ergonomic keyboard if you are to see any benefits in comfort from it. Conventional flat keyboards are actually more comfortable if your layout <em>doesn't</em> focus on the home row, otherwise you have two factors combining to force your wrists together into a rather awkward angle. I've also found that it has little advantage if you're programming, especially in curly-bracket-y languages such as C#, PHP or JavaScript where your fingers have to go all over the place anyway no matter what layout you are using.</p> <p>These days, I occasionally switch to Colemak if I have to type a lot of text, but most of the time I just stick with qwerty.</p> http://stackoverflow.com/questions/7050/how-to-stoke-the-fires-of-passion-in-your-office/7187#7187 2 Answer by jammycakes for How to stoke the fires of passion in your office? jammycakes 2008-08-10T13:00:25Z 2008-08-10T13:00:25Z <p>A couple of people wrote really great blog posts about this a couple of years ago:</p> <ul> <li><a href="http://www.retrospector.com/2006/06/21/top-10-ways-to-motivate-geeks/" rel="nofollow" title="BenQ X-Touch">Top 10 ways to motivate geeks</a></li> <li><a href="http://kohari.org/2006/07/20/top-10-ways-to-de-motivate-geeks/" rel="nofollow" title="Apple Aluminum Keyboard">Top 10 ways to de-motivate geeks</a></li> </ul> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/7110#7110 7 Answer by jammycakes for What is the easiest language to start with? jammycakes 2008-08-10T08:49:45Z 2008-08-10T08:53:37Z <p>Personally, I'd say your choice boils down to either .NET or PHP.</p> <p>Whether you use VB or C#, .NET is the easiest option to get you started. The Express editions of Visual Studio are all free and very easy to install, and there are also some great quick starts and tutorials out there. It has its advanced (read: difficult) bits, but generally the easy stuff is very easy. You can do web development, Windows development, web services and mobile development with it, and the IDE and visual designers are second to none. There are other .NET languages out there such as IronPython, Boo, etc., but they require additional downloads and don't have quite as much support in the IDE.</p> <p>PHP is also very easy to set up and get up and running, and its learning curve is probably a bit gentler than .NET, but it's seldom used for anything other than web development. You can download and install XAMPP to get Apache, MySQL and PHP installed on a Windows machine all in one. There are also plenty of tutorials and it's very well documented. However, you need to get hold of a separate IDE -- I generally use Eclipse with either Aptana or PHPEclipse, though it's harder to find your way round these environments than Visual Studio. PHP is also ubiquitous with web hosts.</p> <p>Python and Ruby are easy to learn and use for general scripting, but they require a bit more leg-work if you want to use them for web development. Python's documentation is fair though less user friendly than either PHP or .NET. Ruby is a great language, but its Achilles heel is its documentation, which is just plain awful.</p> <p>Java is a bit more tricky to get up and running, mainly because there are loads and loads of different options to consider, you need several different downloads, it confronts you with a bewildering amount of jargon, and IMO it over-emphasises object-oriented techniques and XML, which beginners often find difficult to understand and/or cumbersome to use. Having said that, it's fairly well documented, well supported with tools, and frequently it's the first language that you get taught in a computer science degree.</p> <p>Don't go for Perl as a first language -- both the language itself and its documentation look like transmission line noise.</p> http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/1833531#1833531 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2009-12-02T15:23:08Z 2009-12-02T15:23:08Z Thanks -- I saw the FogBugz 7 presentation at the Stack Overflow DevDays and I was pretty impressed. Perhaps someone at Fog Creek read this question and decided it was worth answering? http://stackoverflow.com/questions/371807/traversing-an-arbitrary-c-object-graph-using-xpath-applying-xsl-transforms/431924#431924 Comment by jammycakes on Traversing an arbitrary C# object graph using XPath/applying XSL transforms jammycakes 2009-11-12T17:07:44Z 2009-11-12T17:07:44Z See my response to Adam Hawkes. As I noted, this is actually a solved problem -- my question is that it's poorly documented, and does anyone know of any documentation/tutorials/etc in English? http://stackoverflow.com/questions/371807/traversing-an-arbitrary-c-object-graph-using-xpath-applying-xsl-transforms/466511#466511 Comment by jammycakes on Traversing an arbitrary C# object graph using XPath/applying XSL transforms jammycakes 2009-11-12T17:05:45Z 2009-11-12T17:05:45Z This doesn't actually answer my question. As I said, the problem has been solved -- it's just badly documented. And possibly cyclic object graphs will not necessarily be an issue if your XSLT transforms are evaluating them lazily. http://stackoverflow.com/questions/881473/why-catch-and-rethrow-exception-in-c/1443543#1443543 Comment by jammycakes on Why catch and rethrow Exception in C#? jammycakes 2009-10-15T15:26:05Z 2009-10-15T15:26:05Z Actually, this isn't necessary -- in Visual Studio you can set the debugger to break when an exception is thrown and it brings up the exception details in an inspector window for you. http://stackoverflow.com/questions/1453540/is-it-safe-to-allow-users-to-edit-css/1453544#1453544 Comment by jammycakes on Is it safe to allow users to edit css? jammycakes 2009-09-21T15:43:34Z 2009-09-21T15:43:34Z @Vinko Vrsalovic: No, no, no, no, no, no, no! They aren't doing an XSS attack on themselves, they are doing an XSS attack on everyone who visits their profile page. From there, they can steal passwords, hijack sessions, whatever. http://stackoverflow.com/questions/1453540/is-it-safe-to-allow-users-to-edit-css/1453547#1453547 Comment by jammycakes on Is it safe to allow users to edit css? jammycakes 2009-09-21T09:14:40Z 2009-09-21T09:14:40Z Actually, as other replies have noted, you can execute JavaScript in CSS. <a href="http://www.slideshare.net/simon/web-security-horror-stories-presentation" rel="nofollow">slideshare.net/simon/&hellip;</a> http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559460#559460 Comment by jammycakes on Good excuses NOT to use version control jammycakes 2009-05-31T16:49:30Z 2009-05-31T16:49:30Z I think you'll find that the Linux kernel has been under source control since 2002. In fact, the aforementioned Mr Torvalds actually wrote his own source control system for it. (Git.) Admittedly it was a different picture ten years ago, when source control was either expensive or CVS, but a lot of the modern ones such as Git, Mercurial or Bazaar are much lower friction. To those that think &quot;Where does it end&quot; -- Must every project have backups? Must every IDE have an undo button? Must every project be saved to disk? The only code that doesn't need source control is throwaway code. http://stackoverflow.com/questions/21938/is-it-really-that-bad-to-catch-a-general-exception/22234#22234 Comment by jammycakes on Is it really that bad to catch a general exception? jammycakes 2009-04-20T08:52:20Z 2009-04-20T08:52:20Z Letting an exception bubble up does not mean showing it to the end user. You can (and should) show a generic error page, log it for investigation, and then fix the problem that caused the exception in the first place. http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140324#140324 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-29T00:35:05Z 2008-09-29T00:35:05Z Yes but you haven't said anything about whether it has the feature I'm asking about (sub-tasks) or how well it implements it. http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T23:01:49Z 2008-09-27T23:01:49Z No I certainly don't want a commercial, especially not one that lists a whole lot of irrelevant features that are nothing to do with what I'm asking. I just want to know (a) which ones do what I want, (b) how well they do it, and (c) whether or not the approach I'm after works well in practice. http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140298#140298 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T18:28:38Z 2008-09-27T18:28:38Z I did look at the other discussion, but I didn't notice the post you mentioned -- it's way down the list. The question you linked to is actually much more general than this one. I got the impression people thought I was asking the same thing, but I'm not -- I'm after something rather more specific. http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140324#140324 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T12:55:54Z 2008-09-27T12:55:54Z Could you go into more detail please, specifically about how well it works for the purpose I've actually asked in the original question? http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140294#140294 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T12:55:19Z 2008-09-27T12:55:19Z Could you go into more detail please? http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140320#140320 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T12:52:45Z 2008-09-27T12:52:45Z I've up-voted your answer because it's one of only two that made any effort at all to answer my question in any detail. I've downloaded Jira and had a look at it -- I'll also take a look at Mantis and see how well it compares with Jira and Assembla in this respect. http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140262#140262 Comment by jammycakes on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? jammycakes 2008-09-27T12:50:35Z 2008-09-27T12:50:35Z I've up-voted your answer because it's one of only two that made any effort at all to answer my question in any detail. I've downloaded Jira and it does have at least a partial implementation of what I'm looking for, though it's only available in the Proessional and Enterprise versions.