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
{
"dictionary": "Packages/Language - French/fr-moderne.dic",
"extensions":
[
"tex"
],
"spell_check": true,
"auto_complete": true
}
{
"name": "yourApp",
"require": {
"mv/laravel-google-authenticator": "dev-master"
},
"autoload": {
"classmap": [
"vendor/mv/laravel-google-authenticator",
"vendor/mv/laravel-google-authenticator/library"
]
$ composer update
<?php
session_start();
// Include vendor autoload
include 'vendor/autoload.php';
// Your website name, or URL. It will be displayed in Google Authenticator
define("WEBSITE_URL", 'exampleWebsite');
// The username of the user
$username = "username";
$ php -S localhost:8080
<?php
$nb_annees = 20; // NE MODIFIEZ QUE CE PARAMETRE PUIS CHARGEZ CETTE PAGE
// A partir de cet endroit, toute modification est à vos risques et périls ;D
$nb_date_palindrome = 0;
$nb_test_palindrome = 0;
$nb_tests_max = $nb_annees * 365;
function microtime_float() {
list($usec, $sec) = explode(" ", microtime());
<?php
// Connexion à la base de données
require "kernel/config.php";
$db = mysql_connect($host, $user, $pass) or die('Erreur de connexion '.mysql_error());
mysql_select_db($user,$db) or die('Erreur de sélection '.mysql_error());
// Requête SQL permettant la création de notre camembert
$query = mysql_query("SELECT nb_posts, username FROM users ORDER BY nb_posts DESC LIMIT 0,3");
@AntoineAugusti
AntoineAugusti / install-ml.sh
Created August 22, 2014 16:44
Script to install useful ML tools on Linux
#!/bin/bash
sudo apt-get install gfortran libopenblas-dev liblapack-dev python-dev libfreetype6-dev libxft-dev libjpeg-dev libpng-dev
wget https://bootstrap.pypa.io/get-pip.py
python get-pyp.py
pip install numpy
pip install pillow
pip install scipy
pip install matplotlib
pip install scikit-learn
pip install stemming
<?php
/*
* Test des fonctions random
* Copyleft 2012 - Antoine AUGUSTI - INSA de Rouen
* www.antoine-augusti.fr - antoine@augusti.fr
*
*/
header("Content-type: image/png");
// Notre taille d'image finale
$sizex = 800;