Ad

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Tuesday, April 21, 2015

Dropped your phone in water? Things to do.........

Dropped your phone in water? Things to do......

 

It has happened to the best of us: accidentally dropping a smartphone in water and then frantically trying anything and everything to recover it. But worry not, help is here. We tell you how best you can save your smartphone if it has taken a dip in water.

  1. Switch it off
    Since chances are that your phone was powered on when you dropped it in water, it is advisable to switch it off immediately after taking it out. Switching the phone off will prevent any short circuits from damaging the internals of the phone.
     
    2. Remove everything
    After switching off the phone, start removing everything possible from the phone. Remove the battery, sim cards, memory cards as well as any accessory (stylus, case, cover, skin).
    You can easily wipe these off with a dry cloth so that no water remains on these items.
     
     3. Shake it off
    Gently shake the phone to get rid of any water present in the headphone jack, charging port or under the physical buttons.
    After this, wipe the phone with a dry cloth, toilet paper or paper napkins thoroughly to remove any water present on the exterior.
     
    4. Bury it in rice
    This is one of the most commonly used and known techniques. Get an airtight container or a ziplock bag and fill it with uncooked rice. Place your phone inside the rice, shut the ziplock bag/container tight and keep it in a dry place.
    You can also try using oatmeal or silica gel packs.
     
    5. Wait it out
    Leave the phone in the rice for at least 24 to 48 hours. Ideally, do not even try to take the phone out to check if it has started working or not. If there wasn't too much water damage, your phone should start working.
     
    6. If it still doesn't work
    Please keep in mind that there is no guarantee that your phone will survive a dunking in water. There is only a 50% chance of your phone working again.

    In case the phone does not work even after trying out the rice method, take it to an authorized service centre. They will be able to dismantle your phone and assess the damage better. Remember that water damage is not covered in the standard warranty of your smartphone.
     
    7. Be prepared
    There are a couple of ways of preventing your phone from getting damaged by water in the first place.
    If you are travelling in the rainy season or going to a beach/swimming pool, then you can get a waterproof carry pouch. They are available for as little as Rs 150 from e-commerce websites. These pouches have a transparent window which allow you to see incoming notifications.

     

Tuesday, March 3, 2015

Insert data into database from JFrame Form - part 1

Wednesday, November 26, 2014

Making Calculator by using Java GUI and NetBeans 8.0 - part 5

Making Calculator by using Java GUI and NetBeans 8.0 - part 4

Making Calculator by using Java GUI and NetBeans 8 0 - part 3

Making Calculator by using Java GUI and NetBeans 8.0 - part 2

Making Calculator by using Java GUI and NetBeans 8.0 - part 1

Sunday, September 15, 2013

Free Virus Scanner -- Antivirus Software

Is your Computer infected ? HouseCall software can quickly identify and fix a wide range of threats including viruses, worms, Trojans, and spyware. Includes:
  • The software is included Full scan, Custom scan and Quick scan option,
  • Support for 64-bit, Windows 7, Windows 7 SP1, and Windows 8. 
It is a popular and effective software for identifying and removing viruses, trojans, worms, unwanted browser plugins, and other malware software.


What's new in HouseCall?

  • Full system and custom scan options are available. So, users can easily specify which folders to scan
  • Quick scan option offers targeted scanning of critical system areas and active threats, reducing scan times to within a few minutes.
  • Smart Scan technology references threat intelligence in the cloud, delivering the latest protection while reducing download times
  • Smart Feedback shares threat information with the Smart Protection Network, which correlates data from a global intelligence network to quickly discover new threats
  • Review and Restore functionality lets you check and compare scan results and recover files
  • Enhanced detection and cleanup addresses rootkits and other sophisticated threats.

Making a Virus by Using Notepad or other Text Editor

Disable Keyboard by Batch File Programming

  •  What is Batch File Programming ?
          Batch file programming is the native programming offered by the Microsoft Windows Operating
System. Batch file is created using any text editors like notepad, WordPad, WinWord or so on, which
comprises of a sequence of built-in commands used to perform some often done tasks like deleting a
series of files of same type or of different type, creating logs, clearing unwanted craps from your
computer and even for creating a batch VIRUS.
Whenever a Batch program is executed, it was interpreted line-by-line by the CLI (Command
Line Interpreter) command.com or the cmd.exe. Batch file is really helpful in automating tedious tasks
and for maintaining system logs. The commands used while creating a batch file are case insensitive, in
the sense that it may accept both lower and upper case letters.

Wednesday, September 4, 2013

Uva 11530 - SMS Typing

SMS Typing in Uva is a string related problem. Before writing the code you should know about string. Let's see What is string ?

string : string in C Programming Language is actually a one-dimensional array of characters which is terminated by a null character '\0'.

The following declaration and initialization create a string consisting of the word "Hello". To hold the null character at the end of the array, the size of the character array containing the string is one more than the number of characters in the word "Hello".