mardi 29 mai 2018

Android Erreur "OpenGLRenderer: Error creating image (0x502)"

Lorsqu'on développe pour Android (sous Android Studio) et qu'on déploie une application sur un émulateur (dans le cas présent sur un Nexus S API 22), l'erreur "OpenGLRenderer: Error creating image (0x502)" peut être affichée et l'application ne se déploie pas.

La méthode que j'ai trouvée est la procédure suivante :
- Cliquer sur "..." à droite de l'émulateur dans le menu
- Cliquer sur "Advanced" en haut de la fenêtre de droite qui s'affiche (sur fond gris)
- Définir le paramètre "OpenGL ES renderer" à "SwiftShader"
- Définir le paramètre "OpenGL ES API level" à "Compatibility (OpenGL ES 1.1/2.0)

La modification du paramètre OpenGL ES API level semble non obligatoire mais c'est la première solution qui a fonctionné pour moi.

Par contre la modification du paramètre OpenGL ES rendeder à SwiftShader semble obligatoire pour la résolution de ce problème.

mardi 22 mai 2018

vendredi 18 mai 2018

Programmation de Robots de Trading

Un nouveau prestataire en France propose de programmer vos robots de trading sur Metatrader 4 et 5, NinjaTrader 7 et 8, et ProRealTime. Des formations à la programmation de robots de trading sont aussi proposées.

Le site Investdata Systems :
https://tradingbot.wixsite.com/robots-de-trading

vendredi 11 mai 2018

How to install Tor on Kali Linux 4.14.x

Here is the easiest way to install tor on Kali Linux (or any other Linux system), without having to configure sources for apt-get :

To view the Kali Linux version that you have installed, use the following command in terminal :
uname --all

An example of version is as follows :
Linux Ubuntu 4.14.0-kali3-amd64 #1 SMP Debian 4.14.12-2kali1 (2018-01-08) x86_64 GNU/Linux

Through the Firefox ESR browser, Download Tor Browser from the following URL :
https://www.torproject.org/dist/torbrowser/7.5.4/tor-browser-linux64-7.5.4_en-US.tar.xz

The file will then be downloaded in the following folder :
~/Downloads/tor-browser-linux64-7.5.4_en-US.tar.xz

Uncompress the file from the file explorer (right click on the file then uncompress it) and you will then have the following folder :
~/Downloads/tor-browser-linux-64-7.5.4_en-US

From the file explorer copy all the files (but not the file named "tor") from :
~/Downloads/tor-browser-linux-64-7.5.4_en-US/tor-browser_en-US/Browser/TorBrowser/Tor/

To the following directories :
/lib/
/usr/lib/

Then in a terminal go to the following folder :
~/Downloads/tor-browser-linux-64-7.5.4_en-US/tor-browser_en-US/Browser/TorBrowser/Tor/

And start tor by entering the following command :
./tor

That's it !
You should then see the following output :



If you need to have access to the "tor" command from any terminal, just copy the "tor" file in the following folder :
/usr/bin/


Installer Tor sur Kali Linux 4.14

Pour connaître la version de Kali Linux, lancer la commande suivante dans une fenêtre terminal :
uname --all

Un exemple de version est :
Linux Ubuntu 4.14.0-kali3-amd64 #1 SMP Debian 4.14.12-2kali1 (2018-01-08) x86_64 GNU/Linux

Via le navigateur Firefox ESR, Télécharger le Tor Browser à l'adresse suivante :
https://www.torproject.org/dist/torbrowser/7.5.4/tor-browser-linux64-7.5.4_en-US.tar.xz

Le fichier se retrouvera alors dans le répertoire local suivant :
~/Téléchargements/tor-browser-linux64-7.5.4_en-US.tar.xz

Dans l'explorateur de fichiers, décompressez le fichier, ceci provoquera la création du répertoire suivant :
~/Téléchargements/tor-browser-linux-64-7.5.4_en-US

Toujours à l'aide de l'explorateur, copiez tous les fichiers (sauf le fichier "tor") qui sont dans le répertoire suivant :
~/Téléchargements/tor-browser-linux-64-7.5.4_en-US/tor-browser_en-US/Browser/TorBrowser/Tor/

Vers les répertoires suivants :
/lib/
/usr/lib/

Ensuite dans une fenêtre terminal, allez dans le répertoire suivant :
~/Téléchargements/tor-browser-linux-64-7.5.4_en-US/tor-browser_en-US/Browser/TorBrowser/Tor/

Entrez la commande suivante pour démarrer Tor :
./tor

Voilà !
Vous devriez avoir la sortie écran suivante :



Si vous souhaitez avoir la commande "tor" disponible par défaut dans toute fenêtre terminal ouverte, copiez le fichier "tor" vers le répertoire /usr/bin/