Skip to content

Instantly share code, notes, and snippets.

View chtitux's full-sized avatar

Théophile Helleboid - chtitux chtitux

View GitHub Profile
<?php
/**
* Etudiant form.
*
* @package trombinoscope
* @subpackage form
* @author T. Helleboid <t.helleboid@iariss.fr>
* @version SVN: $Id: sfDoctrineFormTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
*/
all:
.settings:
[...]
enabled_modules: [default, sfGuardAuth, sfGuardUser]
[...]
.actions:
login_module: sfGuardAuth
login_action: signin
Bonjour {$candidat},
IARISS a bien reçu ta candidature.
Nous l'examinons avec attention et te recontacterons très prochainement,
afin d'en savoir un peu plus sur toi et tes motivations.
Une réunion d'information sur IARISS sera organisée prochainement et
sera suivie d'un entretien personnel. Ne t'inquiète pas, tout te sera
rappelé par mail, et tu n'as pour l'instant rien à préparer.
#!/bin/sh
# from http://blog.interlinked.org/tutorials/rsync_time_machine.html
# T.Helleboid <t.helleboid@iariss.fr>
date=`date "+%Y-%m-%dT%H-%M-%S"`
BACKUPED_DIR=/home/chtitux/backup/
BACKUPED_HOST=hobbes.chtitux.org
BACKUPED_USER=chtitux
#include <iostream>
#include <sstream>
#include <string>
#include <stdexcept>
#include "dynamicarray.h"
const unsigned int DynamicArray::BLOCK_SIZE = 10;
DynamicArray::DynamicArray():
#include <iostream>
#include <sstream>
#include <string>
#include <stdexcept>
#include "dynamicarray.h"
const unsigned int DynamicArray::BLOCK_SIZE = 10;
/*
* Dictionary.cpp
*
* Created on: 8 nov. 2010
* Author: chtitux
*/
#include <iostream>
#include <sstream>
#include <string>
#include <stdexcept>
/*
* Processor.cpp
*
* Created on: 9 déc. 2010
* Author: chtitux
*/
#include <vector>
#include <algorithm>
#include <string>
// src/hassen/automation/configurator/Document.java
package hassen.automation.server;
public class Document implements IDeviceManager, IEventProcessor {
// ...
private Mapping getMapping (int id) {
for (Mapping m : getMappings()) {
if (m.getId() == id) return m;
#include <GL/glut.h>
#include <math.h>
#define WINDOW_WIDTH 300
#define WINDOW_HEIGHT 300
int obj = 0;
void Clavier(unsigned char touche, int x, int y) {