8th January 2008, 06:30 pm
I’m really looking forward to QtConcurrent which will be in Qt 4.4; so I downloaded a Qt snapshot to try it out.
You can download all of the example code I wrote here, Qt Concurrent Examples
Continue reading ‘Multi-Threaded Programming with QtConcurrent’ »
7th January 2008, 07:38 pm
I finally got around to writing a major mode for Qt .pro and .pri files. It doesn’t provide any indenting features; only font locking.
Just load it up and add the following to your .emacs
(require ‘qt-pro)
(add-to-list ‘auto-mode-alist ‘(“\\.pr[io]$” . qt-pro-mode))
Get it here qt-pro.el
6th January 2008, 12:53 am
When you spend most of your day in Emacs, it can be annoying to switch to something else for a text oriented task. With weblogger.el you can post to your blog without ever leaving Emacs.
I have WordPress installed, but it should work for any other blogging software with the same XMLRPC interface.
Continue reading ‘Posting to WordPress with Emacs (weblogger.el)’ »
4th January 2008, 07:50 pm
I ran across something weird the other day. I had assumed that the return type of an overriding function must be identical to the function that it is overriding. The C++ Standard allows one specific exception to this rule that could possibly come in handy to save some unnecessary casting.
Continue reading ‘Covariant Return Types’ »