Like most other people I have mixed results with Sitecore and speed.
Some solutions can be very fast and others can be quite slow.
But I think that most of the time it's all down to the architecture of the solution and the quality of your code. (this is mostly for the website part, other things apply to the Desktop/Content Editor).
I work at a company that has been making Sitecore solutions since early Sitecore 4 and I've myself been developing Sitecore since about 5.3.x
And some of the worst problems I've seen have either been server/network related or code related.
Server/network related:
Sitecore is a data intensive CMS and can send a lot of data back and forth, especially in the Content Editor. Having a webserver or database server that can't keep up, makes it a bad expirience. And sometimes having bad connections between the two can really muck stuff up. I've had a customer go from very crappy performance (in Content Editor) to good performance, by switching from an old/defect switch/router to a new one. The standard database test (http://sdn.sitecore.net/Articles/Administration/Sitecore%20Performance/Storage/Database%20Administration/Testing%20Database%20Performance.aspx) went from anything from 20-60 seconds to 4-5 seconds to retrieve the 10000 "root" items.
Code related:
At my work we've all but gone away from xslt... it's just too limited to develop in and not as easy as working with aspx & ascx's. Plus I'm not very strong in XSLT and especially some of the logic checks seem backwards to me compared to C#. Ofc editing aspx & ascx's causes a recompile, which slows down development, but the power and freedom you get is worth it imo.
But the biggest problem with regards to code, is usually code that traverses more or less the whole tree. I've seen plenty of code that tries to find all items of a certain template under the sitecore/content/home node, which gives terrible performance and especially scales horribly as the site grows. This is were the link database comes in handy.
But plenty can be done by Sitecore and thankfully they are doing some things, though I do wish they work more on performance and bug fixing that making new features... but new features are easier to sell by the marketing department.