Live data from Hacker News

The McDonald's Theory of Bad Ideas

medium.com

21–30 of 141 posts

Re: The McDonald's Theory of Bad Ideas

#21

I get the theory behind recommending the worse idea so that people recommend something that isn't nearly as bad but what is so bad about McDonald's? Here in Australia there aren't many fast food establishments opened at 3am besides McDonald's and when you're driving to work or had a night out on the town which is worse: dodgy kebab, slightly warm 3 day old curry or McDonald's? I tend to use a similar tactic when we'r…

> what is so bad about McDonald's? Here in Australia [...]

McDonald's Australia has excellent QA, process management and supply chain. I received some insight through someone...involved in all that good stuff (my background is QA/Environment so I get to meet some interesting people from various industries).

Coworkers from the US all tend to say the same thing after going to an AU McDonald's - great burgers but ~3x the price. It's a different beast in the US where quantity trumps quality.

Re: The McDonald's Theory of Bad Ideas

#22
post #12

I use a technique like this when I am stuck trying to write code and can't figure out how to do it efficiently. I ask myself "what is the worst possible way to implement this function?" and start writing that. Sure enough, that gets my mind going almost immediately and I start thinking of the improvements needed to turn it into good code.

I do this too, except I call it a "rope bridge". Write the simplest thing possible, even if it doesn't do everything you need, and then start iterating. The rope bridge will quickly become much more solid. The danger is that you leave the solution at too early a stage, and other things start relying on your flimsy rope bridge. It gets really difficult to go back and do things better.

That's test driven development sans the testing.

You should try test driven development :)

Re: The McDonald's Theory of Bad Ideas

#23
post #6

Of course, there is the risk that everyone thinks McDonalds is a swell idea, and then no one will ever do anything nicer for lunch ever again. Not to stretch the analogy too far, but I have had this happen both literally and figuratively.

There's a fable warning about the problem of throwing out a suggestion because you think one needs to be made, and then everyone going along with it because it's what they think the group wants, when no individual actually wants to do that thing. It's called the Abilene Paradox: http://en.wikipedia.org/wiki/Abilene_paradox

Re: The McDonald's Theory of Bad Ideas

#24

I use a technique like this when I am stuck trying to write code and can't figure out how to do it efficiently. I ask myself "what is the worst possible way to implement this function?" and start writing that. Sure enough, that gets my mind going almost immediately and I start thinking of the improvements needed to turn it into good code.

TDD?

Re: The McDonald's Theory of Bad Ideas

#25
A related trick to avoid procrastination: I have often found myself procrastinating when needing to send an important, but non-urgent, email. Procrastination is often a result of fear. I realized that the procrastination came from a fear that I would phrase the email wrong, or get the tone wrong, and blow my chance at getting a favorable response. To avoid procrastination, I find it helpful to tell myself, "ok, I will just compose the email right now, that is all, and I can send it whenever I want tomorrow, the next day, no hurry." Of course, after composing the email, I almost always get over the fear and just end up sending it.

Re: The McDonald's Theory of Bad Ideas

#26
My take on this is that it is effective because it reduces peoples fear of suggesting an idea.

We all feel something for our own genuine suggestions, a sort of ownership, and so fear the possibility of rejection as it would be a rejection of something personal to us, our preference.

When someone suggests a universally and whole heartily rejected idea we can take a degree of security from that that our idea will not be as universally disliked; "Well it's not as bad as McDonald's"

It's also possible that it just gets the "flow" going, which again is more to do with removing peoples fears i.e. "well, he suggested an idea and it wasn't so bad for him so I may as well suggest one as well"

Re: The McDonald's Theory of Bad Ideas

#27

I get the theory behind recommending the worse idea so that people recommend something that isn't nearly as bad but what is so bad about McDonald's? Here in Australia there aren't many fast food establishments opened at 3am besides McDonald's and when you're driving to work or had a night out on the town which is worse: dodgy kebab, slightly warm 3 day old curry or McDonald's? I tend to use a similar tactic when we'r…

The use of McDonalds as idiomatic low quality trash is questionable too, I've found McDonalds in Australia and New Zealand is significantly higher quality than in the US. While it's still not a luxury brand by any means the restaurants do have a much more sophisticated atmosphere.

I suspect there's a fairly high variance within the US, too. I've never had a crappy McDonald's food, but I'm usually in an upper middle class suburb or downtown Seattle when I go.

Re: The McDonald's Theory of Bad Ideas

#28
I don't see this as a creative concern.

Does anyone really think this group of coworkers, which almost surely eats something, somewhere eat day needs "inspiration" that they are truly bereft of ideas when this happens?

I don't.

They aren't out of ideas, they're avoiding blame - the inevitable bitching, disagreement or silent resentment that comes with making a choice.

It's the same blame culture that screws up any number of workplaces only worse as there may be nothing so pressing and universally felt as something like the human need for sustenance.

Projects are put off for days, weeks or years and they aren't universally felt when they remain undone. Individuals can't necessarily act to satiate themselves either, that could make them "cowboys".

In the original analogy, silence is complacency, the stream of ideas is a reactive response and the question should really be about how to eliminate the blame culture and replace it with something proactive and productive.

Re: The McDonald's Theory of Bad Ideas

#29

A related trick to avoid procrastination: I have often found myself procrastinating when needing to send an important, but non-urgent, email. Procrastination is often a result of fear. I realized that the procrastination came from a fear that I would phrase the email wrong, or get the tone wrong, and blow my chance at getting a favorable response. To avoid procrastination, I find it helpful to tell myself, "ok, I wil…

That is an excellent productivity tip that can be applied to anything. I think what helps, especially for hackers, is to think of activities as a series of simulations before the actual action. There is less pressure when you were on sims, or drafts, or prototypes of the real thing. Such things can fail with far less consequences. So I guess rapid prototyping is one cure for procrastination.
Post reply on HN