Monthly Archives: June 2010

Dan Pink – Drive

“The Surprising Truth About What Motivates Us” Is actually not surprising to me at all. I have heard the first 1.5 hours of the audio book and find myself annoyed by the repetition of the same argument over and over again. Extrinsic motivation (mostly.. paying someone to do something) can have negative effect on motivation, [...]

Posted in Life | 1 Comment

C# Style Properties in C++?

I was in experimenting mood again. I got annoyed by writing the following code over and over again: class Test { private: int myVar; public: int GetMyVar() { return myVar; } } Sometimes additionally to that a Setter method which processes or checks the values. So how to make this more compact? With macro hacking! [...]

Posted in Experiments | 2 Comments