Tagged Questions

The term refers to relatively simple programs or applications that can be combined together to accomplish a task. Developers use them to create, debug, maintain, or otherwise support other programs and applications.

learn more… | top users | synonyms (1)

976
votes
123answers
208k views

What IDE to use for Python? [closed]

Caution! This ancient question is from the early days of Stack Overflow, and while we recognize its historical significance and have thus chosen to keep it around, please realize that if a ...
190
votes
49answers
86k views

What's the best UML diagramming tool?

I'm trying to choose a tool for creating UML diagrams of all flavours. Usability is a major criteria for me, but I'd still take more power with a steeper learning curve and be happy. Free (as in beer) ...
147
votes
38answers
121k views

What can I use as a Notepad++ alternative in Linux (Ubuntu)?

I got addicted to Notepad++ on Windows and I've recently moved to Ubuntu. I'm missing a tool as such.
98
votes
77answers
13k views
89
votes
46answers
5k views

How do you track your hours? [closed]

Every programming job I've had has required me to track my hours, entering them into a system once a week. I've never been good at it. For the past few years, I've been running Timesnapper* on all my ...
87
votes
15answers
57k views

Free XML Formatting tool [closed]

Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly? Thanks Edit ~ I am using XML Notepad on Windows ...
83
votes
72answers
7k views

Must haves for developers office [closed]

We are designing our office right now and want to know what stuff you guys really care about or started loving in your office. So - What are your must-haves for a developers office? What things ...
78
votes
51answers
10k views

Do you have any recommended plugins for Eclipse?

Any great plugins out there, free or otherwise?
78
votes
51answers
19k views

Is there an IDE that provides code completion for Python

I am quite fond of the Intellisense code completion baked into Microsoft Visual Studio. I find that I only type 2 to 4 characters of any given keyword which drasticaly speeds up my coding. Now that I ...
74
votes
16answers
63k views

Checkout one file from Subversion

"It is not possible to check out a single file. The finest level of checkouts you can do is at the directory level." How do I get around this issue when using Subversion? We have this folder in ...
74
votes
10answers
7k views

Online Peer Code Review? [closed]

For people who work on very small teams, or by themselves, or on teams where they are by far the best developer and have a need to learn from someone better than them, are there any online ...
65
votes
35answers
4k views

Tools for faster, better web development

Over the years most web developers will have built an arsenal of tools or "tools of the trade". Recently I discovered rsync and I am surprised how I managed to live without it all these years. What ...
65
votes
10answers
16k views

Code Coverage for C#/.NET

I wonder what options there are for .net (or C# specifically) Code Coverage, especially in the Lower Priced segment? NCover Seems to be very popular and looks quite good Supports statement coverage ...
65
votes
33answers
39k views

What is the best web prototyping tool?

What is the best tool to create a web application interface prototype?
64
votes
14answers
35k views

What's the best visual merge tool for Git?

Title says it. What's the best tool for viewing and editing a merge in Git? I'd like to get a 3-way merge view, with "mine", "theirs" and "output" in separate panels. Also, instructions for invoking ...
62
votes
84answers
6k views

Which programming tools do you pay for? [closed]

With so many open source (or simply freely available) alternatives for nearly every programming tool category, which software do you (or your boss) pay for and why? Is the decision based on saving ...
61
votes
29answers
90k views

Is there a good, free Python IDE for Windows?

Other than Notepad++, what text editor do you use to program in Windows? Is there a good, free Python IDE for Windows? I really need some good debugging abilities.
59
votes
68answers
5k views

Software worth buying

What software products do you use at work that cost money and are totally worth it? Anything from dirt cheap (regex buddy) to expensive (Rational Purify). I'm at windows shop. My manager asked me ...
58
votes
17answers
22k views

How to find unused/dead code in java projects

What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no longer in use. ...
57
votes
30answers
16k views

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 ...
57
votes
43answers
3k views

What are the best free software that helps you become more productive or helps you code?

What are the best free software that helps you become more productive or helps you code?
54
votes
11answers
7k views

Tools for Generating Mock Data?

I'm looking for recommendations of a good, free tool for generating sample data for the purpose of loading into test databases. By analogy, something that produces "lorem ipsum" text for any RDBMS. ...
50
votes
17answers
11k views

Is there anything like RegexBuddy in the open source world?

I've used RegexBuddy several times and found it to be a really useful tool. Is there anything like it in the open source world, preferably something that is platform agnostic? (the fact that ...
48
votes
14answers
45k views

Any online xml formatter or formatter in free text editor?

Any online xml formatters? Ones that properly indent the tags. Or any free Windows text editor which has a built-in xml formatter?
48
votes
16answers
28k views

What are some free and/or open source Requirements Management tools?

I am looking for free and/or open source requirements management tools. Does anyone have any experience with these tools and can recommend one or two? Thanks.
48
votes
8answers
19k views

Eclipse : Class file name must end with .class exception in Java Search

I was hoping someone could help me out with a problem I'm having using the java search function in Eclipse on a particular project. When using the java search on one particular project, I get an ...
47
votes
8answers
11k views

How to debug in Django, the good way?

So, I started learning to code in Python and later Django. The first times it was hard looking at tracebacks and actually figure out what I did wrong and where the syntax error was. Some time has ...
47
votes
6answers
11k views

HOWTO: Fix Python Indentation

I have some python code that have inconsistent indentation, there is a lot of mixture of tabs and spaces to make the matter even worse even space indentation is not preserve. The code works as ...
45
votes
10answers
8k views

What tools do distributed programmers lack?

I have a dream to improve the world of distributed programming :) In particular, I'm feeling a lack of necessary tools for debugging, monitoring, understanding and visualizing the behavior of ...
45
votes
9answers
4k views

Semantic Diff Utilities

I'm trying to find some good examples of semantic diff/merge utilities. The traditional paradigm of comparing source code files works by comparing lines and characters.. but are there any utilities ...
43
votes
13answers
8k views

What code analysis tools do you use for your Java projects?

What code analysis tools do you use on your Java projects? I am interested in all kinds static code analysis tools (FindBugs, PMD, and any others) code coverage tools (Cobertura, Emma, and any ...
42
votes
29answers
4k views

What is the reason for the rise of programmers using Apple machines?

I noticed a rise in the number of developers (mostly doing web development) using Apple machines. Does Mac OS offer a better environment for programming or is it because of the hardware? What are ...
42
votes
35answers
10k views

How do you detect/avoid Memory leaks in your (Unmanaged) code?

In unmanaged C/C++ code, what are the best practices to detect memory leaks? And coding guidelines to avoid? (As if it's that simple ;) We have used a bit of a silly way in the past: having a counter ...
41
votes
16answers
13k views

What's the best three-way merge tool?

Subversion, Git, Mercurial and others support three-way merges (combining mine, theirs, and the "base" revision) and support graphical tools to resolve conflicts. What tool do you use? Windows, OSX, ...
41
votes
11answers
16k views

A free tool to check C/C++ source code against a set of coding standards?

It looks quite easy to find such a tool for Java (Checkstyle, JCSC), but I can't seem to find one for C/C++. I am not looking for a lint-like static code analyzer, I only would like to check against ...
41
votes
9answers
15k views

AnkhSVN versus VisualSVN

I currently use AnkhSVN to integrate subversion into Visual Studio. Is there any reason I should switch to VisualSVN? AnkhSVN is free (in more than one sense of the word) while VisualSVN costs $50. ...
40
votes
3answers
3k views

See :hover state in Chrome Developer Tools

I want to see the :hover style for an anchor I'm hovering on in Chrome. In Firebug, there's a Style dropdown that allows me to select the different states for an element. I can't seem to find anything ...
40
votes
17answers
2k views

Tools to identify code duplications

I have being reading and tracking some questions on code reuse and I have this question: Are there any tools to identify duplicate or similar code? I have googled this a while ago and found nothing ...
39
votes
7answers
14k views

Network tools that simulate slow network connection

I would like to visually evaluate web pages response time for several Internet connections types (DSL, Cable, T1, dial-up etc.) while my browser and web server are on the same LAN or even on the same ...
38
votes
6answers
30k views

Run MySQLDump without Locking Tables

I want to copy a live production database into my local development database. Is there a way to do this without locking the production database? I'm currently using: mysqldump -u root ...
37
votes
20answers
4k views

Useful tools for working with Subversion

There are a number of great tools out there which integrate with Subversion and do some really neat things. I’ve tried a number of them but ultimately only tend to use the following on a regular ...
37
votes
9answers
20k views

Best free 3-Way Merge Tool for Windows

I'm looking for a good free 3-way Merge/Diff tool for Windows. I know of KDiff3. But I was looking for further recommendations.
36
votes
3answers
12k views

Is there a “free” alternative to .NET Reflector? [closed]

Possible Duplicate: Something Better than .NET Reflector? Possible Duplicate: Open Source Alternatives to Reflector? I don't consider this to be a duplicate, as the contact of ...
36
votes
5answers
11k views

reStructuredText tool support

I am a great fan of reStructuredText, however the tools that support it are scattered all over the Internet. The official tool list is incomplete and/or outdated, and can be updated only via commit ...
36
votes
6answers
8k views

Using Emacs to recursively find and replace in text files not already open

As a follow-up to my question at http://stackoverflow.com/questions/269812/how-to-quickly-get-started-at-using-and-learning-emacs It's trying to find out how to do something like this which should be ...
36
votes
14answers
18k views

Clojure editor/IDE recommendations on Mac OS X

I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on Mac OS X? Update 2009-09-23: The Clojure space has changed tremendously since I ...
35
votes
28answers
6k views

Regex Testing Tools

I know of The Regulator for testing regular expressions. And there's also RegExr for testing regular expressions as well. Does anyone know of other regex testing tools? Do any of these tools allow ...
35
votes
21answers
9k views

What's your favorite profiling tool (for C++)

So far, I've only used Rational Quantify. I've heard great things about Intel's VTune, but have never tried it! Edit: I'm mostly looking for software that will instrument the code, as I guess that's ...
34
votes
12answers
4k views

What tools do you use for WPF development?

What tools beside Visual Studio's Cider do you use? Have you succeed in using something from Microsoft Expression product family? EDIT: Here are revealed tools: Snoop Mole debugger visualizer ...
34
votes
19answers
1k views

What considerations should be made before reinventing the wheel? [closed]

All too often I see other people reinventing the wheel, and when I do, I wonder what factors played into their decision to do so. There are times I reinvent the wheel consciously, merely because I ...

1 2 3 4 5 58