Skip to content

Instantly share code, notes, and snippets.

View adrientetar's full-sized avatar

Adrien Tétar adrientetar

View GitHub Profile
@adrientetar
adrientetar / board-msm7x30.c
Created March 24, 2012 11:35
board-msm7x30.c /BOSCH_BMA150 driver section
#ifdef CONFIG_BOSCH_BMA150
static struct vreg *vreg_gp6;
static int sensors_ldo_enable(void)
{
int rc;
/*
* Enable the VREGs L8(gp7), L15(gp6)
* for I2C communication with sensors.
*/
@adrientetar
adrientetar / 54netmodules
Created June 14, 2012 07:48
CIFS/NFS insmod init.d script
#!/system/bin/sh
# insmod net modules - by adridu59
insmod /system/lib/modules/auth_rpcgss.ko
insmod /system/lib/modules/cifs.ko
insmod /system/lib/modules/lockd.ko
insmod /system/lib/modules/nfs.ko
insmod /system/lib/modules/rpcsec_gss_krb5.ko
insmod /system/lib/modules/scsi_wait_scan.ko
insmod /system/lib/modules/sunrpc.ko
@adrientetar
adrientetar / Nombres_cubiques.java
Created October 26, 2012 16:39
Nombres cubiques (v1.1)
/**
* Ce programme calcule les entiers cubiques inférieurs
* à un entier donné (inférieur à 3000).
* @author Adrien Tétar
* @version 1.1
*
* Changelog:
* 1.1 - 'tmp', 'tmp1' cleanup.
*
* Copyright © 2012, Adrien Tétar. All rights reserved.
@adrientetar
adrientetar / Nombres_cubiques.java
Created October 28, 2012 19:14
Nombres cubiques (v1.2)
/**
* Ce programme calcule les entiers cubiques inférieurs
* à un entier donné (inférieur à 3000).
* @author Adrien Tétar
* @version 1.2
*
* Changelog:
* 1.2 - added rechercheDesNombresCubiquesI().
* 1.1 - 'tmp', 'tmp1' cleanup.
*
@adrientetar
adrientetar / Nombres_cubiques.java
Created October 28, 2012 20:01
Nombres cubiques (v1.0)
/**
* Ce programme calcule les entiers cubiques inférieurs
* à un entier donné.
* @author Adrien Tétar
* @version 1.0
*
* Copyright © 2012, Adrien Tétar. All rights reserved.
*/
import javax.swing.JOptionPane;
@adrientetar
adrientetar / Nombres_cubiques.java
Created November 14, 2012 22:49
Nombres cubiques (v1.4)
/**
* Ce programme calcule les entiers cubiques inférieurs
* à un entier donné (inférieur à 3000).
* @author Adrien Tétar
* @version 1.4
*
* Changelog:
* 1.4 - reverted 1.2 and 1.3 changes.
* added sommeDesCubesDesChiffresS().
* added rechercheDesNombresCubiquesS().
@adrientetar
adrientetar / Matrix.java
Created November 23, 2012 16:15
Matrix
/**
* Ce programme calcule la matrice inverse à l'aide du
* pivot de Gauss.
* @author Adrien Tétar
* @version 1.0-WIP
*
* Copyright © 2012, Adrien Tétar. All rights reserved.
*/
import java.awt.GridLayout;
import javax.swing.*;
@adrientetar
adrientetar / Main.java
Created November 30, 2012 16:31
Opération sur fichiers
/**
* Ce programme fait diverses opérations sur un fichier texte.
* @author Adrien Tétar
* @version 1.0
*
* Copyright © 2012, Adrien Tétar. All rights reserved.
*/
import java.awt.Component;
import java.io.BufferedReader;
import java.io.BufferedWriter;
<!DOCTYPE html>
<html lang="fr-fr">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Calculatrice</title>
<meta name="author" content="Adrien TETAR" />
<meta name="description" content="Calculatrice en JavaScript" />
@adrientetar
adrientetar / .htaccess
Last active December 13, 2015 19:18
Pierre Feuille Ciseau, en HTML/CSS/Javascript. (W3C HTML5 compliant)
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
BrowserMatch MSIE ie
Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie
</IfModule>
</IfModule>