Category: Program

shape
shape
shape
shape
shape
shape
shape
shape
Standard

Android Annotations Restful Tutorial (PHP Webservice)

In this tutorial I’ll be teaching you how to build a Restful service on Android using Android Annotations v4.2. I’ll use a PHP server as an example. Libraries used: Android Annotations v4.2 Spring Framework v2.0.0.M3 (Android version) Jackson Databind v2.8.5 If you would like to delve deeper into the resources described here in this tutorial,

Standard

Android MPAndroidChart – Billing Chart (Example)

MPAndroidChart is a library for Android used to build charts. Precisely because of its simplicity and wealth of resources, I decided to post this brief tutorial on how to use it to build a customized Billing X Month chart. We will use MPAndroidChart v3.0.1 in our example. Repository and official documentation: https://github.com/PhilJay/MPAndroidChart Demo To download

Standard

How to quickly back up MySQL in WAMP

Instead of dumping all the tables, as an alternative we can copy the necessary files from the MySQL “data” folder, and then restore these files in your new WAMP installation.   Copy all the files with the prefix “ib” and all the folders that correspond to the databases you want to back up, just as

Standard

JAVA: RMSE, MBE, Willmott, Correlation and Determination Coefficient Algorithm

JAVA: RMSE, MBE, Willmott, Correlation Coefficient and Determination Algorithm public class Estatistica { public String getStats (double valorObs[], double valorEst[], int n){ double somaQuadrados = 0; double somaTotalObs = 0; double somaTotalEst = 0; double estMenosMediaObs = 0; double obsMenosMediaObs = 0; double somaQuadradoEstMenosMediaObsMaisObsMenosMediaObs = 0; double somaEstMenosObs = 0; double somatorioUm = 0; //

Latest news

Latest news directly from our blog.