Sunday 22 April 2012

Things to do with a new rooted Android phone - Beginners Guide

So welcome to the world of being rooted, you now have a nice shiny new rooted Android phone, but what can you do now. Lets see here...





Tuesday 10 April 2012

Basic Electronics Engineering by AP Godse and UA Bakshi



Download

Click on DOwnload , wait for 5sec and click Skip add and then Download your textbook

Give your Sony xperia X10 a New life


Sony Xperia x10 was the best smartphone in 2011 but due to the invasion of dual core smartphones its popularity decreased.

Solution for Low battery backup of Samsung galaxy S2 and galaxy Note


Fed up with the low battery backup of super smartphones Samsung galaxy s2 and note?

Here is the solution...

Wednesday 4 April 2012

New Libs for Adreno 200 to improve 3D performance

 
You can check out my previous post of LG p500 here. This new libs has work on all mobiles with adreno 200 chipsets. But i'm not sure.
I have tested only in xperia x8 and LG optimus one.

C programs using User Defined Functions

1) User defined functions to conduct a linear search.
    
 #include<stdio.h>
int n,i,a[10],key;

void input()
{
 printf("Enter the value of N =  ");
 scanf("%d",&n);

printf("Enter the numbers : \n ");
  for(i=0;i<n;i++)
{

  scanf("%d",&a[i]);
}}