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
$ 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
@AntoineAugusti
AntoineAugusti / limitConcurrentGoroutines.go
Last active July 30, 2024 17:58
Limit the maximum number of goroutines running at the same time
package main
import (
"flag"
"fmt"
"time"
)
// Fake a long and difficult work.
func DoWork() {
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6
steps:
- checkout
- restore_cache: