vote up 19 vote down star
11

What tools do you use that may be considered rare in that aspect that you have only seen a few people use it? It may be any tool that may be valuable for programmers.

I myself use UPX on occasions.

flag
show 6 more comments

61 Answers

vote up 2 vote down

I use an incremental copy program of my own invention on a daily basis and can't figure out why I'm the only one thinks its essential. (That's why I wrote my own: Nobody else seems to have one that works exactly like I need.)

It's like directory diff program, comparing a source and destination directory and showing me which files are newer /older and of different size. It helps me to incrementally copy files, ignoring unchanged files, and preventing me from unintentionally overwriting newer files with older ones.

link|flag
show 8 more comments
vote up 2 vote down

Com0Com for creating connected virtual serial ports. I can fire up two VMs and use com0com on the host to connect the VM's serial ports together. Great way to test/debug serial port applications all on my workstation without having to break out any hardware.

link|flag
vote up 2 vote down

XSLT. Most people don't realise it's Turing complete. You can do some clever things transforming Ant build files and generating XML configuration files, and that sort of thing. Nicest thing I did was generating GraphML from an XML version control log.

link|flag
show 4 more comments
vote up 2 vote down

Unfortunately, my company uses Lotus Notes, and I find myself using Lotus Domino Designer quite a bit.

link|flag
1  
my condolences, sir – Jeff Atwood Sep 5 at 14:46
1  
This its not rare, its ugly – Rodrigo Sep 5 at 15:01
vote up 2 vote down

I used to use "cdecl", a command line tool capable of turning very complex C type declarations into English language descriptions (unsigned char** foo == "A pointer to another pointer which points at unsigned characters"). It could also go the other way, tho I never used that part.

link|flag
vote up 1 vote down

Once upon a time I had to use Avenue, finding later her son, AVPython.

link|flag
vote up 1 vote down

We have a part of our build script that is written using AWK / SED to generate some static content pages for our application. There is talk of migrating this to Ruby/ERB but it just hasn't happened.

link|flag
vote up 1 vote down

I am currently writing an interpreter for a DSL we are using, the parser is written using QLALR a parser generator

link|flag
vote up 1 vote down

I use xfig for diagram drawing, though mostly not for development but for articles preparation.

link|flag
vote up 1 vote down

Script#

link|flag
vote up 1 vote down

I do code from time to time some snippets in Ada. It's a very nice language.

link|flag
vote up 1 vote down

Cygwin, Dia, joe - not shocking.

Out of the ordinary: Free Pascal using the (Turbo Pascal-like) textmode IDE for "scripting" (quick throwaway programming).

link|flag
vote up 1 vote down

I use R for statistics.

link|flag
vote up 1 vote down

[HumorMode=On] Brains?

link|flag
vote up 1 vote down

I use a program transformation engine call the DMS Software Reengineering Toolkit capable of specifying programming langauges, and custom program analysis, and mass program changes. I use DMS daily to define/extend the syntax and semantics of various programming langauges, and to build and test tools based on DMS.

Such tools include test coverage, profiling, code obfuscation, duplicated/dead code detection, lanaguage translation, static analysis, ...

DMS is designed so others can do this too.

[Full disclosure: I'm the architect].

link|flag
vote up 0 vote down

Objconv

I use it to translate object file compiled with GCC to the VS.NET C++ world. Also works great help when porting GCC inline-assembler to VS.NET (It does the ATT style to Intel style).

link|flag
show 1 more comment
vote up 0 vote down

One rare tool I have used is Ebase Designer and Ebase Application server which is used for building electronic form applications. I have only ever seen it used in UK local government though I know some private sector companies use it.

It's a great tool for chucking together an online form quickly, though you never see any job listings that want this as a skill.

link|flag
vote up 0 vote down

For printing out arbitrary text files in multicolumn compressed text, I find that PrintFile is useful and flexible. It does PostScript files nicely too.

link|flag
vote up 0 vote down

Pixie - an 8kb color picker.

link|flag
vote up 0 vote down

ZTreeWin file/directory manager for Windows. Very useful and very easy to use, there is a menu which shows the keys for various commands. I don't understand why more people don't know about it or use it, it's not free but it is inexpensive.

link|flag
vote up 0 vote down

I use Microfocus Cobol 3.

link|flag
vote up 0 vote down

ZtreeWin file manager too - never could warm up to Norton Commander, even in the old DOS days :)

Plus Araxis Merge - a powerful two- or three-way file (contents) AND directory differ and merger - one of the few I know that can diff an ANSI and a UTF-8/UTF-16 file and even make changes to both - excellent stuff, highly recommended.

Cheers! Marc

link|flag
vote up 0 vote down

010 Editor whenever I'm doing protocol design or working with binary file formats

link|flag
vote up 0 vote down

gcov for code coverage of c/c++ code

Some time ago I used the KDE Source Code Checker (http://www.englishbreakfastnetwork.org/krazy/) to validate my own Qt-Code.

link|flag
vote up 0 vote down

I use REALbasic for a lot of stuff. Most developers I talked to have never heard of it, so I guess that qualifies it as rare.

link|flag
show 1 more comment
vote up 0 vote down

AppMaker (the original Mac programming tool for drawing interfaces and generating code).

I'm pretty sure I"m one of the few people left on the planet still using it, either for porting code I import from Mac resources or working on legacy AppMaker-based GUIs. I'm in the middle of a classic Mac to WPF rewrite at present, using AppMaker on an old Mac to get the UI regenerated into clean XML.

link|flag
show 2 more comments
vote up 0 vote down

XML Explorer. Lightweight XML file viewer (.NET/Windows only). Includes copying of formatted XML data, evaluation of XPath expressions, and XSD schema validation.

link|flag
vote up 0 vote down

I use Far Manager (a text mode file manager for Windows) a lot. Perfect for creating prototypes in Ruby and any other language that doesn't need a compiler.

link|flag
show 2 more comments
vote up 0 vote down

JScript Debug, for tracing JavaScript execution in Internet Explorer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.