Facebook Auto View Increaser

Well its already 11:33 pm in the night, my friend had his video on youtube but unlucky he can’t get view like jumbled gangnam style or any other justin barber shit. So i decided lets make a script for him so that the poor soul would get a relief, which would actually increase his view count and make little popular though it ain’t that much. I wrote this one but wasn’t able to use proxies so as to stay anonymous in the eye of google, but will make it later when i get time.

So here is the link to my handy little script Facebook Viewer.

Don’t you worry its virus free if you wan’t to be sure then here’s Antivirus scan Result: Link

P.S Don’t for get to clean up your temp folder because this tool will load your temp folder with shits it operates on, to delete those file just use some awesome tools like cleanUP, Ccleaner or any other tools that cleans up your temp and recycle bin folder.

Is your kindle stuck?

I’ve had my kindle stuck for hours and wasn’t able to find any solution. Google was helpful a lot of times and it didn’t disappoint me. so i might just as well do a quick post on this for those who are too lazy to read the manual just like me.”

Kindle 2 or Kindle 3 reset: This is easy – just hold the power button (next to the headphone jack) for 15 seconds or 30 and the device will reboot.
If this doesn’t help then try Recharging or or plug it to your computer for some minute, and see you’r little android back in action. Cheers!!

To clear EditText when a Button is Clicked

Well we usually don’t have a cross sign in an android to delete the mistype keyword when usually we type fast or we are in rush. But In our Android App we definitely can have a customized button which does the task for us.

My Assumption:
1. I have a EditText called firstName, where i mistype and want to delete it at once.
2. I create a clear button with its ID clearsearchSubmit.
3. I set OnClickListener in the clear Button.
4. So when Button is Clicked, it Checks the ID if it matches then we set the text of firstName as null i.e (“”)

firstName = (EditText) findViewById(R.id.firstName);
clear = (Button) findViewById(R.id.clearsearchSubmit);
clear.setOnClickListener(new OnClickListener() {
@Override public void onClick(View v) {  

// TODO Auto-generated method stub  

if (v.getId() == R.id.clearsearchSubmit); firstName.setText(“”); } });


This will help to clear the wrong keywords that you have typed in so instead of pressing backspace again and again you can simply click the button to clear everything.It Worked For me. Hope It Helps! Cheers!!