What is the single task in your development activity you would like to see automated? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:47:43Z http://stackoverflow.com/feeds/question/187068 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa 10 What is the single task in your development activity you would like to see automated? Ilya Ryzhenkov 2008-10-09T12:39:54Z 2009-09-30T10:54:50Z <p>What is that single action you do over and over again during your development time? </p> <p>What task eats your development time like nothing else? </p> <p>What is the task you want to perform, but you never convince yourself to do, because it would take forever to accomplish?</p> <p>Please, provide environment information relevant to the task you mention:</p> <ul> <li>IDE and its version</li> <li>Tools, add-ins, plug-ins and other extensions </li> <li>Programming language</li> </ul> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187074#187074 0 Answer by Paul Tomblin for What is the single task in your development activity you would like to see automated? Paul Tomblin 2008-10-09T12:41:23Z 2008-10-09T12:41:23Z <p>I would like to automate the responses when my boss asks for the fifth time today if that bug is fixed.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187075#187075 0 Answer by Jon Skeet for What is the single task in your development activity you would like to see automated? Jon Skeet 2008-10-09T12:41:24Z 2008-10-09T12:41:24Z <p>Posting to SO :)</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187082#187082 0 Answer by Joe Morgan for What is the single task in your development activity you would like to see automated? Joe Morgan 2008-10-09T12:43:47Z 2008-10-09T12:43:47Z <p>Automatically re-synchronizing and recompiling every project/solution I'm working with every morning.</p> <p>Right now it's a by-hand process with MKS and VS2005.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187086#187086 2 Answer by dungema for What is the single task in your development activity you would like to see automated? dungema 2008-10-09T12:45:28Z 2008-10-09T12:45:28Z <p>Finding duplicates in the bug tracker.</p> <p>On large projects, when a lot of testers are involved, a lot of bugs are submitted. During triage you often encounter bugs that you've encountered before. Finding those bugs in the huge repository is difficult as testers sometimes use different terminology for the same concepts.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187093#187093 1 Answer by Gerald for What is the single task in your development activity you would like to see automated? Gerald 2008-10-09T12:46:48Z 2008-10-09T12:46:48Z <p>It doesn't eat up THAT much of my time, but one task I'd like to see automated is converting /* ... <em>/ comments to // comments inside of methods. People often send me large codebases to debug, and they're invariable strewn with /</em> ... */ comments everywhere which makes it annoying to comment out blocks of code during my troubleshooting.</p> <p>C++/Visual Studio 2008</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187102#187102 -1 Answer by JosephStyons for What is the single task in your development activity you would like to see automated? JosephStyons 2008-10-09T12:48:21Z 2008-10-09T12:48:21Z <p>We use MS Communicator in our intranet.</p> <p>It does not support logging of conversations.</p> <p>I want my conversations saved and searchable.</p> <p>So I have a big spreadsheet where I paste all of my conversations before closing the communicator window.</p> <p>That is a big pain. I'd like to automate it by capturing the onclose event of the communicator window, and doing some MS Office automation to write the contents into my excel file automatically. Going to get around to it one day...</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187121#187121 2 Answer by tloach for What is the single task in your development activity you would like to see automated? tloach 2008-10-09T12:53:49Z 2008-10-09T12:53:49Z <p>Build after every checkin. I would love to never again worry about which checkin broke the build - wouldn't even need to keep the results of the build, just verify that it doesn't fail.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187124#187124 1 Answer by aku for What is the single task in your development activity you would like to see automated? aku 2008-10-09T12:54:20Z 2008-10-09T13:03:37Z <p>I dream about this feature:</p> <p>IDE (or at least ReSharper :) ) will analyze units of code (methods, or just small code blocks) and automatically save frequently used pieces of code as snippets (along with their context). Later these snippets can be used for auto-completion. This feature requires some kind of code analysis, but I will be satisfied even with some simple version. For example you can take a look at MS Office apps - they just remember recently entered text blocks and provide them in auto-completion drop-down boxes.</p> <p>Ideally tool should perform some kind of pattern matching for code. It's not trivial but I believe it's implementable to some degree.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187134#187134 3 Answer by Rinat Abdullin for What is the single task in your development activity you would like to see automated? Rinat Abdullin 2008-10-09T12:57:13Z 2008-10-09T13:07:28Z <p>Enforce assembly-level guidelines over the codebase, so that violating them by any developer (I'm thinking about Junior devs mainly) will break the build (at unit-test level). The guidelines are to be expressed in some simple and yet non intrusive way (NDepend does not fit here). Samples:</p> <ul> <li>Do not mark any complex classes or methods with NoCodeCoverageAttribute (complex classes have large cyclomatic complexity index)</li> <li>If a unit test method does not have any assertion and it does not throw exceptions, something must be going wrong in there.</li> <li>Classes in library A can have dependencies only on B and C</li> <li>If some class from D namespace is referenced in method B, then it should have execution time less, than 500ms</li> <li>Attribute B is a marker only for classes inheriting from C. Any other use is an error</li> </ul> <p>These rules could be expressed in the assembly (rules for the usage of this assembly) and be applied to any other assembly (basically, checking, whether the second lib is sticking to some high-level guidelines)</p> <p>C#, VS2008, CC.NET, NUnit</p> <p>PS: I simply do not have time to write this one with Mono.Cecil+Boo</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187140#187140 4 Answer by aku for What is the single task in your development activity you would like to see automated? aku 2008-10-09T12:59:52Z 2009-09-30T10:54:50Z <p>Another feature I find useful is coding rules checking tool. Something like StyleCop. I want to have an easy tool to create code patterns/rules that can be applied to code base. Such functionality could save me a lot of time during code reviews. For example, I can define pattern (in pseudo code):</p> <pre><code>catch (.+) { &lt;empty&gt; } // Matches empty catch blocks </code></pre> <p>NDepend includes CQL (code query language). It would be really cool to have something like this in ReSharper (it will analyze actual code instead of MSIL)</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187141#187141 0 Answer by akalenuk for What is the single task in your development activity you would like to see automated? akalenuk 2008-10-09T13:00:11Z 2008-10-09T13:00:11Z <p>I like drawing a lot of schemes, graphs and formulas on paper before getting into coding itself. It would be great to somehow have all that paper stuff scanned automaticaly and commited to svn server together with other documents. </p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187145#187145 3 Answer by Kenny for What is the single task in your development activity you would like to see automated? Kenny 2008-10-09T13:00:38Z 2008-10-09T13:00:38Z <p>A tool that would recognize &amp; mark stale or unused variables/methods/files.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187147#187147 8 Answer by Alexander Kojevnikov for What is the single task in your development activity you would like to see automated? Alexander Kojevnikov 2008-10-09T13:01:30Z 2008-10-09T13:01:30Z <p>Database schema versioning and synchronisation.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187162#187162 4 Answer by Arne Evertsson for What is the single task in your development activity you would like to see automated? Arne Evertsson 2008-10-09T13:05:25Z 2008-10-09T13:20:28Z <p><strong>Setting up the development environment</strong></p> <p>This may seem as a one time thing to do, but actually it isn't. Somebody adds a new dependency, e.g. to a JMS queue: it need to be set up and configured. Somebody makes changes in the db: you probably have to update your db manually. There is a change in the Maven pom-files: the IDE project files need to be recreated which probably erases some of your settings.</p> <p>If you have more than one computer you develop on, all of this needs to be done for each computer.</p> <p>If I could press a button that made sure everything was up-to-date it would be wonderful.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187172#187172 1 Answer by Even Mien for What is the single task in your development activity you would like to see automated? Even Mien 2008-10-09T13:07:45Z 2008-10-09T13:07:45Z <p><strong>Propagation of changes in database schema to stored procedures and functions.</strong> </p> <p>I would love to know what fields my stored procedures reference and then be able to have then updated automatically or at least have a list of what to change. </p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187191#187191 0 Answer by Jason Z for What is the single task in your development activity you would like to see automated? Jason Z 2008-10-09T13:13:21Z 2008-10-09T13:13:21Z <p>Extracting the requirements from the user/client</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187204#187204 3 Answer by aku for What is the single task in your development activity you would like to see automated? aku 2008-10-09T13:17:41Z 2008-10-09T13:46:03Z <h3>Real-time metrics with color coding</h3> <p>During code reviews/refactoring sessions I often need to quickly find problematic pieces of code. I find following feature to be very useful:</p> <ol> <li>Compute different code metrics for methods</li> <li><p>Show colored file map (like File Structure window in ReSharper)</p> <p>For example I can open map window, choose "cyclomatic complexity" and see color coded code map where color ranges from light green (methods with low CC) to dark red (methods with high CC)</p></li> <li><p>If I set mouse pointer inside some method show various code metrics for this method in tool window</p></li> </ol> <p>If metrics would be re-computed in background I can monitor in real-time how refactoring affects the code.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/188270#188270 0 Answer by Rinat Abdullin for What is the single task in your development activity you would like to see automated? Rinat Abdullin 2008-10-09T17:18:07Z 2008-10-09T17:18:07Z <p>Spell-checking code and comments, according to some basic vocabulary (project-specific or company-specific).</p> <p>We have this in FxCop, but this is not interactive.</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/188298#188298 0 Answer by Gabriel Isenberg for What is the single task in your development activity you would like to see automated? Gabriel Isenberg 2008-10-09T17:26:55Z 2008-10-09T17:26:55Z <p>I'd like to see more support for automated deployments. It'd be nice if the resulting build of any given project (web application, win application) produced an MSI package that was ready to take input parameters mapping to the project-level properties.</p> <p>There are tools to do this, but nothing quite as automagic as my dream :)</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/194601#194601 0 Answer by Thomas Bratt for What is the single task in your development activity you would like to see automated? Thomas Bratt 2008-10-11T20:39:42Z 2008-10-11T20:39:42Z <p>Something to help generate simple struct/data classes. Such classes have read only properties and a single constructor to set the property values. Anonymous types are great but sometimes you need a named type.</p>