Speed matters: Why working quickly is more important than it seems (2015)
1–10 of 177 posts
Re: Speed matters: Why working quickly is more important than it seems (2015)
#2And in the realm of programming, it’s often easy to take shortcuts even though later on they wind up costing more time for you or others involved: omitting documentation, not making something reproducible, poor code quality, etc.
Having spent most of my career in academia I see a lot of the work makes this trade off: efficiency is sacrificed for a sloppy, immediate “speedy” solution. You need to find a balance and think through problems, considering not only what is immediately in front of you but also what you’ll be doing in a month or year. Otherwise you’ll wind up with a project or codebase that begins to drag your productivity and output with it.
Re: Speed matters: Why working quickly is more important than it seems (2015)
#3It's a cute way to think in opposites, but unfortunately as punching advice, it's untrue. Punch force comes from body mass x acceleration, not arm mass x acceleration.
Re: Speed matters: Why working quickly is more important than it seems (2015)
#4So to become fast, learn to write code which is very easy to verify that it works. If you get surprised when things work the first time you try then you are not fast.
Re: Speed matters: Why working quickly is more important than it seems (2015)
#5"when you punch someone you need to pull your arm back, before you launch it forward. If you don’t your hit will be weak." It's a cute way to think in opposites, but unfortunately as punching advice, it's untrue. Punch force comes from body mass x acceleration, not arm mass x acceleration.
Re: Speed matters: Why working quickly is more important than it seems (2015)
#6Re: Speed matters: Why working quickly is more important than it seems (2015)
#7This seems like a good idea for a browser extension. Maybe sometimes you want to undo the work that the website did making things go faster?
Re: Speed matters: Why working quickly is more important than it seems (2015)
#8It seems like this should work the other way too? If you want to break a habit, add a delay. This seems like a good idea for a browser extension. Maybe sometimes you want to undo the work that the website did making things go faster?
Artificially slowing down those time waster websites instead might do the trick. Not so slow it becomes unusable (or I'll turn it off) , but slow enough that over time I start associating it with a bad experience.
Re: Speed matters: Why working quickly is more important than it seems (2015)
#9Re: Speed matters: Why working quickly is more important than it seems (2015)
#10Efficiency is also more important than it seems. You can have lots of low quality, half-baked output. How much forethought do we put into what we will work on to begin with? Some projects and ideas are not worth the effort. Or an alternative solution to a problem is preferable over one you’ve been hammering away at for days, and would be easier to implement. And in the realm of programming, it’s often easy to take sh…