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

Cygwin. All the power of the Linux command prompt and associated tools for your Windows systems. If you know some basic bash commands there are a lot of things you can do with a one-line command that would be a real pain to do manually in the GUI.

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

Launchy: The Open Source Keystroke Launcher

I can never go back to using the Start menu again...

link|flag
vote up 11 vote down

Understanding the end user.

There is no substitute for understanding.

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

I keep coding notes. A library of code snippets + text about coding minutiae.

As a senior .Net web developer, I just have too many details to remember in too many languages -- C#, VB, HTML, CSS, SQL, JavaScript and on and on.

I can instantly find the SQL using ROW_NUMBER for paging data, the syntax for applying a regex in JavaScript, or the steps for deploying a web app to IIS, along with my own comments and troubleshooting tips.

Since I've been keeping notes for a decade now, I can find information about older technologies like classic ASP, SQL Server 7, or VB6 -- handy when you're called in to read the old code for an upgrade.

I refer to my own dogpile of notes before going to Google. The particular software I use is InfoSelect (www.miclog.com, I have no affiliation with them). It's like writing everything you know on 3x5 index cards and then being able to search their text. I believe you can also use OneNote for this; no doubt there are many others.

link|flag
vote up 8 vote down

A memory stick

link|flag
vote up 8 vote down

Regular Expressions. Many people doesn't know them.

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

IM and IRC. At this moment there are 207 people in the ##CSharp chat room in FreeNode, always about ten who are active at any time, and always two or three who are willing to help or discuss technical issues and ideas with you about C#.

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

A coffee grinder

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

Intellisense

link|flag
vote up 7 vote down

Coworkers!

I left my job to do a solo software startup project and by far, by a million miles, the thing that I miss most is having smart people around me. This is not only true in the sense that our coworkers make us smarter, but they also help us stay sane.

twitch twitch

So next time you think you can do it better by yourself, really examine all of the benefits of being surrounded by smart folks. I don't regret my decision, but I can't wait to hire someone!

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

A great revolution for me was the discovery of delicious.com

It has become an every day tool, completely integrated in my browsers as plug-ins, through which I discover and find pertinent techniques, white papers, tutorials, tools for subjects I'm interested in. The fact, that you can also browse bookmarks saved by other people on subjects of your interest is a related amazing technology-watch feature that I discovered by acccident.

I guess you can't really understand the power of this social bookmarking features as implemented by delicious until you start using them. That's why I think delicious is a good candidate as an answer for the current question.

link|flag
vote up 7 vote down

Learning about advanced algorithms.

For example, spending the time to read about all the different ways data can be sorted teaches you a lot about manipulating data. Even if you never do anything but call the library's QuickSort. Ditto about how compilers work. Or how to store tree-oriented data in a relational database.

link|flag
vote up 7 vote down

Learn the keyboard short-cuts of your IDE and ditch the mouse whenever possible. It'll not only make you faster, but also force you think more of keyboard oriented users in your own apps!

Oh, and ReSharper of course! :)

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

Uninterruptable Power Supply. Your hard drive data thanks you.

link|flag
vote up 6 vote down

Design patterns

link|flag
vote up 6 vote down

My wife and son :-)

link|flag
vote up 5 vote down

Learning how to take heap dumps of running processes, then using WinDbg + SOS to troubleshoot them for memory leaks and deadlocks. Priceless with large scale web applications!

Good article here

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

Agile and SCRUM Methodology changed everything

link|flag
vote up 4 vote down

Lint, pylint, JSLint, etc. You don't know just how ugly your code is until an automated procedure goes out of its way to badger you about it.

link|flag
vote up 4 vote down

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

link|flag
vote up 4 vote down

Assertions. After I started adding them to my own code during development, I was astonished to find how many times they were triggered. When I started adding them to other people's production code, they were astonished by the number of bugs that the assertions uncovered. It was a tipping point in my software development career.

link|flag
vote up 4 vote down

wiki - collaboration on the web

link|flag
vote up 4 vote down

A programmers notepad (such as TextPad or Notepad++). Sometimes a full IDE isn't needed and it' nice to have someting light to do quick things.

link|flag
vote up 4 vote down

Emacs - Before using it I didn't imagine I could so easily automate all those everyday routines. Now I can't imagine my life without it.

link|flag
vote up 4 vote down

Code Complete. Absolutely the best book on software development.

link|flag
vote up 4 vote down

WinMerge for comparing the differences in content of two files similar files

link|flag
vote up 4 vote down

A Laptop! Finally I don't have to walk 5 minutes to a warehouse, then back to my desk, then back to the warehouse......

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

Your Answer

Get an OpenID
or

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