A little somewhere else

To content | To menu | To search

Tag - howto

Entries feed - Comments feed

Tuesday, May 27 2008

Using Qt4 with Microsoft Visual Studio

Since a few weeks, I really have to show you a nice tool to make Qt programing easier with Microsoft Visual Studio.
I've named autoBuild, a nice tool which integrated Qt compilation inside Microsoft Visual Studio. It could replace the actual commercial solution sold by TrollTech but I don't know the differences between the two solutions, because the one from TrollTech is just available in commercial pack, and I never bought the latter one.

You will find the howto to install it on the Qt Center wiki.

Tuesday, March 18 2008

Free multiposte indisponible

Cela faisait quelques jours que je ne disposais plus du service multiposte de Free[1]. A tout hasard, j'ai lu que le problème était peut-être dû à un message[2] s'affichant sur la télévision, bloquant ainsi le multiposte. N'ayant pas de télévision, je ne pouvais le voir, il faut donc valider ce message à l'aveugle. La méthode est la suivante[3] :

  1. redémarrer la freebox.
  2. lancer la réception de la TV sur la freebox à l'aide du bouton rouge en haut à droite de la télécommande[4].
  3. attendre 20 secondes et appuyer sur la touche OK.
  4. attendre 05 secondes et appuyer sur la touche OK.
  5. attendre 05 secondes puis appuyer deux fois sur la touche P-.
  6. attendre 05 secondes et appuyer sur la touche OK.
  7. attendre 10 secondes et éteindre la télévision sur la freebox à l'aide du bouton rouge en haut à droite de la télécommande.

'Hope it helps comme on dit.

Notes

[1] Cela se traduisait par la sortie d'un grand nombre d'erreur par VLC

[2] lequel ? Je ne sais pas :-)

[3] ma méthode s'applique sur une freebox v4

[4] pour les freebox v4 tout au moins

Monday, January 21 2008

A blog-post long guide to the compilation of Qt 4.x with Microsoft Visual Studio

Put your Qt sources in a directory containing no spaces in its path. This is merely a temporary directory; you might move compiler files afterwards.

Configure the environment by running the following command in a command line:

$>"C:[Your Visual Studio install path]\Common7\Tools\vsvars32.bat"
(C:\Program Files\Microsoft Visual Studio 9.0 for me)

Or run Start Menu > All Programs > Microsoft Visual C++ 9.0 Express edition (or Microsoft VisualStudio 2005, or Microsoft Visual Studio 2008) > Visual Studio Tools > Visual Studio 2008 Command Prompt.

$>cd [your Qt directory]
$>configure
$>nmake
$>nmake confclean

That's all for Qt compilation. Hope you enjoyed!

Monday, October 29 2007

Apache2 + mod_fastcgi + suexec on debian etch

I know it's difficult to find good documentation to configure apache2 with mod_fastcgi and suexec to make php websites works. This configuration works well with Debian Etch (4.0).
Here an example of configuration.

Continue reading...