I am always looking for ways to be a more effective and efficient programmer. Two things that I found help me be more efficient are:
- Use Firefox keywords to quickly search stackoverflow.com. I find that stackoverflow often has the answers I need. Finding answers quickly makes me a much more effective programmer. Without taking my hands off the keyboard I can search stackoverflow. Ctrl+L gets me to the address bar, then I just type "so ". That's it! Just bookmark stackoverflow.com, then in the bookmark's properties change the name to "Search Stack Overflow", change the address to "http://stackoverflow.com/search?tab=votes&q=%s", and change the keyword to "so".
- Always question whether the problem you're trying to solve is really necessary. A couple of times I spent time writing code only to realize that a simplifying assumption made that code unnecessary. The best way to save time is to avoid spending it in the first place!
So, what are your best programming productivity tips?