I'm looking for something along the lines of Learn you a Haskell or Why's Poignant Guide to Ruby, but for C++. Does such a thing exist? Or at least something not extremely dry, and a bit more welcoming to someone new to the world of C++?
http://www.steveheller.com/cppad/cppad.htm would be my best bet.
No, it's not humorous, but it's accessible. it is written as a dialog between the author and a student (with no programming experience) he is teaching C++, so it's pretty easy to read, and explains everything extremely well for beginners.
There are a few chapters where he teaches things I'm not 100% happy with, but on the whole, it's not a bad C++ book. And it is far more readable than everything else I've seen.
Oh, and it is freely available on the site. :) At the moment, I can only find a HTML version, but I seem to recall there was a pdf as well. Oh well...
Well, my answer is definitely off topic but this article on new c++0x features was rather fun : http://www.theregister.co.uk/2009/05/07/verity_stob_cplusplus/
Study a good old standard book.. Try as an program of the concepts learnt.. (Don't copy from the book... Dont cut/copy->paste too..) Compile again and again to make things work.. When it works for the first time, the smile that shows up in your face will never make C++ a dry one.. I have been using C++ for years, but still there's a lot I yet to know..
C++ books are not the kinda books that you have to read for hours all together.. Just read a concept/functionality, understand it by making it work in the program and move to the next one. In my opinion, You will never understand a concept completely, just by reading it..
C++ is never a dry one when it is worked out.. Never and will ever be..
You should definitely read the C++ FAQ Lite:
http://www.parashift.com/c++-faq-lite
This one does contain quite a lot of humour, some of which you can only understand if you've done some C++ or programming in any other language. That said, it's not a tutorial at all, in that you should already know C++ before you read it. But it's funny and it can teach you quite some things, so it's a suitable answer to your question.