Visualizzazione post con etichetta android. Mostra tutti i post
Visualizzazione post con etichetta android. Mostra tutti i post

giovedì 4 agosto 2016

LIVE!!: Installazione Bluestacks on mac

Installazione di Bluestacks on mac:
Bluestacks è un simulatore android su PC o mac
1)Link per il dowload: http://www.bluestacks.com/it/index.html?__dlrd=1














2)Sincronizzazione dello Store in corso:















3) Installazione di Pokemon go...


Live, in aggiornamento

mercoledì 3 agosto 2016

Live! Decompiler Apk

Applicazione per decompilare applicazioni
1)Decompilare applicazioni tramite Dexplorer:
https://play.google.com/store/apps/details?id=com.dexplorer&hl=it

2)Decompiler Facebook app
















































Il processo che resta, aperto nella memoria di tutti gli smartphones che hanno installato Facebook: Facebook.katana;

Per riscriverla basta adottare un semplice convertitore OCR
http://www.onlineocr.net/

















Il risultato è molto buono:














Riportando il codici in Glot.io il risultato è il seguente:


Proviamo ancora a tradurre qualche blocco di codice tramite il lettore OCR:
























Codice dopo la lettura tramite traduttore OCR
https://glot.io



mercoledì 27 luglio 2016

mercoledì 20 aprile 2016

EFarmer

Un'applicazione per la gestione di un'azienda agricola all'inter o del mondo di Android e del mondo delle applicazioni



venerdì 25 marzo 2016

mercoledì 16 dicembre 2015

Informatica: binary search

/*
Summary: Binary search compares the search value with the value of the middle element of the array. If they match, then a matching element has been found and its position is returned. Otherwise, if the search value is less than the middle element's value, then the algorithm repeats its action on the sub-array to the left of the middle element or, if the search value is greater, on the sub-array to the right.
Complexity - O(log n)
*/

#include <stdio.h>
void main()
{
int array[10];
int i, j, num, temp, keynum;
int low, mid, high;

printf("Enter the value of num \n");
scanf("%d", &num);

printf("Enter the elements one by one \n");
for (i = 0; i < num; i++)
{
scanf("%d", &array[i]);
}

        /*  Bubble sorting begins */
for (i = 0; i < num; i++)
{
for (j = 0; j < (num - i - 1); j++)
{
if (array[j] > array[j + 1])
{
temp = array[j];
array[j] = array[j + 1];
array[j + 1] = temp;
}
}
}

printf("Sorted array is...\n");
for (i = 0; i < num; i++)
{
printf("%d\n", array[i]);
}

printf("Enter the element to be searched \n");
scanf("%d", &keynum);
/*  Binary searching begins */
low = 1;
high = num;
do
{
mid = (low + high) / 2;
if (keynum < array[mid])
high = mid - 1;
else if (keynum > array[mid])
low = mid + 1;
} while (keynum != array[mid] && low <= high);
if (keynum == array[mid])
{
printf("SEARCH SUCCESSFUL \n");
printf("Number Located at position:%d ",mid+1);
}
else
{
printf("SEARCH FAILED! \n Number not found.");
}
getch();
}

/*
Input: Enter the value of num
5
Enter the elements one by one
23
90
56
15
58
Sorted array is...
15
23
56
58
90
Enter the element to be searched
58
*/

domenica 22 novembre 2015

domenica 25 ottobre 2015

Twitter

Twitter economic history

Math Guru

Una nuova applicazione che vi permetterá di colmare le lacune in matematica, lo sviluppo dell'app è stato seguito da un team tutto italiano