up vote 5 down vote favorite
2
share [g+] share [fb]

On top of my head, especially for C/Linux developer:

Is there some tool/script you couldn't work without, but that you feel others don't know so much?

For instance, I just found:

link|improve this question

75% accept rate
If you're going to vote it down, at least add a comment about why. – UnhipGlint Dec 18 '08 at 3:00
thanks UnhipGlint, I keep rephrasing to make it look more like a question :) – elmarco Dec 18 '08 at 3:01
ack was a new one for me, thanks! – kauppi Dec 18 '08 at 6:58
feedback

16 Answers

up vote 4 down vote accepted

I don't use it that often, but the tool with the highest ratio of awesomeness to being little known has to be dot, which is the tool for drawing directed graphs that is part of the AT&T Graph Visualization suite. A nice example output is their Unix family tree.

link|improve this answer
feedback

On Windows or Linux:

  1. grep, without a doubt
  2. tail
  3. vim

On Windows (and Linux, Solaris), XMLStarlet

I realize that grep and tail are well-known, but it amazes me how many people think it's magic when you use either one of them. Same thing with Vim. I'm hardly a power user, but I can open it up and have a small document complete before MS Word would even open.

link|improve this answer
tail -f -n 0 log.file, do your dirty deed and check what went wrong. Wow. – Matthew Scharley Dec 18 '08 at 4:24
Get in the habit of tail -F instead of tail -f, -F follows log files even after rotation. – derobert Dec 18 '08 at 5:42
feedback

Vim

Vim, my favorite editor

link|improve this answer
That's only small in comparison to EMACS, so that doesn't really count! – derobert Dec 18 '08 at 5:40
Yeah, only small, elegant and useful utilities, Emacs is a nice operating system, but lacks a good editor... LOL – CMS Dec 18 '08 at 15:08
feedback
  • StackOverflow
  • Google

And my other two favourites are too large to be considered small :P

  • Visual Studio
  • The Internet
link|improve this answer
-1 for 'duh' answer. i must be in a bad mood. – Dustin Getz Dec 18 '08 at 6:06
Since the question was edited, my answer isn't as relevant any more as everyone knows about them...it's a little unfair for penalising me for an edited question. But c'est la vie I suppose. – BenAlabaster Dec 18 '08 at 6:10
feedback

It's a language not a tool, but it is small and not yet well known: the programming language Lua. I can't live without it and it is gradually displacing my sh, ksh, awk, and perl scripts... One mark of genius: the escape character for string-search patterns is different from the escape character for quoted strings. No more trying to make sense of legions of backslashes!

link|improve this answer
feedback
  • git has had such a profound impact on my workflow that I do not want to code without it
  • firebug is a must for web development
  • standard command-line utilities/functions: grep, find, locate, tail, sed, awk, pushd, popd
  • custom TextMate bundle snippets, TextMate's bundle editor is superb even though TextMate lacks some important vi and emacs capabilities (like split buffers)
  • regular expressions - people need to learn how-to use regexps, period
link|improve this answer
feedback

I'm quite fond of:

  1. .Net Reflector
  2. Sysinternals (a bunch of cool tools here)
link|improve this answer
feedback

The python interactive interpreter and its pumped up variant iPython are the tools that have enhanced my programming productivity like no other.

Being able to experiment with new code on the fly and inspect objects, classes, and modules in any way you want interactively is simply awesome.

link|improve this answer
feedback

Does know one depend on Putty ?, i really dunno what i would do with out it

link|improve this answer
feedback

Most have been listed here already so I won't repeat. Here are a couple new ones.

LINQ Pad

Reflector

Sticky Notes VS Add-In

psValidation (My own Validation Class Library, Mostly RegEx)

link|improve this answer
feedback
- ANT
- Mylyn
- TortoiseSVN
- firebug (think console too!)
- TextMate
link|improve this answer
feedback

My faves are Notepad++, which I use for EVERYTHING that's not wrapped in a visual studio project, and a small macro in Visual studio that turns a c# variable declaration into a basic property. Both are simple, but oh so very useful!

link|improve this answer
feedback

Vim and PrintFile. All PrintFile does is print text and PostScript files, any which way I want them (including cut-and-paste).

link|improve this answer
feedback

I need the most tools when coding for web, anything else usually just a text editor.

for web:

link|improve this answer
feedback

Already listed but I must mention TextMate. I use Mercurial or Hg on a daily basis.

link|improve this answer
feedback

Firebug. More than anything else.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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