View HTML CSS Trick for wrapping long lines with PRE tag Note Useful for displaying code snippets for example pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */...Read More
View Firefox 3 CSS hack .foo, x:-moz-any-link { } /* FireFox 2 */ .foo, x:-moz-any-link, x:default { } /* FireFox 3 */ html>/**/body .foo, x:-moz-any-link, x:default { } /*...Read More
View Récupérer le nombre total d’octet transféré sur une interface #Remplacez “eth0” par l’interface concernée. #Octets reçus : /sbin/ifconfig eth0 | grep bytes | sed -e “s/TX.*//g” | sed -e “s/.*RX/RX/g” #Octets envoyés :...Read More