vote up 89 vote down star
91

My last job evaluation included just one weak point: timeliness. I'm already aware of some things I can do to improve this but what I'm looking for are some more.

Does anyone have tips or advice on what they do to increase the speed of their output without sacrificing its quality?

How do you estimate timelines and stick to them? What do you do to get more done in shorter time periods?

Any feedback is greatly appreciated, thanks,

flag
2  
I'm the sole developer of a few projects and on a small team 2-3 people for a few others. I take the requirements given from the other departments, design, architect, code, and deploy them typically. I try at least using a mind mapper to get things planned out before doing any actual coding & (try to) approach the projects with iterative agile releases. The projects are all in VS 2008 (Silverlight+WPF+LINQ.) – Nick Gotch Sep 11 at 15:08
79  
Spend less time on SO at work, if you do so. – San Jacinto Sep 11 at 15:16
40  
If you are reading this, it's already too late – OMG Ponies Sep 11 at 16:28
22  
I read "How to become a fatter programmer". Made me laught – marcgg Sep 11 at 16:39
13  
I would ask you a follow-up question. Is your desire to be a "faster programmer" a result of your own poor performance (AKA, you need to hone your skills, you need to focus and eliminate distractions (such as SO), etc), or is poor planning from a development standpoint (AKA, you were given 1 week to do something that any sane person would have known would take 1 month). Each item has very different solutions. – Jason Sep 11 at 20:21
show 11 more comments

81 Answers

prev 1 2 3
vote up 5 vote down

Two things that might be implied, but I haven't seen among the answers here yet that increases productivity are:

  • Use some sort of build and deployment scripts. Compiling, deploying, restarting app-server and such musn't suck up either time or focus, it should be a one-click kind of thing.

  • Have some sort of version control. Having to code without being able to roll back a change is like trying to walk on eggs

link|flag
vote up 6 vote down

To produce software faster, I've found the best thing to do is to learn your runtime API as best as possible. Don't type out list logic when a LINQ extension will do; don't build a bunch of event listeners when binding will work, etc.

As far as estimation, that comes with experience. You can make use of estimation software out there to help you figure out better estimates.

Personally, I found with junior level developers, take whatever their initial estimate is and multiply it by 2, then double it. This will account for all of the learning, meetings, wasted time, etc. The more senior level developers tend to work at a factor of 2 over their estimates.

Often times, the question is not if your estimate was wrong. It's did your estimate account for all the right things? Are you giving your estimates and timelines in terms of coding effort or in terms of calendar time? Think about all the time in your day and how much of it is actual, productive coding vs. meetings, learning, debugging, etc.

link|flag
2  
"...multiply it by 2, then double it." Since you're interested in saving time, I've got a math tip for you that you might be able to use... – Beska Sep 11 at 17:31
show 1 more comment
vote up 6 vote down

Are you slower than your colleagues, or are your estimates more overoptimistic?

link|flag
vote up 4 vote down

I read something a long time ago about optimization that really stuck with me. I don't remember the source or the exact words, but the gist of it was, "The only way to make a program run faster is to make it do less. Any other plan is just that." The same goes for humans. The army also has a saying, "Haste makes waste." Doing the same things we do now, but faster, will only create problems. There are many different plans for becoming more productive out there, and I'm not saying they aren't effective, but they won't be tailored to your needs. You're better off looking at what you do and finding the things you do that aren't productive, and cutting those out. Any other plan is just a watered-down version of that.

link|flag
vote up 3 vote down

Read Neal Ford's excellent book The Productive Programmer.

It's full of lots of useful tips.


Edit:

And, as mentioned elsewhere, read the docs for your tools. I'm always learning new things for Vim by reading Vim wikis. Similarly, just reading through the man page for bash or zsh always gives new tricks to use.

link|flag
vote up 15 vote down

Notice when you have been reading Stack Overflow for too long. The "Compiling" excuse only works for so long. :)

link|flag
12  
Depends on how fast your compiler is. So maybe the "solution" is to find slower compiler and run it on Pentium 2 w/ 128MB memory? :-) – Franci Penov Sep 11 at 16:26
vote up 2 vote down

Think before what to do !!!

Design the Program in your mind or better with pencil and paper . Then your experience and Practice will provide the rest of things :)

link|flag
vote up 30 vote down

"Does anyone have tips or advice on what they do to increase the speed of their output without sacrificing its quality?"

Many, many people strive for "ultimate" quality at the expense of something that is (a) simple, (b) reliable and (c) correct.

The most important way to speed up your development is to simplify what you are doing so that it is absolutely as simple as possible.

Most folks that have problems with delivering on time are delivering way, way too much. And the reasons given are often silly. They're often just perceived requirements, not actual requirements.

I've heard a lot of people tell me what the customer "expects". This is a bad policy.

Build the simplest possible thing. If the customer requires more, build more. But build the simplest possible thing first.

link|flag
2  
Yup... this means premature abstraction, too. If something is only going to have one implementation, don't make it an interface. – Robert Fraser Sep 11 at 21:09
2  
One of my favorite quotes is appropriate in this situation "make something as simple as possible, but no simpler" ~ paraphrase, Albert Einstein – Nemi Sep 16 at 14:00
show 5 more comments
vote up 4 vote down

The technique that I use is evolutionary prototyping

You can google for more info - but if the need is to produce something quickly, it's about the only way to go. Plus, it has the benefit that when the users says that he likes it, your'e done (... and can start doing the documentation).

link|flag
vote up 107 vote down

Some ideas...

  • Avoid gold plating - do only what is asked of you (in terms of requirements)
  • Understand business requirements and do it right the first time
  • Thoroughly understand your environment and tools
  • Become a fantastic typist, use keyboard shortcuts instead of the mouse
  • Take an interative approach and build in sanity checks to ensure you are on the right path
  • Don't reinvent the wheel, consider reusing past work and the work of others
  • Eliminate distractions, don't keep checking email, looking outside, talking to coworkers, etc.
  • Don't overwork yourself - recognize when you need to take breaks
link|flag
4  
+1 for not reinventing the wheel. Learn to produce reusable code, that can bu plugged in another code and work with none to small re-write. (ex.: functions with parameters, instead of hard-coding) – Jay Sep 11 at 16:04
18  
+1 for "avoid gold plating" -- this has been the cause of me missing way too many deadlines because of my perfectionist/anal-retentive tendencies. – Dinah Sep 11 at 17:05
3  
Typing - important point. Always amazed at the number of coders I meet who haven't learned to type... – Paddy Sep 11 at 17:21
1  
+1 for the tips to micro-improve (instead of macro-improvements in terms of planning projects). – MP24 Sep 30 at 8:30
show 5 more comments
vote up 11 vote down

Do it right, the best way, first time. If that means you have to stop and think about it for a while before you start, then do it. Works 90% of the time.

link|flag
1  
+1 This is so true. It doesn't mean you have to be "perfect"; all of us will make mistakes. But if we do things the best way possible the first time, the consequence of those mistakes will be much smaller. – James Schek Sep 11 at 16:21
show 1 more comment
vote up 4 vote down

Learn your development IDE in and out. Learn the shortcut keys. Learn to use the mouse less. I find that this saves much time for me.

link|flag
vote up 19 vote down

Keep it simple.

If you use TDD, you should follow "red, green, refactor":

  1. Write a failing test (red). (Often for functionality your code does not yet have.)
  2. Commit horrible coding crimes to get your tests to pass (green). Hardcode if necessary.
  3. Refactor, probably breaking tests for a short while, but overall improving the design.
link|flag
3  
When doing TDD, you have a test runner that produces a red/green report per test to indicate if they pass. – Frank Schwieterman Sep 11 at 16:22
1  
@Konstantin: Writing some code using TDD might take take 20% longer, but it also yields better code and in the long run, when the system grows, the speed of making changes stays about the same. TDD helps you to avoid technical debt which slows you down. – Esko Luontola Sep 12 at 18:51
1  
Typing has never been the slow part of programming. Even though you need to type more with TDD, it does not slow you down. It might even speed you up, because writing a test first helps you to focus on what is needed before thinking about how to implement it. – Esko Luontola Sep 12 at 18:53
1  
If the management does not understand some key concept, you should explain it to them. For example martinfowler.com/bliki/TechnicalDebt.html – Esko Luontola Sep 12 at 18:54
2  
@Konstantin, if you consider "development" to be the act of writing the code statement, I would agree with you. However, if you consider "development" to include packaging, preparing build notes, deploying, testing, producing defect reports, reviewing and prioritizing defects, task assignment, investigation, debugging and fixing and starting the process over again -- then the 15 minutes to write the unit test outweighs the days and loss of customer confidence 1000x over. – bryanbcook Sep 12 at 19:07
show 3 more comments
vote up 8 vote down

Knowing your IDE and framework well. Having to turn to Google for every little thing takes time.

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

Really, really learn your editor. If you use an IDE make sure you're using all the features it offers. Get a cheat sheet to learn the keyboard shortcuts for your editor of choice. If you're using a shell set up shortcuts for commonly used directories

link|flag
3  
This can indeed sometimes increase productivity drastically – sshow Sep 11 at 15:05
4  
Writing actual code is just part of a dev's work. Spending time to learn the IDE to perfection is a point optimization; and you know what they say about optimizations, don't you? - "Measure first and then optimize the bottlenecks". – Franci Penov Sep 11 at 20:35
2  
It makes navigating the IDE something you do without thought. Anything that requires any concious effort, like moving to the little grey button marked something or other next to all the other little grey buttons slows you down by interrupting your thinking. Having ctrl-n under my fingertips without any motion is a major net win. – Paul McMillan Sep 11 at 21:08
4  
Along same lines: learn general 'hot' keys. E.g., in many Windows programs... Copy: Ctrl + c Cut: Ctrl + x (the 'x' looks like an open pair of scissors) Paste: Ctrl + v (right next to 'c' and 'x' above) Go to start of line: Home Go to End of line: End Move cursor by word (not character): [Shift] + Ctrl + left or right Go to top of doc: Ctrl + Home Go to end of doc: Ctrl + End etc. – steamer25 Sep 11 at 22:01
show 9 more comments
vote up 9 vote down

Practice and hard work.

You need to put the time and effort in. As you become more comfortable and confident with whatever tools your using, speed and creativity should follow.

If you want to improve any particular skill, it may also help to design exercises which will let you work specifically on that. If your slowness is in the design phase, try to find design problems to work on online. Redoing the same exercise will let you complete it faster and practice speed. I personally like TopCoder's algorithm exercises for practising sheer programming speed. They have design challenges too, but I have not tried them.

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

Re-use - I try to factor out any clever bits from previous projects, so I can use them again in future ventures. It's always worth asking yourself "could I use this again someday?"

link|flag
5  
+1: Beware though, I've caught myself generalizing and abstracting something so that I could use it again another day... and missed that day's deadline or doubled the time the bug should have taken to fix... so that I could "maybe" save time later on. – SnOrfus Sep 15 at 5:30
1  
Having a "bag of tricks" is key. If this is becoming a job issue for you, it would be worth putting some of your own time into developing reusable pieces (assuming the domain you work in is amenable to code reuse). – Larry Lustig Oct 9 at 22:06
show 1 more comment
vote up 129 vote down

Turn off the computer. Grab a pencil and some paper. Sketch out your design. Review it with your peers. Then write the code.

link|flag
7  
OR you could keep your computer on, and open i.e. MS Visio – sshow Sep 11 at 15:02
148  
Pencil and paper or a whiteboard is faster than most applications that I've used. – Thomas Owens Sep 11 at 15:03
13  
Doing it on paper focuses the mind. – pjc50 Sep 11 at 15:10
78  
why can't i downvote the visio comment? Not using visio is a certain way of speeding up development! – darasd Sep 11 at 15:32
30  
Ugh.... Visio. Every time I'm asked to "use Visio in your design document", I first sketch it out on paper, then spend the next two days fighting to get all the lines in Visio correct. – Robert Fraser Sep 11 at 21:03
show 14 more comments
vote up 21 vote down

Avoid polishing your code to the perfection, just make it work. That's what the business expects.

But often, increasing speed implies sacrificing quality.

link|flag
8  
I would suggest "making it work" and if time permits getting around to perfecting it ! – Preets Sep 11 at 15:04
18  
-1: There is no reason to sacrifice quality. You can always sacrifice features. – S.Lott Sep 11 at 15:06
5  
I've seen it happen repeatedly. Developers get hung up on the last 1% of a given feature and then play catch-up and fall behind when attempting to complete the remaining features. Complete what is expected of you first, then go back and polish it. – Mayo Sep 11 at 15:06
2  
Often, increasing quality implies increasing speed. If you take a little time to get it right in the first place, you might save more time in testing and debugging. – David Thornley Sep 11 at 17:14
1  
If you're stuck at one feature, work on something different. – subw Sep 11 at 21:07
show 4 more comments
vote up 2 vote down

Practice. That, and getting your hands on productivity tools that allow you to go faster.

For example (you didn't mention the platform on which you work), in the .NET environment, there's Resharper.

link|flag
4  
Be aware that tools like Resharper work both ways: they are great for cleaning up old code or refactoring to a better design... but you can also get sucked into pointless cleanup that soaks time that could otherwise be producing functionality. I would say that the productivity increase probably offsets the cleanup and in the long run you have better code... but it isn't a silver bullet to being more productive by any stretch. – Godeke Sep 11 at 15:00
show 2 more comments
vote up 8 vote down

I do it tomorrow.

Getting Things Done is also immensely helpful.

I have a short attention span anyway, so these books help me keep my foc... what was I doing again?

link|flag
show 1 more comment
prev 1 2 3

Your Answer

Get an OpenID
or

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