A thing that I noticed a lot recently is that if you try to answer a question in a way that makes clear what is really happening (being uber-verbose, maybe instantiate one or two objects too much, doing things in two steps where one would be possible as it gives you room to explain what's happening, having lots of comments in the code) as you have the feeling that the OP is a novice and might want to learn what is really happening in the lines he is writing, you will often attract comments like: That was fine (other than the bunch of unnecessary temporary objects) or other semi-snarky remarks complaining about calling a jQuery-selector once too often (I don't mind these comments at all btw).
Although I don't mind them it led me to wondering if it is encouraged to always use best practices (as far as they may exist) in examples, even it may confuse the OP or encourage him to just copy the code and run (as he will not understand it due to its optimized nature)? Or should one just try to "get the message across" even if it may hurt a little (I'm not talking about writing code that is plain wrong...)?
I'd opt for getting the message across by the way as I don't think SO should be a place where you get production ready code (but instead improve your skills by understanding things you haven't understood before - I have learned so much - in exactly this manner - around this place and still am), but I could also see reasons for advocating the former. Is there some kind of community agreement on this topic?