Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment Lying sometimes needed for effective leadership? (Score 1) 265

Something no one seems to have mentioned yet is that lying might sometimes be necessary for effective leadership.

Since this is Slashdot, think of Theoden at the battle at Helm's Deep. Putting on a brace face, sometimes straight out lying about things. I can imagine e.g. tribal leaders doing the same thing. So there might be a mechanism whereby people either develop these skills when in a leadership position, or the people who tend towards lying more easily attain these positions.

Of course, this can only ever be a positive thing if the leader in question actually cares about his underlings.

Comment Re:Qt (Score 0) 310

QString has function to convert to/from std::string, and the Qt containers can all give you STL compatible iterators. I've found working with Qt and the STL in general to be quite easy - in fact I prefer to use the Qt classes whenever I can, as I much prefer their API.

Comment Re:Use Qt.... (Score 1, Insightful) 948

Sounds like KDE modified Qt.

No. Qt has several event loops - it will default to the glib-based one if glib is available at compile time. It will fall back to the generic Unix event loop if glib is not found. You can also disable the glib event loop by setting the environment variable QT_NO_GLIB if you need to - for example debugging is simpler with the generic Unix main loop.

This was developed by Trolltech back in 2006, see here. Interesting quote: the ideal would be for all applications on the X11 desktop to use the same event dispatching mechanism. Here are Trolltech, we think the Glib main loop should be that mechanism...

This has the nice side-effect of being able to use gtk and Qt in the same process. This can be convenient at times, for example I have been developing a Qt-based user interface for the mupen64plus emulator. The glib event loop makes it possible to use plugins with gtk interfaces where no Qt interface exists yet. It also makes integrating glib-based things in general pretty much completely painless.

Comment Re:What's really behind Finlands IT success (Score 1, Interesting) 229

A common expression amongst Finns is "Vaikka läpi harmaan kiven", "Even through gray rock". More elaborately put, if you are determined enough, you'll get there eventually, no matter the obstacles. There are other similar expressions, and even a word that sums it all up, sisu.

Slashdot Top Deals

The trouble with opportunity is that it always comes disguised as hard work. -- Herbert V. Prochnow

Working...