tools

Visual Studio: How do I show all classes inherited from a base class?

In Visual Studio, How do I show all classes inherited from a base class? For example, in ASP.NET MVC there are several 'ActionResult' types -- and they all inherit from / implement the base class 'ActionResult'. It looks like unless you just 'know' that 'View' and 'Json' are valid 'ActionResult' types, there is no way you can easil...

Memory leak detection under Windows for GNU C/C++

What memory leak detection tools are available for use with open source C/C++ on Windows? ...

Any command line format tool available for java file?

We are working on a legacy system(7 years old), with lots of java/jsp files that have never been formatted before, not reader at all. Because we have many old versions, we are afraid that we won't be able to effectively diff unformatted and formatted files anymore if we format them. Question is: are there any command line format tools a...

"Holds value of property" in Java code

I got some legacy code with that caption spread out as comment almost in every field. Also appearing is "Setter for property xyz". Just out of curiosity, which Java tool generated this stubs? ...

Is there a tool to generate web pages based on Java beans?

Is there a tool that will take you java beans (pojos) and automatically make them a form for a webpage? To be more clear I have a bunch of Jaxb objects that I want to be able to display in a form without having to code a bunch of html. Is there a tool that will read the jaxb objects and generate the editable form for me? Also, this ne...

What's the proper format for an apache benchmark postfile?

What's the proper format for an apache benchmark postfile? ...

What's a good tool to run SQL scripts against any database?

Currently I have a custom tool which generates vanilla-SQL (only using standard SQL), from our Data-models that sets up database schemas and initial data for our new databases, and do version patches, etc... This part is all fine and dandy right now. However running these SQL scripts against all the different databases (different vendor...

Interactive Statistical Analysis tool

I'm looking for a basic software for statistical analysis. Most important is simple and intuitive use, getting started "right out of the box". At least basic operations should be interactive. Free would be a bonus :) The purpose is analysis of data dumps and logs of various processes. Importing a comma/tab separated file sorting and...

A Good, Free screen sharing program for pair programming?

I am looking for a good, free (preferred) screen sharing program that works well for pair programming and code review sessions for Windows (Vista x64, Server 2008). It should allow either person take control of the screen and be fairly responsive for text editing over decent broadband connections. Additional features like the ability to ...

How does the GPL apply if you are using a tool released under the GPL rather than integrating GPL code?

My favorite text editor is Notepad++, which is released under the GPL. On it's home page it explicitly states that... Running in the MS Windows environment, its use is governed by GPL License. I realize that when you build an application that uses GPL code, you must license your application under the GPL as well. But how does th...

Is the Subversion 'stack' a realistic alternative to Team Foundation Server?

I'm evaluating Microsoft Team Foundation Server for my customer, who currently uses Visual SourceSafe and nothing else. They have explicitly expressed a desire to implement a more rigid and process-driven environment as their application is in production and they have future releases to consider. The particular areas I'm trying to cover...

How to divide a large Java project into smaller components

We've trying to separate a big code base into logical modules. I would like some recommendations for tools as well as whatever experiences you might have had with this sort of thing. The application consists of a server WAR and several rich-clients distributed in JARs. The trouble is that it's all in one big, hairy code base, one sourc...

Project dependency diagram in Visio

I'm looking for a tool that will generate an assembly/project dependency diagram in Visio (or as close as possible) to assist me with breaking up some of our system into more manageable trunks. The ability to include/exclude non-project dependencies is a must (i.e. include/exclude System. assemblies). ...

What program should I use to mock up GUIs?

I want to mockup a GUI system so that I can figure out how best to represent what I need. Normally, I would design a GUI in something like glade and then write a quick mockup in Python which implements only the GUI logic (ie, making menus/sub windows etc appear) and not business logic. Are there any tools which automate this? I mean, ...

Automatic code quality review tool for Python

Hi, I am python newbie. Can ppl point towards good OSS for automated decent python code review tools. I am churning quite some python code these days. Want to pass it thru some quality tool. Thanks Related question: Are there any static analysis tools for Python? ...

Tool to find out why an SQL select does not return any data.

Is there a tool which tells you (or gives you a hint) why a particular select statement dose not return any rows given the current data in your database. eg if you had the following 4 table join select * from a, b, c, d where a.b_id = b.id and b.c_id = c.id and c.d_id = d.id If there were rows which satisfied the conditions a.b_id ...

Does anyone know where I can find String Resource Generator?

Is the project still around? ...

Integrating command-line generated python .coverage files with PyDev

My build environment is configured to compile, run and create coverage file at the command line (using Ned Batchelder coverage.py tool). I'm using Eclipse with PyDev as my editor, but for practical reasons, it's not possible/convenient for me to convert my whole build environment to Eclipse (and thus generate the coverage data directly...

Sql Server Dependencies

Is there an easy way to chase down table/stored procedure/function dependencies in Sql Server (I'm using 2k5)? I've inherited a giant application with lots of tables and even more stored procedures and functions that are long and interlinked. At the end of the day is there a way to build a dependency tree? Ideally what I'm looking f...

What does the gnuwin32 program: [.exe do?

Looking in the gnuwin32/bin directory, there is an odd-looking program file named [.exe I couldn't find it in the documentation, gnuwin32.sourceforge.net or in a google search, so I ran it and got: $ [ [: missing `]' $ so I gave it ] as a parameter and got $ [ ] $ It didn't complain, so I assumed it was on the right track. I trie...