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

1 2 3 next
vote up 31 vote down check

Common Lisp.

An elegant weapon. For a more ... civilized age.

Also see:

link|flag
7  
Just so that nobody missed the reference: xkcd.com/297 – ojrac Oct 23 '08 at 21:56
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

classdump is a very useful tool, for inspecting closed source objective-c frameworks. You can figure out much of the same information using the builtin otool utility, but classdump provides a more convenient interface.

hfsdebug a similarly useful tool for exploring HFS+ filesystems.

link|flag
vote up 0 vote down

JScript Debug, for tracing JavaScript execution in Internet Explorer.

link|flag
vote up 1 vote down

[HumorMode=On] Brains?

link|flag
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 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 1 vote down

I use R for statistics.

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 3 vote down

Sadly, common sense.

link|flag
vote up 4 vote down

Smalltalk ! (Squeak, GNU Smalltalk, the free edition of Cincom VisualWorks, but mostly Pharo in practice).

Not as old a language as Lisp, but quite fun too :)

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 1 vote down

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

link|flag
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

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 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 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 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 0 vote down

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

link|flag
vote up 14 vote down

I use that rarest and most precious of tools - time.

Sadly, one all too often sees developers jumping right in to coding milliseconds after getting an assignment.h

I would guess 70%+ of the time I spend on a program is up front just ruminating, cogitating, and percolating, with an occasional snippet of code to fiddle with something I'm unsure of.

Makes managers real nervous.

It's not until I know EXACTLY how things are going to be laid out, and KNOW it is the way to go, do I start coding in earnest.

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

http://www.tu-dresden.de/zih/vampirtrace for tracking down performance problems (sequential,threading,MPI)

link|flag
vote up 1 vote down

Script#

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

I use Microfocus Cobol 3.

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 1 vote down

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

link|flag
vote up 0 vote down

Pixie - an 8kb color picker.

link|flag
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 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
1 2 3 next

Your Answer

Get an OpenID
or

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