Archives
Qualities of Quality PMs
Submitted by Erik Petersen on Thu, 01/05/2008 - 12:34. books | people issues | project managementI’m enjoying being technoratified . I have more than 50 blogs as favorites. I noticed a note on one announcing a reissue of a project management book, with the opportunity to win a copy. The book is “Making things happen”, by Scott Berkun. You had to post on the qualities of a quality project manager. I was one of 50 posters while the competition ran, and was lucky enough to win one of the 10 books. I’ll reserve my opinion on the book till I read it, but it will have to be excellent to outdo Johanna Rothman’s Manage It which won a 2008 Jolt award. If you follow the link you'll find a podcast from Johanna to listen to, then search further and you'll also find a video interview as well.
The PM qualities list makes interesting reading, and there is even a synthesized audio track of the original blog post (but sadly not the comments). You can also read an Q&A interview with Scott on PM from the book’s original release.
WOW64 Win32 DebugAPI CLR application startup change
Submitted by /* Rambling comments... */ on Thu, 01/05/2008 - 17:43.Public courses offered for test management and performance testing
Submitted by Danny Faught on Thu, 01/05/2008 - 17:55.TotT: Testable Contracts Make Exceptional Neighbors
Submitted by noreply@blogger.com (dastels) on Thu, 01/05/2008 - 18:10.bool SomeCollection::GetObjects(vector const {
objects->clear();
typedef vector
for (Iterator i = collection_.begin();
i != collection_.end();
++i) {
if ((*i)->IsFubarred()) return false;
objects->push_back(*i);
}
return true;
}
