You should definatly check Juce. I find it very well written, comprehensive, and it has all the basics (strings/array/multithreading) as well as more advanced stuff (rather complete GUI and Audio libs, go figure); It might not be as 'big' as ACE or Boost, but it's ten times more readable.
Another thing to keep in mind: stuff like Synergy might be good, but don't go focussing on just one or a couple of projects. You have to remember that people starting such a project take certain design decisions based on what works best for their case, and that is likely not always comparable to what your needs are. (simple example for the Synergy case: all platform specific stuff is in a singleton; works great, but suppose you write a lib that you want to use for multiple applications, you maybe do not want to change the singleton's public interface each time you add a platform-specific feature)
That being said, Stephen C makes a very good point. The most rewarding and valueable project is the one you do all by yourself.