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_key { | |
display:inline-block; | |
min-width:10px; | |
height:18px; | |
padding:0 4px; | |
font-size:11px; | |
line-height:18px; | |
color:#555; | |
text-align:center; | |
background-color:#EEE; |
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 | |
/* | |
// Classement Elo | |
// Antoine AUGUSTI - [email protected] | |
*/ | |
//************** CONFIGURATION ****************// | |
//**********************************************/ | |
// cote initiale de P1 |
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 | |
var isG = false; | |
var peutFaireAction = true; | |
$(document).ready(function() | |
{ | |
$("input").focus(function(){ | |
peutFaireAction = false; | |
}); | |
$("input").mouseover(function(){ |
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
SELECT id_user, count(*) FROM teen_quotes_favorite GROUP BY id_user HAVING count(*) BETWEEN 75 AND 100 ORDER BY count(*) DESC |
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 | |
/* CONFIGURATION */ | |
$host = 'localhost'; | |
$user = 'root'; | |
$password = 'root'; | |
$db_name = 'euromillions'; | |
$time_to_play = 10000; | |
/* END OF CONFIGURATION */ |
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
CREATE TABLE `euromillions` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, | |
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
`nb_1` int(2) NOT NULL, | |
`nb_2` int(2) NOT NULL, | |
`nb_3` int(2) NOT NULL, | |
`nb_4` int(2) NOT NULL, | |
`nb_5` int(2) NOT NULL, | |
`star_1` int(2) NOT NULL, | |
`star_2` int(2) NOT NULL, |
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 | |
/* CONFIGURATION */ | |
$host = 'localhost'; | |
$user = 'root'; | |
$password = 'root'; | |
$db_name = 'euromillions'; | |
$time_to_play = 10000; | |
/* END OF CONFIGURATION */ |
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 | |
// N'a rien à voir avec du calcul. Mise en forme. | |
echo ' | |
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<title>Antoine Augusti</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;"/> | |
<meta name="description" content="Antoine Augusti : développement web, actualité technologique et projets en tout genres."/> |
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
var nb_tests, nb_decoupes_intervalle, nb_valeurs, partie_entiere, i, j, compteur : Entier | |
var valeur, partie_decimale, borne_inf, borne_sup, valeur_theorique, pourcentage_ecart : Réel | |
var tab, densite : Tableau [1...nb_valeurs] de Réel | |
// Les informations de base | |
nb_tests <- SQRT(2) // SQRT = square root (racine carrée) | |
nb_decoupes_intervalle <- 10 | |
nb_valeurs <- 1000 | |
pour i <- 1 à nb_valeurs faire |
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
find /var/lib/amavis/virusmails/ -type f -mtime +30 -delete |