vote up 97 vote down star
89

Take a programmer that has never used source control, show them what it does, and their eyes light up... the benefits are obvious but until they actually see it most people had never considered the existence of such a tool.

What other such things exist? Tools or approaches or techniques that aren't obvious before you encounter them, but once seen have obvious value. Things that are likely so ingrained in the way you work that it's hard to think of working without them, things almost embarrassing to bring up because you expect the other person to say "duh, that's obvious!"

No matter how petty something seems there is a chance that other people don't know about it yet; I'd like to get an idea on what things I'm missing simply because I never thought of them.

flag
show 4 more comments

150 Answers

prev 1 2 3 4 5
vote up 1 vote down

WinGrep for searching quickly and efficiently through a codebase.

http://www.wingrep.com/download.htm

link|flag
vote up 1 vote down

In all honesty, DIV-Based CSS Layouts. I fought tooth-and-nail for years, and continued to tell myself "It's okay, tables work with little effort, nothing wrong with using them."

I am so thankful I stopped being so apathetic and lazy.

link|flag
vote up 1 vote down
  • Firebug
  • A Macintosh computer instead of a windows pc
  • Eclipse ide
  • SVN, Version control
  • jAvaScript librarys like Scriptaculous and prototype
  • a cellphone with internet
  • a webCam with a motion sensor
link|flag
vote up 1 vote down

IntelliSense, or any similar auto-completion mechanism.

It is absolutely staggering how many IDEs don't have this, even though Visual Studio demonstrates really nicely how useful it is and how much time it can save.

Unfortunately you can't have IntelliSense in a dynamically-typed language.

link|flag
vote up 1 vote down

a KVM switch for handling 2 computers or more at the same time.

link|flag
vote up 1 vote down

That totally happened to me with source control! Why they never taught me that in college is beyond me! Actually they started teaching it the year after me.

Similar to the question, but on a little different plane...

i told my co-worker that i hated the second or two it takes for new tabs to load in IE and that was the biggest reason why i preferred Firefox. He said now that i've said that he's started to notice it and it bugs him too.

link|flag
vote up 1 vote down

A mock object tool. Specificaly Moq for .Net.

link|flag
vote up 0 vote down

I second the suggestion of a Continuous Integration server. Particularly if you use something like Hudson, since you can graph all sorts of interesting data (test numbers, code coverage scores, static analysis) over time.

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

FullShot9 for putting screen shots of only the areas on code and forms that I am referring to into my documentation and bug reports.

link|flag
vote up 0 vote down

Finger-Print reader for authentication on a notebook ! Wow !!

link|flag
vote up 0 vote down

Textmate bundles. E uses them now too, so I can develop on Mac and PC using relatively light-weight and easy-to-understand IDEs that are very versatile.

link|flag
vote up 0 vote down

Third party tools that make your job easier / more productive.

For example I work with sql server a lot and there are some great intelli-sense and comparison tools out there. I can compare and sync schemas and data. When I show these to other developers they often turn green with envy.

The tools alone save me hours upon hours a week.

link|flag
vote up 0 vote down

lex and yacc for skimming through context free data (of any type, be it languages or structured data)

link|flag
vote up 0 vote down

By the way, I'm not answering this question per se, but for anyone that doesn't know about source control (as mentioned in the post), here is a great introduction: http://www.ericsink.com/scm/source_control.html

link|flag
vote up 0 vote down

A tool to check memory usage (like valgrind, purify or bounds checker). These have been the key to solving some pretty nasty bugs in the past. Because reading through thousands of lines of code looking for that wretched memory corrupting code is not my idea of fun.

link|flag
vote up 0 vote down

Capistrano. Knowing that I can run deploy:rollback if anything fails and also forcing tests to run before deployment is extremely useful. It also means no matter how complicated deployment of a project is, anyone is able to do it since it only requires a single command.

link|flag
vote up 0 vote down

A second screen

For developping and testing and read the documentation, plus check e-mails once a while...

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

Continious integration...CC.NET

link|flag
vote up 0 vote down

GoF book and the concept of design patterns as such. I think I never really understood OOP until I read this book. Patterns helped me to take a broader look at my programs.

When you start programming, you think of your code in terms of really low-level things, such as vars and loops. Then you learn functions and start using them (I can remember times when I was about 10 and was eager to write my next BASIC program with subroutine). Even later you meet the classes — and at first it seemes to be the highest level of abstraction. And then you meet the patterns.

For me it was like driving to the top of the hill — when you reach it thinking the road is just over, you suddenly see the whole world ahead.

link|flag
vote up 0 vote down

A laptop, Intellisense, dual monitors, teammates, my local developer community, Resharper, Firebug, WinMerge, Subversion, Google, ice cream, and beer.

And the minute I can't add to this list is the minute I've lost the will to live.

Great question.

link|flag
vote up 0 vote down

For anyone with multiple monitors or widescreens, a window management program is a must. Try WinSplit Revolution for starters.

link|flag
vote up 0 vote down
  • SysInternals
  • Reflector
  • Managed Stack Explorer
  • Ghostdoc
  • Notepad++
link|flag
vote up 0 vote down

EJB3...

Death to deployment descriptors! Long live annotations!

Oh, and Java annotations, too. Never saw the need until EJB3 showed me the light. Of course, having done EJB3 annotations for a while, I still see the need for deployment descriptors (don't put host names in source code - that's bad 'um kay?). But the annotations sure makes ORM constructs easier to deal with.

link|flag
vote up 0 vote down

ORM tools. I remember going into a project (early days) thinking I would have to write classes for all entities manually, and then finding out about code generating ORM tools. Needless to say, it saved considerable time and effort.

link|flag
vote up 0 vote down

A living ornitorynx. I am sure none of you is able to realise the amazing benefit of coding near this incredible gift of god. No ?

link|flag
vote up 0 vote down

Resharper Proberbly one of the most useful tools I have ever used. Makes my coding experience in Visual Studio so much more pleasent.

link|flag
vote up 0 vote down

Assembler.

link|flag
vote up 0 vote down

A complete continuous integration environment that performs a rich set unit and system tests.

Those 'quick fixes' can cause significant damage if there's only quick testing.

link|flag
vote up 0 vote down

Object Oriented Programming for code reuse!

link|flag
vote up 0 vote down

in VIm you can apply a regexp or any command based on another regexp.

e.g.

:/head/,/\/head/s/google.com/yahoo.com/
 ^^^^^^ first regexp. start
       ^ separator
        ^^^^^^^^ second regexp, ends here
                ^ command. substitute.
                 ^^^^^^^^^^^^^^^^^^^^^^ the regexp.
link|flag
prev 1 2 3 4 5

Your Answer

Get an OpenID
or

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