Posts

Showing posts from 2015

How to open screen lock without password?

Image
After long hours of tireless coding I found a simple method for unlocking any android device’s screen lock. Whether you want to spy on your friend or just know if your gf/bf is cheating on you or not, mobile phone is the perfect place to do that all. Disclaimer I am not responsible for any physical damages caused to your device due to your carelessness, and I would laugh at you if claim your damages refund for me. Components needed        1.        An android device with version  5.0 or above.        2.        Any android wear Pre-requisite knowledge Whoever’s phone you are planning to hack into make sure two things-        1.        You have access to one of his/her android wear (Bluetooth, android watch etc.).        2.        You know that person well enough so th...

How to root?

Image
How to root? Most of the methods of rooting are based on system or custom recovery tools. Its really easy if your phone has a system recovery. It will install a superuser(#su) app on your phone. Decided to take the red pill, there is no turning back. Comment the model of your phone and we will provide you the safest method to root. Happy rooting.

Is rooting for me?

Image
Is rooting for me? Now is rooting the right the right choice for you? If your major concerns are security and privacy and by "security and privacy" I mean really tight security then stop. Otherwise go for it and bring out the developer hidden in you. 😜 

Why you should root your phone?

Image
Image Source- http://www.dirtdawgsports.com Why Root? Surely this question arises that what is the need for rooting? Well your phone was build for the type of peoples for whom data security was more important than device developing. So to provide them security, some features were removed. So this gave them their security and left geeky people like me to exploit our phones manually.

Root-Description

Image
Root-Oveview If you haven't heard of root, you were probably living in the Gotham City fighting evil. But still for newbies, it is a way to explore the limits of  your android. Effects When you root your android, a superuser app is installed on your device. The installation of superuser requires special system rights which makes the rooting process a little complex. Superuser will behave like system apps and can't be uninstalled like system apps through standard procedure. Is it illegal? Rooting is completely legal. But voids your warranty, that's the only problem. But a rooted phone can also be unrooted until there is no hardware damage. To benefit from your warranty and root your android, just unroot it before turning it into customer care. Advantages Rooting gives you many rights that the developers of your device are not willing to give it to you. Trust me, rooting brings you one step closer to becoming a developer.

Program that asks for hour the trip started and the hour the trip ended and the distance traveled. Then outputs the average speed of the trip.

#include<iostream.h> void main() { int h1,h2,h,t; float s,d; cout<<"Enter starting time"; cin>>h1; cout<<"Enter ending time"; cin>>h2; h=h2-h1; if (h<0) {    t=h+24;   } else   {     t=h;    } cout<<"\nEnter Distance"; cin>>d; s=d/t; cout<<"Average speed= "<<s; }

Program that asks for height in inches and prints it in centimetres.

#include<iostream.h> void main () { float h; cout<<"Enter height"; cin>>h; h=h*2.54; cout<<"\nheight in cm= "<<h; }

Program that asks for length and breadth then prints area.

#include<iostream.h> void main() { float l,b,ar; cout<<"Enter length "; cin>>l; cout<<" \nEnter breadth"; cin>>b; ar=l*b; cout<<"\narea="<<ar; }

Write a C++ program to swap two variables.

#include<iostream.h> void main () { int a,b; cout<<"enter two variables"; cin>>a>>b; a=a+b; b=a-b; a=a-b; cout<<a<<b; }

Write a program to print the following pattern

Image
#include<iostream.h> void main () { for ( int i=1; i<=5;i++) {    for ( int j=1;j<=i;j++)      {         cout<<j;       }    cout<<'\n'; } }