vote up 96 vote down star
86

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

vote up 48 vote down

Holding down alt + dragging, in certain text editors, to select not only lines of code but also columns. This has definitely saved me hours of time.

link|flag
1  
This is a great tip! – bouvard Oct 15 '08 at 23:18
2  
@Martin Cote: Ctrl+V :-) – Jasper Bekkers Jun 23 at 6:37
show 10 more comments
vote up 63 vote down

Source control. I'm amazed at how many people don't use any.

link|flag
1  
this was in the original question, so I think it's assumed already. – DGM Oct 15 '08 at 4:25
show 4 more comments
vote up 1 vote down

Portable Apps, Linux Live CDs, and classes in C++ have all vastly improved my life.

link|flag
vote up 0 vote down

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

link|flag
vote up 3 vote down

Funky things like Dependency Inject or Test Driven Development.

link|flag
vote up 29 vote down

A family. My baby daughter rocks! And shes a good sleeper too!

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

Backups. Automated, versioned, tested, and useable backups.

link|flag
vote up 6 vote down

Uninterruptable Power Supply. Your hard drive data thanks you.

link|flag
vote up 5 vote down

A girlfriend that cooks for me while I am at stackoverflow.

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

Teach him Test Driven Development way of developing software.

link|flag
vote up 25 vote down

Firebug: didn't know I needed it, and sometimes wish I didn't need it anymore.

link|flag
vote up 7 vote down

A coffee grinder

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

A mocking framework, like Rhino Mocks, which allows you to work with mocked or stubbed instances while testing.

Without it Test First Development just wouldn't be the same.

link|flag
vote up 45 vote down

code & syntax highlighting and coloring in modern text editors and IDEs

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

Red squiggly lines under my syntax errors so I don't need to hit compile.

It's saved days of my life.

link|flag
vote up 1 vote down

Using a language that supports closures and functions as first class objects, if you've never used anything but a C derivative. These two language features make your code orders of magnitude more elegant. It can take a while to catch on to why they are nice, but much like source control, it's hard to go back once you have them.

link|flag
vote up 63 vote down

Touch typing.

Don't laugh, I've personally known several programmer who "hunted-and-pecked", claiming that they could do so just as quick as a touch typer. I say, BS. If you can't touch-type, you're gimping yourself.

There are some good free online typing programs. An hour a day for a couple weeks can double your typing speed, and nobody has to know you were ever a hunt-and-pecker.

link|flag
show 7 more comments
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 25 vote down

Generics - I love you.

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

MacBook's touchpad.

link|flag
vote up 5 vote down

Automated regression testing, preferably run nightly after the nightly build on the nightly build. Huge time saver and confidence booster.

link|flag
vote up 1 vote down

Make-file or now it is Ant-files i will have to learn by heart

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

Google
so that all that I need to know is just a URL away

link|flag
3  
"Google - making people on the Internet appear smarter since 1998" – Steven A. Lowe Oct 16 '08 at 3:35
vote up 3 vote down

Scripting I mean scripting in "scripting" languages. I used to write my scripts in C, and only realised the true power of scripting when a colleague introduced me to Python.

Since, then I have moved on to Scala, but the Python experience was an eye opener.

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

Understanding the end user.

There is no substitute for understanding.

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

A memory stick

link|flag
vote up 1 vote down

Cell phone.

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

Your Answer

Get an OpenID
or

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