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

I use:

Common Lisp/CLOS for programming - I was exposed to Lisp in the 1980's, been through ObjectPascal (MacApp), C/C++, Java, Perl, Python, etc. but I always return to Common Lisp because it's so much more productive.

Allegro Allegroserve/Webactions web server running under screen. I can connect to the running process and compile in new Common Lisp functions at any time.

LaTeX for documentation - I live in Emacs, I write code, mail, browse the web, and write documentation in Emacs.

PostScript for drawings. I used to "draw" pretty hairy illustrations in PostScript. Now I use more PGF/Tikz.

SystemVerilog/VHDL for living...

link|flag
vote up 6 vote down

I use OllyDbg quite a bit for debugging, reverse-engineering, analyzing and tweaking assembly language code.

link|flag
vote up 7 vote down

I use SciTE as a lightweight cross-platform text editor. It has one feature that I love very much - changing font size from the keyboard. It's very handy for me to set a small font for huge log files and a big font just by pressing Ctrl+"+", Ctrl+"-".

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

I use WinHex and IDA Pro occasionally.

  • WinHex to inspect disk images and (currently) to dissect Smart Card APDUs collected with an USB Sniffer.
  • IDA Pro to disassemble BIOSes and other low-level code such as boot loaders and other pre-boot software.
link|flag
1  
IDA pro is a very nice tool – Tom Leys Jun 21 at 8:03
vote up 7 vote down

Brains. They shouldn't be rare, but judging from much of the code I've seen, they are. :-(

link|flag
vote up 6 vote down

I don't feel entirely comfortable calling them 'rare', but I've installed packages from the gnuwin32 toolset as I need them, and as a result have pretty much the whole lot installed now. It seems to be unusual among my coworkers to use command-line tools but they are utterly brilliant for some problems - eg. awk for mass manipulation of text data (which tends to come up frequently in this job).

link|flag
vote up 13 vote down

I used to use a PS2 Dev Kit back when I was doing console development.

PS2 Dev Kit

It's basically the unholy marriage of a PlayStation 2 console and a PC running some ancient version of Red Hat Linux. It lets you download code onto the console and run it, and even step through it in a debugger. You don't actually interact with the Linux portion aside from a socket API that's very opaque. The only reason I know it runs Linux is that to upgrade its firmware you upload RPMs into its web interface.

When we were testing a game that had 2-on-2 network play, I actually had to have four of them on my desk with a bunch of TVs to display all the output.

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

Spin

Great for finding concurrency issues in multithreaded or multitasked applications.

link|flag
vote up 4 vote down

Screen Ruler is great for any kind of visual development where you want to count how many pixels high or wide something is.

Bare Tail is a 'tail' replacement for Windows that is great for monitoring log files. It's GUI-based and lets you assign filters to colorize log output (E.g. red text for Exceptions, light grey on white for debug output you want to ignore).

link|flag
vote up 3 vote down

Libero for generating Finite State Machines. And it never occurred to me, that awk or graphviz are supposed to be exotic...

link|flag
vote up 5 vote down

Of course, something I think is rare can actually be used by lot of programmers! Stuff I use and don't see my co-workers using:

  • SQuirreL SQL Client is still my tool of choice to access various databases, even after trying some others.

  • AutoHotkey isn't a very nice language (although it came from a long way) but it is very convenient to do a quick tool with GUI. I made an uninstall tool with it, a little form to fill a database table (using Oracle's command line tools), etc. Plus its management of hotkeys is just excellent.

  • Lot of other tools, like the Sysinternals' ones, Wireshark (not so rare, actually), etc.

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

graphviz as an aid for visually understanding complex dependencies among modules, classes, packages etc.

link|flag
show 1 more comment
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 5 vote down

I use Joe's own editor for quick and simple edits. I haven't met anyone else who uses it, although it seems to have a large user base.

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

awk - for lots of data processing tasks it is just the right level of abstraction - more powerful than sed, less work (and learning curve) than perl.

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

I use Richard Feynman.

Seriously. He used to advise that until you can explain something to a child, you don't really understand it. Exaggerated, but the principle is true.

If you cannot explain the "why" of your code to another person, you will be kicking yourself 6 months from now when you must maintain it. Or when the maintenance programmer breaks into your home with a knife clenched between his teeth.

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

Agent Ransack - for a grep-like tool with a nice UI on Windows - http://www.mythicsoft.com/agentransack/

and

CS-Diff - for a free Diff tool with a nice diff display - http://www.componentsoftware.com/products/CSDiff/index.htm

link|flag
show 5 more comments
vote up 5 vote down

Code generation with a twist -- I've got my own set of macros (Common Lisp) that generate all of my data access layer (stored procedures, DTOs,) output entirely in C# / VB.NET.

link|flag
vote up 14 vote down

I like to use UnxUtils for some good old Unix command-line tools on Windows. (Some people prefer cygwin, but that never did it for me.)

link|flag
1  
+1. These are native Win32 ports based on MSVCRT.DLL. On Windows these play nicely with native paths and therefore native windows tools. If I wan (for example) sed in a back-end win32 process, the UnixUtils one tends to be better than cygwin. – ConcernedOfTunbridgeWells Oct 4 '08 at 20:02
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 3 vote down

SETL.

Great for topological sorting and similar algorithms if you want to invoke them from shell scripts.

Example (similar to unix tsort)

tokens := [t in split(getfile(stdin), '[ \t\r\n]+') | t /= ''];
edges := {[tokens(i-1), tokens(i)]: i in {2, 4 .. #tokens}};
nodes := domain edges + range edges;
(while exists x in nodes | x notin range edges)
  print(x);
  nodes less:= x;
  edges lessf:= x;
end;
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 29 vote down

[Humour on] I try to stay off old legacy code editors because of the learning curve ;)
(From Steve Rowe's Blog.) [Humour off]

[Actual answer] I am pretty sure not everyone is using a QR-code editor like this one:

It is used to store addresses and URLs that may appear in magazines, on signs, buses, business cards or just about any object that users might need information about. Users with a camera phone equipped with the correct reader software can scan the image of the QR Code causing the phone's browser to launch and redirect to the programmed URL.

link|flag
vote up 15 vote down

I use Paint for graphics.

link|flag
4  
Paint.NET is not rare. Using Paint makes me feel sort of Amish. – MusiGenesis Oct 5 '08 at 23:18
show 3 more comments
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 8 vote down

PowerBuilder IDE

link|flag
show 5 more comments
vote up 5 vote down

I am using PL/Scheme to write procedures stored in PostgreSQL in Scheme. Most of my project is in Common Lisp, and Scheme allows me to minimize the cost of context switching. Of course, I would prefer to have Common Lisp as the PL, but nothing like that exists (yet, I hope). Curiously, it feels like Guile is a bit faster than PL/Python (though I don't have any real proofs for that).

link|flag
vote up 10 vote down

Internet Explorer 6.0

(Ok, it isn't rare, but it should be)

link|flag
3  
I find that w3m is pretty good too, as an alternative to Lynx. – jparanich Mar 30 at 22:41
show 3 more comments
vote up 1 vote down

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

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

Your Answer

Get an OpenID
or

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