This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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(). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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" /> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_setenvif.c> | |
<IfModule mod_headers.c> | |
BrowserMatch MSIE ie | |
Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie | |
</IfModule> | |
</IfModule> |
OlderNewer