Hacker News new | ask | show | jobs
by jacquesm 4378 days ago
I agree your dad is very lucky. That's about as good an ending to that story as you could possibly have. One day I was cutting staircase support (all those triangles you have to cut out) from a 2" x 12" board, the same thing happened and the saw just jumped right out of the cut. I slammed it down before it could get out of control and it still managed to cut a really nasty gash into the wood before it finally stopped moving. Incredible how fast that went from everything fine to literally fighting the saw. Nobody got hurt that time so all is well but still it gave me even more respect for rapidly rotating disks of steel.

I had an angle grinder disc blow on me last fall when cutting through a rooftile, that too was quite an interesting experience. It would have been less of a problem if it had shattered completely but of course one segment on one side decided to hang on. If not for eye protection that would have ended in the hospital for sure.

The one thing I've noticed is that if you rarely work with tools you are really at risk. Then as you work more more with powertools you get more experience, you become a bit more confident and more aware of the risks. That's good.

Then when you're working with them for a really long time two things will converge in a bad way: all that experience and confidence will lull you into a false sense of safety an then the law of large numbers catches up with you, very rare occurrences will happen to you because you are doing it so often.

If you're not paying attention right at that moment you could very well end up in hospital or worse.

1 comments

"all that experience and confidence will lull you into a false sense of safety"

I've noticed that that happens with many different things in a similar way.

You get confident, you slip up, you work faster, you make mistakes.

When you start out boating (with a new boat) you are oh so very careful.

Then you gain confidence and you start to take more chances. All the sudden things that you could never imagine yourself doing when you start you do. An example might be getting caught in an inlet with a boat during a period when larger boats are all trying to go in or out at the same time and you are tossed left and right.

Programming as well. Say doing a rm -fr foo * in stead of rm -fr foo* and not catching it because you hit return to fast instead of making sure the statement was correct. [1]

[1] I got into the habit of doing for i in foo* ; echo $i ; done and then inserting the rm -fr statement (by using uparrow) just as a precaution to slow me down.

> I got into the habit of doing for i in foo* ; echo $i ; done and then inserting the rm -fr statement (by using uparrow) just as a precaution to slow me down.

I do the exact same thing only I use 'ls foo*' first, and when doing bulk updates / deletes with sql servers I again first do a select and then modify the select once I'm sure it will hit the right rows.