tools

Web-based test plan tracking tool?

I see a lot of questions about test management tools, but none of them seem to do quite what I want them to do. Can anyone help me find what I'm looking for? Here are the kinds of features that I want in a test management tool: Must-have: Easy to add and review test plans with execution steps Tag tests to associate with a particular f...

Is there any library/tool that is able to analyze the dependencies of the source from a java project?

I am trying to figure out the way to analyze dependency condition of java projects. Is there any API/tool that can help find out the dependency in the source? I know that dependency can be easily analyzed in a project's binary format, by using tools like "DependencyFinder". However, I don't know if there is any tool to do it in its sour...

How to load an DWExplorer Example (OLAP Tool)

Hi, I have downloaded the 30-day trial of DWExplorer, and I also got 2 examples files, Financial Overview.dwew and Product Overview.dwew. But whenever I open one of those 2 files, I get the following error message: 1: An error occurred while connecting to the server: -> [SourceException] -> Type [SourceErrorType]: ConnectionLost -> Sou...

Is there a support tool to make the code review task more interesting?

I'm so bored with the way I have to open my colleague's changesets and right click on a specific file and select "compare with previous/latest version" - only here will I reach the compare dialog ! I want this dialog as a side-by-side pane when viewing the changeset so that I can see quickly what changes my colleagues have made to the f...

Is there any safe refactoring tool for .net (or at least c#)?

Hello, I recently read Michael C. Feathers' book Working effectively with legacy code and came across the point where he mentioned a way to test the safety of automatic refactoring tools. My question is: Are there any safe refactoring tools for the .net platform?; that means tools which only allow real refactorings and e.g. don't allow ...

Is there a tool that can transform a static SQL string into valid Drupal db query code?

I am wondering if there is some tool available, that will take as input a SQL command, and as output will return valid Drupal code that can be used in the Drupal Api? EDIT The idea is I have large, 25 lines of SQL commands ready to be used on the database. And they are somehow complicated, so I am wondering how could I rewrite them wit...

What is the tool box that every programmer needs?

What is the tool box that every programmer needs? For example I use: Notepad++, xmlMarker, ReSharper. Are there more cool tools that can make life easy? ...

Scrum meeting minutes collaboration tool

I'm looking for light weight, free and installable scrum meeting minutes collaboration tool. Twiki seems pretty heavy weight for just this purpose. I've seen several other SO threads but they all mainly focus on 'complete' Agile/Scrum management. I'm just looking for a meeting minutes collaboration tool. Thanks. ...

is there any tool or add-on for write color and comfortable query on access-2007 ?

hi is there any tool or add-on to color-code SQL keywords in the access-2007 SQL view, like in SQL Server? thank's in advance ...

Tools/techniques for diagnosing C app crash on Windows

I have written an application in C, which runs as a Windows service. Most users can run the app without any problems, but a significant minority experience crashes caused by an Access Violation, so I know I have a bug somewhere. I have tried setting up virtual machines to mirror the users' configurations as closely as possible, but canno...

googlebot vs 302 document moved message

Hi, I tried searching for the same issue but couldnt find the right answer for me. Anyway, I have a site http://mysite.com but the index.php from the root is going to redirect to a subfolder say, http://mysite.com/pages/index.php and on google webmaster tools fetch as googlebot i get the document moved message. And no indexing seems to...

How important is a good modeling tool toward system design

While a quick wiki/google flood me with numerous uml freeware, most of them doesn't meet my expectation (limited to "drawing" level instead of "modeling"). I know sparx's EA and IBM rational rose offers complete design-to-implementation toolkits but they are out of my budget :( Would if be significantly different if I were to sketch usi...

C# Memory leak, tracking techinques and tools.

The app I am writing is suffering quite dramatically from a memory leak. Pretty much the entire object model is staying in memory when a user closes down a loaded project. The way I know this is because closing a project in my app barely effects the memory usage in the task manager and then opening a new project almost makes it double ...

Ruby on Rails: CSS and skins management

I have a skin support in my app. I'm looking for a tool, which will enable the customer (not the programmer, which is current) alter the skins. Is there an admin tool (gem, plugin) for Rails to manage (edit, create, view) these skins? I looking for some easy solution like /admin/skins page where I could do all the stuff, otherwise I'm g...

What tool do you use to manage beta testers for a web application?

Hi all, Forgive me if this is in the wrong place, but I figured a few coders might have some thoughts on beta testing their code. I have written a web application that I am going to beta test with a small audience (10-20), and will eventually develop an application for the iOS platform. What I am looking for is a tool that will help m...

Does anyone see any problem in this program

After not getting an answer I liked for this question about chroot, I went and rolled my own solution: #include <unistd.h> #include <sys/types.h> #include <pwd.h> #include <stdio.h> extern char **environ; int main(int argc, char** argv, char** envp) { char* path = "/"; char* name = "nobody"; char* exe = "/bin/false"; struct pas...

Tool for source code analysis?

Source code analysis and exploration tools for C and C++ seem to be sorely lacking. Are there any tools which I can use to gather information about C and/or C++ source files? cscope does part of what I would need, Doxygen looks closer. At a minimum list of all function, callers, callees, variable references etc. Perhaps Doxygen's xml ...

How to use springsource tool suite for spring web service development?

How to use springsource tool suite for spring web service development? quick start of how link/guidance is required ...

Tools for previewing configuration file transformations

Are there any tools or Visual Studio 2010 extensions which allow me to view the output of a configuration file transformation short of having to publish the entire project? Is the process which performs the transformation directly invokable? Edit After a little more Googling I came across this: Step 4: Generating a new transforme...

Any tool that says how long each method takes to run?

some parts of my program are way slow. and I was wondering if there is tool that i can use and for example it can tell me ok running methodA() took 100ms , etc ...or so useful info similar to that. ...