This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function display_icon_social_network ($alt,$link) | |
{ | |
echo '<a href="'.$link.'" target="_blank" title="'.ucfirst($alt).'"><span class="icon '.strtolower($alt).'"></span></a>'; | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
display_icon_social_network('Blog', '//blog.antoine-augusti.fr'); | |
display_icon_social_network('Cv', '//cv.antoine-augusti.fr'); | |
display_icon_social_network('Facebook', '//www.facebook.com/AntoineAugusti'); | |
display_icon_social_network('Twitter', '//www.twitter.com/AntoineAugusti'); | |
display_icon_social_network('Github', 'https://www.github.com/AntoineAug'); | |
display_icon_social_network('Instagram', '//statigr.am/antoineaugusti'); | |
display_icon_social_network('Feed','//www.antoine-augusti.fr/blog/feed/'); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function display_icon_social_network ($alt,$link) | |
{ | |
echo '<a href="'.$link.'" target="_blank" title="'.ucfirst($alt).'"><span class="icon '.strtolower($alt).'"></span></a>'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function display_icon_social_network ($alt,$link) | |
{ | |
echo '<a href="'.$link.'" target="_blank" title="'.ucfirst($alt).'"><span class="icon '.strtolower($alt).'"></span></a>'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function display_icon_social_network ($alt,$link) | |
{ | |
echo '<a href="'.$link.'" target="_blank" title="'.ucfirst($alt).'"><span class="icon '.strtolower($alt).'"></span></a>'; | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Keyboard Shortcuts | |
// Antoine AUGUSTI - [email protected] | |
// Merci à Adrien COURTOIS pour son aide | |
var isG = false; | |
$(document).keydown(function(e) | |
{ | |
if (e.which == 71 || e.keyCode == 71) | |
{ |
OlderNewer