vote up 5 vote down star
2

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:

flag

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

16 Answers

vote up 4 vote down check

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|flag
vote up 4 vote down

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|flag
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
vote up 2 vote down

Vim

Vim, my favorite editor

link|flag
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
vote up 2 vote down
  • StackOverflow
  • Google

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

  • Visual Studio
  • The Internet
link|flag
-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
vote up 2 vote down

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|flag
vote up 2 vote down
  • 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|flag
vote up 2 vote down

I'm quite fond of:

  1. .Net Reflector
  2. Sysinternals (a bunch of cool tools here)
link|flag
vote up 1 vote down

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

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down
- ANT
- Mylyn
- TortoiseSVN
- firebug (think console too!)
- TextMate
link|flag
vote up 0 vote down

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

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

link|flag
vote up 0 vote down

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

for web:

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Firebug. More than anything else.

link|flag

Your Answer

Get an OpenID
or

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