Sunday 08 July 2007
Howto use your login/pass system to Bugzilla (or other app) without edit any line of code ?
Par Dereckson, Sunday 08 July 2007 à 05:48 :: General
Aller au contenu | Aller au menu | Aller à la recherche
Sunday 08 July 2007
Par Dereckson, Sunday 08 July 2007 à 05:48 :: General
Wednesday 27 June 2007
Par Dereckson, Wednesday 27 June 2007 à 04:41 :: C#
bugzproxy, a C# based assembly that provides access to a Bugzilla server, is coded under linux and is designed to work with Mono.
It seems Mono is less strict than specifications or Microsoft implementation.
So here some modifications to compile it.
Monday 25 June 2007
Par Dereckson, Monday 25 June 2007 à 00:20 :: C#
Take some properties, like private int teaCupCount;
This web generator will generate the following code:
public int TeaCupCount {
get {
return teaCupCount;
}
set {
teaCupCount = value;
}
} Monday 11 June 2007
Par Dereckson, Monday 11 June 2007 à 03:24 :: PHP
Vous avez déjà un site Web.
Vous voulez garder cet acquis.
Vous avez envie de développer de nouvelles applications avec CodeIgniter.
Don't panic!
Voici la solution.
Friday 01 June 2007
Par Dereckson, Friday 01 June 2007 à 04:02 :: TCL
I've just ported Sajax 0.12 in TCL.
Sajax (Simple Ajax Toolkit), is an open source tool designed to help websites using the Ajax framework (also known as XMLHTTPRequest).
Thursday 17 May 2007
Par Dereckson, Thursday 17 May 2007 à 04:34 :: SurfBoard
Nouvelle fonction dans SurfBoard, .mail <destinataire> [objet]

Voici son mode d'emploi ainsi que le code source, sous license BSD.
Monday 14 May 2007
Par Dereckson, Monday 14 May 2007 à 23:30 :: Visual Studio
Souvent, une question revient sur #Win : quel est l'intérêt des éditions complètes de Visual Studio par rapport aux versions express ?

Saturday 28 April 2007
Par Dereckson, Saturday 28 April 2007 à 17:31 :: Espace Win
Thursday 26 April 2007
Par Dereckson, Thursday 26 April 2007 à 18:26 :: Espace Win
Si vous souhaitez publier rapidement des screenshots commentables, ou toute autre source de pics, une nouvelle fonction d'Espace Win est pour vous : les galeries.
Cette application PHP/AJAX vous ouvre un accès FTP sur lequel vous uploadez vos images, vous choisissez le titre de la galerie, pressez ensuite sur le bouton créer et hop vous avez votre galerie.
Wednesday 21 March 2007
Par Dereckson, Wednesday 21 March 2007 à 08:40 :: Espace Win
Quelques nouvelles d'Espace Win : la réouverture du forum et la couverture des jeux vidéos par Patrick Lalonde (Bless)
Wednesday 28 February 2007
Par Dereckson, Wednesday 28 February 2007 à 00:19 :: Lifestyle
Tu es :
Néo (Matrix) : 77%
Hannibal Lecter : 76%
Batman / Bruce Wayne : 74%
Indiana Jones : 72%
James Bond : 72%
Yoda (Star Wars) : 72%
Et bien, à 1% près, je l'ai échappé belle. J'aime bien aussi mon côté Yoda et James Bond.
Faites vous aussi le test sur http://quel-heros-de-film.es-tu.com.
Tuesday 27 February 2007
Par Dereckson, Tuesday 27 February 2007 à 23:47 :: FreeBSD
Want a very secure Apache / PHP setup?
SuEXEC allows CGI execution under user own accounts and not webserver one. So, if a security hole is exploited through a script, that's normally - if your FreeBSD server is correctly chmoded - gives access to resources.
The genuine SuEXEC drawback is you've to prefix each, as any other CGI script (remember #!/usr/bin/perl ?). We'll slightly edit the SuEXEC.c code to avoid that.
SuEXEC will force you to chmod correctly and securely your web content: 700 the scripts, 711 the directories (755 to allow list them). If that's sounds too paranoid or you're tired of your users' complaints, you can ask SuEXEC to ignore permissions check (but what's the interest of this method in this case? You should consider chroot instead.). If you're a console guru, I've coded an autochmod script to make our life paranoid but easier ;-)