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.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Common Lisp. An elegant weapon. For a more ... civilized age. Also see: |
|||||
|
|
[Humour on]
I try to stay off old legacy code editors because of the learning curve ;)
[Actual answer]
I am pretty sure not everyone is using a QR-code editor like this one:
|
||||
|
|
|
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. |
||||
|
|
|
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. |
|||||
|
|
Graphviz as an aid for visually understanding complex dependencies among modules, classes, packages, etc. |
||||
|
|
|
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. |
||||
|
|
|
I used to use a PS2 Dev Kit back when I was doing console development.
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. |
|||||||||||||
|
|
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.) |
|||||
|
|
I use Paint for graphics. |
|||||||||
|
|
Brains. They shouldn't be rare, but judging from much of the code I've seen, they are. :-( |
||||
|
|
|
PowerBuilder IDE |
|||||
|
|
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+"-". |
||||
|
|
|
I use OllyDbg quite a bit for debugging, reverse-engineering, analyzing and tweaking assembly language code. |
||||
|
|
|
Internet Explorer 6.0 (Ok, it isn't rare, but it should be) |
|||||
|
|
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. |
||||
|
|
|
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:
|
||||
|
|
|
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). |
||||
|
|
|
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... |
||||
|
|
|
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 :) |
||||
|
|
|
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 - for example AWK for mass manipulation of text data (which tends to come up frequently in this job). |
||||
|
|
|
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). |
||||
|
|
|
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 |
||||
|
|
|
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. |
||||
|
|
|
I use WinHex and IDA Pro occasionally.
|
|||||
|
|
Great for finding concurrency issues in multithreaded or multitasked applications. |
||||
|
|
|
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. |
||||
|
|
|
SETL. Great for topological sorting and similar algorithms if you want to invoke them from shell scripts. Example (similar to unix tsort)
|
||||
|
|
|
I often need to implement communication protocols. DockLight is a great tool for testing and debugging communication. It targets serial communication (RS232,RS485), but it's also nice when doing TCP/UDP stuff. |
||||
|
|
|
Libero for generating Finite State Machines. And it never occurred to me, that AWK or Graphviz are supposed to be exotic... |
||||
|
|