What is the single task in your development activity you would like to see automated? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:47:43Zhttp://stackoverflow.com/feeds/question/187068http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa10What is the single task in your development activity you would like to see automated?Ilya Ryzhenkov2008-10-09T12:39:54Z2009-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#1870740Answer by Paul Tomblin for What is the single task in your development activity you would like to see automated?Paul Tomblin2008-10-09T12:41:23Z2008-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#1870750Answer by Jon Skeet for What is the single task in your development activity you would like to see automated?Jon Skeet2008-10-09T12:41:24Z2008-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#1870820Answer by Joe Morgan for What is the single task in your development activity you would like to see automated?Joe Morgan2008-10-09T12:43:47Z2008-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#1870862Answer by dungema for What is the single task in your development activity you would like to see automated?dungema2008-10-09T12:45:28Z2008-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#1870931Answer by Gerald for What is the single task in your development activity you would like to see automated?Gerald2008-10-09T12:46:48Z2008-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-1Answer by JosephStyons for What is the single task in your development activity you would like to see automated?JosephStyons2008-10-09T12:48:21Z2008-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#1871212Answer by tloach for What is the single task in your development activity you would like to see automated?tloach2008-10-09T12:53:49Z2008-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#1871241Answer by aku for What is the single task in your development activity you would like to see automated?aku2008-10-09T12:54:20Z2008-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#1871343Answer by Rinat Abdullin for What is the single task in your development activity you would like to see automated?Rinat Abdullin2008-10-09T12:57:13Z2008-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#1871404Answer by aku for What is the single task in your development activity you would like to see automated?aku2008-10-09T12:59:52Z2009-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 (.+) { <empty> } // 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#1871410Answer by akalenuk for What is the single task in your development activity you would like to see automated?akalenuk2008-10-09T13:00:11Z2008-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#1871453Answer by Kenny for What is the single task in your development activity you would like to see automated?Kenny2008-10-09T13:00:38Z2008-10-09T13:00:38Z<p>A tool that would recognize & 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#1871478Answer by Alexander Kojevnikov for What is the single task in your development activity you would like to see automated?Alexander Kojevnikov2008-10-09T13:01:30Z2008-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#1871624Answer by Arne Evertsson for What is the single task in your development activity you would like to see automated?Arne Evertsson2008-10-09T13:05:25Z2008-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#1871721Answer by Even Mien for What is the single task in your development activity you would like to see automated?Even Mien2008-10-09T13:07:45Z2008-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#1871910Answer by Jason Z for What is the single task in your development activity you would like to see automated?Jason Z2008-10-09T13:13:21Z2008-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#1872043Answer by aku for What is the single task in your development activity you would like to see automated?aku2008-10-09T13:17:41Z2008-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#1882700Answer by Rinat Abdullin for What is the single task in your development activity you would like to see automated?Rinat Abdullin2008-10-09T17:18:07Z2008-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#1882980Answer by Gabriel Isenberg for What is the single task in your development activity you would like to see automated?Gabriel Isenberg2008-10-09T17:26:55Z2008-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#1946010Answer by Thomas Bratt for What is the single task in your development activity you would like to see automated?Thomas Bratt2008-10-11T20:39:42Z2008-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>