vote up 4 vote down star

We all have a lot of work to do. What tools and method do you use to to save time? I am looking for specific tips and tricks to reduce wasted time. What small tools help you be effective.

Tools suggested so far:

Resharper

RegexBuddy

Thank you!

flag
many, many duplicates of this. See stackoverflow.com/questions/700205/… – Jeff Atwood May 1 at 2:39

closed as exact duplicate by Mihai Limbasan, Norman Ramsey, George Stocker, Jeff Atwood May 1 at 2:39

19 Answers

vote up 0 vote down

slickrun: http://www.bayden.com/SlickRun/

Create shortcuts for anything under windows and never use your mouse again.

I have personally bound the ALT-R key for the slickrun invocation. This is a very small move from the regular keyboard hands position.

Eric.

link|flag
vote up 0 vote down

grep

.NET reflector

They refuse to learn and wonder why I have so much power.

link|flag
vote up 0 vote down

Beyond Compare. It is hands down the best folder & file diff tool. Replace SVN's crappy diff tool with this & merges and conflicts will be so much easier. Plus it does FTP folder & file comparison and you can get a bunch of plugins to do all sorts of different file diffs

link|flag
vote up 0 vote down
  1. Write out tasks before attempting to complete them

  2. Firebug for internet apps

  3. Very good comments in your code

  4. Agile programming techniques

  5. Rubular

link|flag
vote up 1 vote down

My notebook. I guard that thing with my life. Thoughts, problems, to-do lists, meeting minutes--everything is in that book. I can always find what I'm looking for, and it keeps me on task. It's my rubber ducky and my sanity check.

Best of all, it's cross-platform.

link|flag
vote up 0 vote down

When coming up-to-speed on someone else's code, I've found it very valuable to have a great editor that has a few key features for speedy navigation of a project's source files.

These functions rely on setting up a "project" in the editor, which contains a list of the project's source files.

  1. "Jump to this function/variable". Click on a function call or variable name anywhere in the source. You want to see where that function is defined. Invoke the "jump" feature, and it quickly opens the file that contains the function/variable definition. By far this is my biggest time saver.

  2. "Global search".

The faster these features are, the better. I haven't used Visual Studio later than 2003 (I'm an embedded software developer), so maybe I'm out-of-date, but I found its "jump to function declaration" function was too slow.

I currently use jEdit (it's currently a bit rough, but does these features well), but many other editors are available that have such functionality, often using exuberant ctags.

link|flag
vote up 0 vote down

Apply the 80/20 rule...

20% of your code will produce 80% of what is needed for the project. Keep your focus on that 20%.

link|flag
vote up 4 vote down

Learn keyboard shortcuts for everything. And I mean everything. It's so much faster to just hit a series of keystrokes than a series of precise mouse movements.

For example, if I'm coding and want to look something up on the internet, I'll type Alt+Tab(+Tab as necessary) to switch to my browser, Ctrl+T, Ctrl+K, enter my search terms, Enter, J/K as necessary to select the search result I want using Google's keyboard shortcuts, and O to open it. Then, Alt+Tab back to my code.

link|flag
Right on. A few other favorites are Windows+D for Desktop, ctrl-w to close a tab in Firefox, ctrl+arrow to skip whole words, ctrl+delete to delete whole words. – Cory House May 1 at 2:02
You can save yourself a whole extra step by skipping the Ctrl+T (assuming you're in firefox): Just Ctrl+K (regardless of the page you're on), enter your search terms & hit Alt+Enter which will do the search in a new tab anyway. (Alt+Enter works in location bar too (Ctrl+L)). – Alconja May 1 at 2:16
vote up 1 vote down

Launchy. It indexes your start menu so there's no more wasted time click around for folders or programs, and it is highly customizable.

link|flag
vote up 0 vote down

I use ruby and ERB to generate a lot of boring/boiler plate text - for example I have one script that given a .sql script pulled out of sql server will generate the CRUD stored procedures in script form for me.

link|flag
vote up 4 vote down
  1. Todo list
  2. Quiet, uninterrupted atmosphere
  3. Clear expectations of the end result of work
  4. No unnecessary open web browsers.
link|flag
1  
Quiet, uninterrupted atmosphere, is the most important! – Charles Conway May 1 at 1:08
vote up 4 vote down

ReSharper

link|flag
vote up 1 vote down
  • Disconnect your computer from the internet (unless you absolutely need it).
  • Just do the programming. Don't worry about anything else.
  • Make a to-do list. Stick to it.
link|flag
vote up 0 vote down

One tool I find invaluable is a running text file with relevant information about what I am currently working on. A coworker of mine does the same but in a spread sheet. This serves two purposes: it lets you grab the details to get back up and running quickly and it serves as a store house for relevant information.

link|flag
vote up -1 vote down

Work first on issues marked as "important" over issues marked as "urgent". If you solve the important ones the urgent ones will disappear.

link|flag
vote up 2 vote down

RegexBuddy. that thing has saved me SO much time and hair loss! The other thing i do that saves time is telecommute whenever I can. Hours of driving is non-productive.

link|flag
vote up 10 vote down

Number 1 tip: spend less time on SO and more time doing what you're meant to be doing :-)

link|flag
vote up 5 vote down

Turn off your email notification.

link|flag
vote up 5 vote down

Caffeine. Saves precious hours wasted on sleep.

link|flag
1  
If I could I'd +2 you :-) – ldigas May 1 at 2:02

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