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

vote up 2 vote down

Reflection. Definately reflection. There is just no way I could do my current work without it.

link|flag
vote up 2 vote down

GNU Screen. I don't know how I worked without it before I found it. It allows me to use all the other suggestions that were made here in one screen session.

link|flag
vote up 2 vote down

Without a doubt, it's the Internet. Those who have always known it have no idea what an impact this has made on everything.

link|flag
vote up 2 vote down

for me also...

  1. JetBrains tools (ReSharper, dotTrace)
  2. GhostDoc, (VS.NET Addin) (the little push I sometimes need)
  3. Expresso, great regex tool
  4. Enso, program launcher
  5. Google Reader
  6. VirtualPC / VirtualBox
  7. and FreeMind, to keep me organized

EDIT

forgot one

  1. GridMove

EDIT 2

some tools I place on my USB stick. (link / link)

always my mindmaps with me...

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

Cheat sheets!

Command-line access to cheat sheets using a Ruby gem: http://cheat.errtheblog.com/ Heck, you can even do cheat cheat.

Here are some awesome networking cheat sheets from Packetlife: http://packetlife.net/cheatsheets/

I'm currently in the process of collecting all the best sheets and printing them into a binder format.

link|flag
vote up 2 vote down

A Staging Server: I can't imaging working on a web app then deploying into production without staging it first in the same environment as the production server.

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

GIT. I didn't have any idea how bad svn was until I came to know the powerful ways of git. (though I think any -distributed- version control system might work).

link|flag
vote up 1 vote down

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

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

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

link|flag
vote up 1 vote down

Cell phone.

link|flag
vote up 1 vote down

Two tools:

  1. Good Database schema compare tool (Great for generating change scripts on legacy dbs)
  2. Tool to generate Insert Scripts (Lets you annihilate your dev environemnt and restore at any time via query analyzer)
link|flag
vote up 1 vote down

Reflector!!!!!!!

link|flag
vote up 1 vote down

Separate compilation. Gone are the days of when I used a BASIC compiler which took several minutes to re-parse a large program after editing one line of code.

link|flag
vote up 1 vote down

Maven. It makes integrating the use of various tools into the build process so easy.

Code Coverage Reports (cobertura).

link|flag
vote up 1 vote down

Domain Driven Design

link|flag
vote up 1 vote down

Going backwards in time:

CruiseControl.NET... Resharper... NUnit... Reflector... Intellisense... Struts... Debuggable JSP's... Java... an IDE... Windows... XWindows...

link|flag
vote up 1 vote down

Automated nightly build system, saved us the time of a 6+ hour manual build process down to a 15min automated build

link|flag
vote up 1 vote down

two monitors. definitely two monitors.

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

stackoverflow :)

link|flag
vote up 1 vote down

my six monitors, .NET, Edit and Continue, unit tests, and a STOP button that actually stops the page loading (Thanks, IE8!).

link|flag
vote up 1 vote down

Switching to the Dvorak keyboard layout. It increased my typing speed, and decreased my fatigue.

link|flag
vote up 1 vote down

Google, absolutely that best thing ever happened.

link|flag
vote up 1 vote down

Unit Tests and Lean software practices generally.

Knowing I have comprehensive automated test coverage lets me sleep at night.

link|flag
vote up 1 vote down

Development, integration and test environments that are identical in software configuration to the live environment to which code will be deploy, as well as a database with a large enough dataset to be representative of the live environnment.

link|flag
vote up 1 vote down

Versioning file system. Having worked on a VAX many years ago I'm still somewhat surprised that it's not a standard feature of modern operating systems.

link|flag
vote up 1 vote down

A (dual) monitor that can be rotated by 90deg

No longer scrolling like crazy all over the source code, and can see a reasonable number of lines at a time

link|flag
vote up 1 vote down

In Visual Studio, I use code snippets all the time. For example, typing "mbox" then Tab, will auto-complete a MessageBox.Show() for you. There are several others, and it's easy to create your own.

Also, I use the right-click "Surround with" option to surround a block of code in a try-catch block or something similar.

I also use the "Extract method" on a block of code to create a private method and enhance the readability of the code.

I know a lot of programmers that aren't aware of them, or are aware of them, but just never used or got used to them. They're a great time-saver!

link|flag
vote up 1 vote down

People skills. Now I can talk my managers out of doing thing(s) that make absolutely no sense without having to write a single line of code, and that saves me a huge amount of time.

link|flag

Your Answer

Get an OpenID
or

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