Daily Archives: 25.01.2015

Patriots coach invokes science in addressing deflated-football dustup

By Chris Matyszczyk Technically Incorrect: Bill Belichick says he’s not a scientist, but he offers a scientific reason why his team’s footballs weren’t at regulation pressure when Pats beat Colts to head to Super Bowl.

…read more

Source:: http://cnet.com.feedsportal.com/c/34938/f/645093/s/42ab944b/sc/13/l/0L0Scnet0N0Cnews0Cpatriots0Ecoach0Einvokes0Escience0Ein0Eaddressing0Edeflated0Efootball0Edustup0C0Tftag0FCAD590Aa51e/story01.htm

      

Patriots coach invokes science in addressing deflated-football dustup

By Chris Matyszczyk Technically Incorrect: Bill Belichick says he’s not a scientist, but he offers a scientific reason why his team’s footballs weren’t at regulation pressure when Pats beat Colts to head to Super Bowl.

…read more

Source:: http://cnet.com.feedsportal.com/c/34938/f/645093/s/42ab944b/sc/13/l/0L0Scnet0N0Cnews0Cpatriots0Ecoach0Einvokes0Escience0Ein0Eaddressing0Edeflated0Efootball0Edustup0C0Tftag0FCAD590Aa51e/story01.htm

      

Official Kadu IM blog: Injeqt 1.0.0

There is not much to say. I’m working with Injeqt (Qt dependency injection library) for some time now, preparing to release Kadu 2.0, and I’ve not encountered any problems at all. It is great to have only one feature and have full tests coverage for it. So here it is, 1.0.0 release!

I really enjoy using this small library, but I’ve also learned that I wish it have some more features:

Subinjectors

I would like to use main Kadu injector in plugins code in a normal way. I would like to have a class with following header file and setters invoked by injector:

class ChatNotifier : public Notifier
{
Q_OBJECT
private slots:
...
INJEQT_SETTER void setChatWidgetRepository(
ChatWidgetRepository *chatWidgetRepository);
INJEQT_SETTER void setFormattedStringFactory(
FormattedStringFactory *formattedStringFactory);
};

auto plugin_injector = injeqt::injector(
plugin_modules, main_injector);
auto notifier = plugin_injector.get();

Currently it is not possible – list of classes supported by injector is immutable and set on injector creation. And class ChatNotifier need to be added later, as it is in dynamically loaded plugin. So this code must be used:

class ChatNotifier : public Notifier
{
Q_OBJECT
public:
...
void setChatWidgetRepository(
ChatWidgetRepository *chatWidgetRepository);
void setFormattedStringFactory(
FormattedStringFactory *formattedStringFactory);
};

auto notifier = new ChatNotifier{this};
notifier->setChatWidgetRepository(injector
.get());
notifier->setFormattedStringFactory(injector
.get()));

Subinjectors will solve this problem. Injectors will be able to have a parent injector and known all of its objects so it will be able to use them in an easy way.

As this is the feature that I miss most, it will be included in Injeqt 1.1 that will be released just before Kadu 3.0 (hopefully in about 3 or 4 months).

Autoconnections

Injeqt should have an option to recognize matching signals and slots in objects that it creates and connect them automatically. I’m not 100% about the semantics of it (should it create objects just to connect to them even if application does not use them yet or should it wait for application to ask for an object to create it and connect). This is much more complicated to implement than subinjectors, so it is postponed to some next release. …read more

Source:: http://blog.kadu.im/2015/01/injeqt-100.html