Sunday 2 November 2014

Computer tricks of which you are not aware

             Computer tricks which you had never tried 

Today we are going to show some of the best tricks of computer which are not tried by us normally. So here are those tricks which you can try on your windows based computers:

  1. Have fun with Notepad
    If you think that Notepad is just a basic text editor, then, you will be amazed by its capabilities. You can use Notepad to create everything from personalized logs to harmless viruses that are incredibly annoying.

    Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks

    Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat. 

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

    Notepad tricks
    Matrix Falling Code Effect - Notepad Trick

    Upon running the bat file, you will see the "Matrix falling code" effect.

    Make Your Keyboard Type (Any) Message Continuously-VBS Trick

    This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs. You will need to restart your computer to stop this. Try this after closing all important programs.

    Set wshShell = wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "This is a Virus. You have been infected."
    loop
    Send this file to your friends as an email attachment to see the fun.


    Notepad Virus

    Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

    This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.

    Set oWMP = CreateObject("WMPlayer.OCX.7")
    Set colCDROMs = oWMP.cdromCollection
    do
    if colCDROMs.Count >= 1 then
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    End If
    wscript.sleep 5000
    loop

    Double click to open this file and you will be impressed by this awesome trick.

    Make a Personal Diary(Log) with Notepad (Easter Eggs)

    Notepad Diary
    Notepad Diary
    You can use this trick to create a personal log with Notepad which will automatically include the current date and time before your note. To do so, open Notepad and type .LOG in capital letters and press Enter. Save the file. Now, every time you open this file, notepad will automatically insert the current time and date before the note. Just enter your note and save the file each time after making an entry.

    All these Notepad tricks are totally harmless and would not harm your PC in any way.  To close any of the VBS trick given, open task manager and close the wscript.exe process. These tricks work on Windows 8, Windows 7, Windows Vista and Windows XP.


Facebook Status updates

                     Facebook Status updates. . . .



1.When you take a good selfie but no one is online to see it 
*pushes back selfie release date*.
 
2.On facebook a guy can post "I love my girl". And that will get all his numerous girlfriends excited. 
 
3.Don`t let Facebook fool you, we are not "friends" . 
 
4.Facebook is now like home, if I don`t come back in 24 hours it means either I am lost, dead, sick or had an accident. 
 
5.I hate when you try to screenshot on your iPhone but instead your app closes and your screenturns off 
 
6.Admit it you should be doing something really important right now but you`re on Facebookinstead. 
 
7.I hate when people spell your name wrong on Facebook. I mean f-ck, its right here! 
 
8.I think some people just log into Facebook just to send me game #requests.
 
9.I`ll look back embarrassingly on old posts and think about how stupid and childish I was 2 days ago. 
 
10.wanting to change your profile picture but not having any decent photos to use
                              

Command Prompt tricks

  1. Command Prompt too has some tricks up its sleeves
    If you think that the Command prompt is a boring old program that no one uses, you are making a huge mistake. It can be used for everything from watching ASCII Star Wars to making folders that you cannot delete.  
  2. Make Folders that you cannot delete:Are you tired of accidentally deleting important folders?Have you ever wondered how you can make a folder which neither can be deleted nor be renamed. Well, if you have, then you have come to the right place. With this trick, you will be able to create folders in Windows which cannot be renamed or deleted.

  3. Basic Concept
    The basic concept behind this trick is the use of Keywords. Keywords are reserved words in any programming language that cannot be used as names of variables. Windows also uses certain keywords in its programming. Some of them are con, aux, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8 and lpt9.

    Make Undeletable and unrenamable folders

    A Test
    To test this concept, make a new folder in Windows and try to give it a name same as any keyword mentioned above.

    Result
    Windows will not rename your folder to any of the keyword given above.

    Trick
    So the question arises, how can we make a folder with a keyword as its name? The solution to this problem is included in Windows itself. As we know that Windows has evolved from D.O.S.(Disk Operating System), its commands can be used in Windows. You can use D.O.S. Programming in Windows to create a folder with a keyword as its name using the steps given below:-

    1. Click on Start.
    2. Click on Run. Type in "cmd" without quotes.
    3. In the Command Prompt Window that opens, type the name of the drive you wish to create your folder in the format <drive-name>: and press Enter. e.g. If you wish to create the undeletable folder in D drive, type "D:" without the quotes. Note that the folder cannot be created in the root of C: drive (if C: is your system drive).
    4. Type this command- "md con\" or "md lpt1\" without the quotes and press Enter. You can choose any of the keywords given above as the name of your folder.

    Now Windows will create an undeletable, unrenamable folder in the drive you entered in Step 3. However, the folder can be renamed to another keyword using Windows Explorer.

    Deleting the Folder

    Although, it is not possible to manually delete the folder, you can delete the folder by typing "rd con\" or "rd lpt1\" in Step 4 instead of "md con\" or "md lpt1\". 

    Windows Compatibility: This works on Windows XP, Windows Vista, Windows 7, Windows 8 and Windows 8.1.

    Try it yourself to create one such folder which can neither be deleted nor be renamed.
  4. 4- Shutdown your computer giving a funny reason
  5. What if your computer shuts down saying that it is tired and doesn't want to work anymore? It would be fun, wouldn't it?

    Shutdown Your Computer or a Remote PC via Command Prompt

    Most of us shutdown our computers using the power button given in the Start menu. Some of us use the physical power button on our machines. Very few people actually use other means of shutting down a computer and even less is the number of people who use the command prompt to shutdown a computer.

    A reason for this is that most of us don't know that the command prompt can be used to not only shutdown, restart or log off our computer instantly but also to shutdown a remote computer provided you have administrative access. It can also be used to hibernate a computer and give a comment containing the reason for shutdown. This post will show you how to do all this.

    Shutdown computer with command prompt
    Required
    A computer running Windows (XP, Vista, 7, 8 or 8.1) with the command prompt working perfectly, i.e. not disabled by a virus.

    Initial Steps 
    1) Press Windows Key + R.
    2) Enter CMD and press Enter.

    This will start the command prompt. Follow the instructions below depending on what you want to do.

    Shutdown Local Machine (Your Computer)
    Type "shutdown -s" without the quotes in the command prompt and press Enter. Shutdown is the command being executed and the switch -s tells the computer to shutdown.

    Restart your Local Computer 
    Type "shutdown -r" in the command prompt and press Enter. In this case, the command switch -r is telling the computer to restart after shutdown.

    Log Off the Current User
    Type "shutdown -l" in the command prompt and press Enter. The -l command switch tells the computer to log off.

    Shutdown a Remote Computer
    Type "shutdown -s -m \\name of the computer" in the command prompt and press Enter. Replace \\name of the computer with the actual name of the remote computer you are trying to shutdown. As mentioned earlier, you must have administrative access to the computer you are trying to shutdown. To know if you have administrative access, press Windows key + R and then type the name of the computer and press Enter.

    Note: If you don't remember the name of the remote computer, you can look for it by opening a list of all the computers you are connected to by executing "net view" in command prompt.

    If you can connect to the computer, you will be asked to login with your username and password. Upon entering them, a window will display the list of all the directories available to you. This should help you know whether you can or cannot shutdown the remote computer.

    Hibernate a Local Computer
    Type in "Rundll32.exe Powrprof.dll,SetSuspendState" without the quotes and press Enter. Your computer should hibernate, if it does not, then you must enable hibernation to do this.

    Shutdown your or a remote computer after a specific time
    Type "shutdown -s -t 60" to shutdown your computer after 60 seconds. Upon executing this, a countdown timer displaying a warning message will be shown. This command uses the -t command switch followed by a variable (which is 60 in this case) which represents the number of seconds after which the computer will shutdown.

    Display a Message containing the reason for shutdown
    Type shutdown -s  -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) in the Command Prompt and press Enter. The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages. One example :-

    Skynet has become self aware. John Connor did not stop me. You can not use your PC anymore.

    Stop a System Shutdown
    Type "shutdown -a" and press Enter. This will stop the system from shutting down if the countdown to shut down has not reached 0.

    5- Know your IP address, DNS Server's address and a lot more about your Internet Connection
    Command Prompt can even let you know your IP address. Just type ipconfig/ all in the command prompt and press Enter. Along with your IP address and DNS servers, command prompt will also return a ton of information like your host name, primary DNS suffix, node type, whether IP Routing ,Wins Proxy, and DHCP are enabled, your network adapter's description, your physical (MAC) address etc . 

    6- Know if your neighbours are stealing your WiFi connection
    command prompt codes
    Command Prompt can let you know if someone is connected to your Local Area Connection and using it. Just follow the steps:- 
    1) Open your browser and visit http://192.168.1.1 or http://192.168.0.1 depending on your router. 
    2) Find the tab that mentions “Attached Devices” or something similar.
    3) Find the computer name, IP address and MAC Address (sometimes called Physical Address or Hardware Address) of your computer using the previous trick.
    4 )Compare it with those displayed by your router in Step 2. If you notice some strange devices, then your neighbour has been sneaking in on your internet connection and it is best to add a password.

    7- Know if someone is hacking your computer/ Trace a Hacker
    Command Prompt hacks
    Want to know if someone is hacking your computer? Command Prompt can help you find if someone you don't know is connected to your computer stealing private data. Just executenetstat -a and the command prompt will return a list of computers that your computer is connected to. In the results returned, Proto column gives the type of data transmission taking place (TCP or UDP) , Local address column gives the port with which your computer is connected to an external computer and the Foreign Address column gives the external computer you are connected to along with the port being used for the connection. State gives the state of the connection (whether a connection is actually established, or waiting for transmission or is “Timed Out”).

    These tricks work on Windows 8.1, Windows 8, Windows 7, Windows Vista, Windows XP and all previous versions of Windows.

Saturday 1 November 2014

iPhone 6 Plus

                     iPhone 6 Plus Specifications:



DESIGN

  • Device type:
    • Smart phone
  • OS:
    • PopupiOS (8.x)
  • Dimensions:
    • 6.22 x 3.06 x 0.28 inches (158.1 x 77.8 x 7.1 mm)
  • Weight:
    • 6.07 oz (172 g)
      the average is 4.9 oz (139 g)
  • Body material:
    • Aluminium

DISPLAYPopupbenchmark

  • Physical size:
    • 5.5 inches
  • Resolution:
    • 1080 x 1920 pixels
  • Pixel density:
    • 401 ppi
  • Technology:
    • IPS LCD
  • Screen-to-body ratio:
    • 67.91 %
  • Colors:
    • 16 777 216
  • Touchscreen:
      • Multi-touch
  • Features:
    • Light sensor, Proximity sensor, Scratch-resistant glass, Oleophobic coating

CAMERAbenchmark

  • Camera:
      • Popup8 megapixels
    • Flash:
      • Dual LED
    • Aperture size:
      • F2.2
    • Focal length (35mm equivalent):
      • 29 mm
    • Camera sensor size:
      • 1/3"
    • Features:
      • PopupBack-illuminated sensor (BSI), Autofocus, Phase detection autofocus, Touch to focus, Optical image stabilization, Face detection, Exposure compensation, Burst mode, Digital zoom, Geo tagging, High Dynamic Range mode (HDR), Panorama, Self-timer
  • Camcorder:
      • 1920x1080 (1080p HD) (60 fps), 1280x720 (720p HD) (240 fps)
    • Features:
      • Digital image stabilization, Continuous autofocus, Picture-taking during video recording, Video calling, Video sharing
  • Front-facing camera:
      • 1.2 megapixels

HARDWAREbenchmark

  • System chip:
    • Apple A8
  • Processor:
    • Dual core, 1400 MHz, 64-bit
  • Graphics processor:
      • PowerVR GX6650
  • System memory:
    • 1024 MB RAM
  • Built-in storage:
    • 128 GB

BATTERYbenchmark

  • Stand-by time:
    • 16.0 days (384 hours)
      the average is 20 days (485 h)
  • Talk time (3G):
    • 24.00 hours
      the average is 15 h (911 min)
  • Not user replaceable:
    • Yes

MULTIMEDIAPopupbenchmark

  • Music player:
    • Filter by:
      • Album, Artist, Playlists
    • Features:
      • Album art cover, Background playback
  • Speakers:
    • Earpiece, Loudspeaker

INTERNET BROWSING

  • Browser:
    • Popup
      • Safari

TECHNOLOGY

  • CDMA:
    • 800, 1700/2100, 1900 MHz
  • GSM:
    • 850, 900, 1800, 1900 MHz
  • UMTS:
    • 850, 900, 1700/2100, 1900, 2100 MHz
  • FDD LTE:
    • 700 (band 13), 700 (band 17), 700 (band 28), 800 (band 18), 800 (band 19), 800 (band 20), 850 (band 5), 850 (band 26), 900 (band 8), 1700/2100 (band 4), 1800 (band 3), 1900 (band 2), 1900 (band 25), 2100 (band 1), 2600 (band 7) MHz
  • Data:
    • LTE Cat 4 (150/50 Mbit/s), HSPA (unspecified), HSUPA, EDGE, GPRS, EV-DO Rev.A, EV-DO Rev.B
  • nano-SIM:
    • Yes
  • Positioning:
    • GPS, A-GPS, Glonass, Cell ID, Wi-Fi positioning
  • Navigation:
    • Turn-by-turn navigation