tools

embedded profiler

I am supposed to profile/optimize an application. I am running on a mips machine so valgrind is not an option. Any tool suggestions, tactics? EDIT: I guess I should have given more details. Gprof is not supported in my toolchain. I have tried oprofile; but results seemed incorrect, also I could not get a calltree. I am looking for an a...

Looking for a free tool to visualize object relationships for C#

Here is my ideal solution: a free tool that reads a .csporj or .sln and generates a pretty picture that shows all the objects and how they are related. By relationships, I don't mean inheritance but rather dependency. For example, if we have a Car object and Car has a member variable Wheel, I would like that Car depends on Wheel to be...

Using Emacs for big big projects

Hello, Maybe is a often repeated question here, but i can't find anything similar with the search. The point is that i like to use Emacs for my personal projects, usually very small applications using C or python, but i was wondering how to use it also for my work, in which we have project with about 10k files of source code, so is veee...

Why is IE developer tools so slow?

I've used the developer tools on Chrome, FF and IE, and on IE, it's extremely slow. I was trying to debug iGoogle and it took about 3 minutes to even open the tools page. Can anyone confirm that it's that slow? It works fine on small websites though. ...

Chained MSI Installers Tool

I'm looking for a tool (preferably not InstallShield, and also preferably cheap/Free) that supports Chained MSI Installations. I've got several small installations that need to be able to be deployed separately, but also as one group, and I'd like to not have to maintain multiple installers. It looks like I need Windows Installer 4.5 t...

IDE support for Spring framework; Are they worth using?

I'm using Intellij IDEA Community Edition for IDE, and I like it a lot. However, it does not have any special "Spring support" (plug-ins/tools). My next project uses Spring (which I'm not very familiar with), and I'm wondering whether I should consider changing my IDE from early on; e.g. to SpringSource eclipse/Intellij IDEA Professio...

Which tools are available to reverse engineer a sqlite database?

I would like to obtain the diagram design of a sqlite DB by reverse engineering it, so I can avoid the study of the schema by myself and have an approximate idea of what I am dealing with quite quickly. Do you know of some tool that has this feature? EDIT: I was already using SQLite Database Browser but I really need the DB diagram a...

Tool for finding C-style Casts

Does anyone know of a tool that I can use to find explicit C-style casts in code? I am refactoring some C++ code and want to replace C-style casts where ever possible. An example C-style cast would be: Foo foo = (Foo) bar; In contrast examples of C++ style casts would be: Foo foo = static_cast<Foo>(bar); Foo foo = reinterpret_cast<...

Wpf tool kit datagrid DataGridCheckBoxColumn on_click event:

I want to get the selected rows, but selecteditems has only one row. I want get the all the checked item. I think I need to add event handler when the checkbox is clecked and then collect them all. How do I do this in a best way? ...

tool to find crawl all links on a website.

i'm looking for a tool that can give me a list of pages on a given website that uses querystring. ...

Need to analyze C# code to find unreferenced classes

Hi, I have legacy C# code and I am using Visual Studio 2008. I am looking for a tool, sort of code-analyzer that would say to me which class are not used and also some other useful information that might useful for code optimization. If there is exact duplicate please specify. Thank you. ...

PHP find .tpl files

Hi, I have some HTML errors in my output source code, coming from one of the .tpls. I'm wondering if there is a tool that is able to give me a list of .tpls that are used on the current page. I can't seem to find this error and the site isn't very well documented. I'm not the best PHP programmer, I'd be looking for an online resource or ...

Refactor file copy in Visual Studio?

Does Visual Studio / Resharper support this? By refactor copy I mean to be able to enter new class name in some dialog, and to have the tool do all the refactoring (renaming) for you. No Copy of ... file names, and no error upon having two classes with same name in the project. Netbeans does this out-of-the-box :( ...

Cross version line matching.

I'm considering how to do automatic bug tracking and as part of that I'm wondering what is available to match source code line numbers (or more accurate numbers mapped from instruction pointers via something like addr2line) in one version of a program to the same line in another. (Assume everything is in some kind of source control and i...

What command line build tools (like make) can I use with Mono C#?

I need to use C# on Mac, and I have Mono. What command line tools are for building purposes Mono/C#? Can I just use make? Or is there any tool for that just like Ant for Java? ...

Is the valid state domain of a program a regular language?

If you look at the call stack of a program and treat each return pointer as a token, what kind of automata is needed to build a recognizer for the valid states of the program? As a corollary, what kind of automata is needed to build a recognizer for a specific bug state? (Note: I'm only looking at the info that could be had from this f...

MS Query Analyzer / Management Studio replacement?

I've been using SQL Server since version 6.5 and I've always been a bit amazed at the fact that the tools seem to be targeted to DBAs rather than developers. I liked the simplicity and speed of the Query Analyzer for example, but hated the built-in editor, which was really no better than a syntax coloring-capable Notepad. Now that we hav...

CAFF creation on Windows (or Linux)

On OS X I use this command to convert a sound file to CAFF for iPhone. afconvert -f caff -d LEI16@44100 file.wav file.caf I need to do the same on a Windows box. Any clues? I'd even settle for a Linux version. ...

Are there any modeling tools that can visually generate jpa or sql queries?

Does anyone know of a tool like PowerArchitect or SquirrelSQL or maybe eclipse plugin that lets you also generate jpa/sql queries? Imagine you choosing your database, or your entity beans, and the modeling would reverse engineer your database/entity model, so that you could visually just choose the columns you wanted to select, and it w...

any tools of create kml string for google-maps-v3.

i want to generate some kml string to stroe into database .. and has any simply way to generate this string ? thanks ...