Skip to content

Instantly share code, notes, and snippets.

View AntoineAugusti's full-sized avatar
🚄
High speed, low carbon

Antoine Augusti AntoineAugusti

🚄
High speed, low carbon
View GitHub Profile
<?php
function display_icon_social_network ($alt,$link)
{
echo '<a href="'.$link.'" target="_blank" title="'.ucfirst($alt).'"><span class="icon '.strtolower($alt).'"></span></a>';
}
?>
a span.icon {
height: 24px;
width: 24px;
margin-right: 12px;
vertical-align: middle;
display: inline-block;
background:url(sprite.png);
}
a span.icon.blog {
background-position:0 0;
<?php
/*
* Test des fonctions random
* Copyleft 2012 - Antoine AUGUSTI - INSA de Rouen
* www.antoine-augusti.fr - [email protected]
*
*/
$nb_tests = 10000000;
$erreur_moyenne = 0;
$somme_erreur = 0;
<?php
/*
* Test des fonctions random
* Copyleft 2012 - Antoine AUGUSTI - INSA de Rouen
* www.antoine-augusti.fr - [email protected]
*
*/
header("Content-type: image/png");
// Notre taille d'image finale
$sizex = 800;