J’ai longtemps cherché comment faire un joli bash prompt J’ai trouvé pas mal d’exemples datant de 1996 et 1998 que j’ai du pas mal bidouiller.
Archives
All posts for the month February, 2008
Here’s a brand new theme for ayozone
2 columns, fixed width but larger than the old one. Bright colors make it clean and maybe more readable.
There might have some bugs left, feel free to leave a comment here if you find some.
(note: IE fixes aren’t yet implemented).
![]()
Voici un petit guide pour vous aider a fabriquer et mettre en place un plugin de recherche pour firefox et Internet Explorer 7 (un moteur de recherche de votre site à ajouter dans le champ de moteurs de recherche du navigateur à droite de la barre d’adresse), avec découverte automatique du plugin et lien pour installer facilement le plugin.
Basé sur les spécifications d’opensearch, ce plugin est vraiment simple a implémenter et installer.
Continue Reading
Here’s a drop down animated menu example made with jquery.js 1.2.2
Roll over this text to show the menu
Related links:
Here’s the source code :
$(function() {
$(“a#menu-call”).mouseover( function() { $(“ul#menu”).animate({height:”show”,opacity:”show”},”slow”); return false; });
$(“ul#menu”).hover( function() {}, function() { $(“ul#menu”).animate({opacity:1.0},1125).slideUp(375); return false; });
$(“a.mlnk”).hover( function() { $(this).css({ backgroundColor:”#ececec”, border:”1px solid #1042de” }) }, function() { $(this).css({ border:”none”,backgroundColor:”#ffffff” }) } );
})
menu