Skip to content

Instantly share code, notes, and snippets.

View MatonAnthony's full-sized avatar
💉
Making healthcare better

Anthony Maton MatonAnthony

💉
Making healthcare better
  • Smals ASBL
  • Belgium
View GitHub Profile
@MatonAnthony
MatonAnthony / mozfr-reunion-aout-2014
Created August 29, 2014 21:36
Mozfr réunion d'août : greffe officieux
[21:48:00] <pandark> Bonsoir
[21:48:19] <pandark> Mozinet, tu es là ?
[21:48:36] <Mozinet> oui
[21:49:45] <pandark> Bon, j'ai eu un imprévu et il n'y a pas grand monde… on fait une réunion à deux ? :Þ
[21:50:00] <Mozinet> si tu veux :D
[21:51:41] <pandark> Si il y a d'autres gens, manifestez-vous ^^
[21:54:36] <Mozinet> :D
[21:55:16] <kinou> là
[21:55:21] <pandark> Bon, alors je pense qu'en ce moment, pour la France, le principale évènement c'est la sortie des téléphones dans les Leclercs, ça mobilise pas mal de gens. À part ça, il y a la braderie de Lille.
[21:55:42] <Flore> je suis là aussi :)
This file has been truncated, but you can view the full file.
Homebrew 0.9.5
==> Downloading http://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz
Already downloaded: /Library/Caches/Homebrew/python-2.7.8.tgz
==> Verifying python-2.7.8.tgz checksum
tar xf /Library/Caches/Homebrew/python-2.7.8.tgz
==> Downloading http://bugs.python.org/file30805/issue10910-workaround.txt
Already downloaded: /Library/Caches/Homebrew/python--patch-9926640cb7c8e273e4b451469a2b13d4b9df5ba3.txt
==> Verifying python--patch-9926640cb7c8e273e4b451469a2b13d4b9df5ba3.txt checksum
==> Patching
/usr/bin/patch -g 0 -f -d /private/tmp/python-RDXVVB/Python-2.7.8 -p1 -i /private/tmp/python--patch-KiJICX/issue10910-workaround.txt
public boolean estEgaleA(Suite s){
if(s.estVide() && this.estVide()) return true;
if (s.estVide() || this.estVide()) return false;
return this.tete().estEgalA(s.tete()) && corps().estEgaleA(s.corps());
}
#!/bin/bash
##############################
# A copier dans /etc/init.d/ #
##############################
TS_DIR="répertoire du TS"
TS_USER="utilisateur qui lançe le TS"
RUN_SCRIPT="ts3server_minimal_runscript.sh"
$(function() {
$('#login').click(function(){
authentificationService("login");
});
$('#register').click(function(){
authentificationService("register");
});
$('#list').click(function(){
$.ajax({
url: '/room',
import com.auth0.jwt.JWTSigner;
import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.JWTVerifyException;
import com.owlike.genson.Genson;
import javax.servlet.ServletException;
import javax.servlet.http.*;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
import com.auth0.jwt.JWTSigner;
import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.JWTVerifyException;
import com.owlike.genson.Genson;
import javax.servlet.ServletException;
import javax.servlet.http.*;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
#include <stdlib.h>
#include <time.h>
#include <stdio.h>
int main(int argc, char **argv){
if(argc != 3){
fprintf(stderr, "Number of argument invalid");
return 1;
}
int x = atoi(argv[1]);
#include<stdio.h>
#include<errno.h>
#include<stdlib.h>
#include<time.h>
#include<limits.h>
int main(int argc, char** argv){
// Le programme reçoit 2 arguments
if(argc != 3){
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <time.h>
#include <limits.h>
void impTable(int **, int, int);
void replaceDoublon(int **, int, int);
int moyenneTable(int **, int, int);
int minMax(int **, int, int, int *, int *);