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

prev 1 2 3 4 5
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 8 vote down

Regular Expressions. Many people doesn't know them.

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

Virtual Desktops.

Being able to have "groups" of windows (say, a browser window for testing and two code windows on desktop, then a browser window and a PDF viewer for docs on another, and then a group of email/calendaring apps...) is really damn useful.

It's like having an extra dimension; you can alt-tab to switch within the windows on one desktop, and then hit another key combo to switch to another desktop with its own self-contained group of apps.

  • Linux: Gnome, KDE, XFCE, Fluxbox, Enlightenment, twm... They all have it. :D
  • Windows: Virtuawin (beats the Windows Powertoys version hands-down.)
  • Mac: ... Any suggestions?
link|flag
show 2 more comments
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 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
vote up 3 vote down

wget - is there a better way to download things from the net?

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

WinGrep for searching quickly and efficiently through a codebase.

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

link|flag
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

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

vim, find and grep

link|flag
vote up 3 vote down

Life, mate. It's short and it's out there, so don't spend yours in front of a monitor (says the wise guy who's mostly done that).

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

A mock object tool. Specificaly Moq for .Net.

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.