Sunday, 20 November 2016

Easiest Way to Download Youtube Videos without using any Software

03:11

1) Download Directly via YouTube Website using SaveTube.

Step 1: Find URL of you video.



Step 2: Add SS to your link after www.



Step 3: Press ENTER and it will redirect you to SaveTube .

Step 4: Select your needed resolution and download the video.

 

2) ClipConvertor.cc

Step 1: Find the URL of your YouTube Video.




Step 2: Copy that Link and Paste it in ClipConvertor.cc

 Step 3: If you want convert that video to another file like MP3, M4A or AVI there is an option available below that if you will not select format of video then it will automatically download in MP4 or FLV. After choosing video format press CONTINUE.

Step 4: Then it will show you possible available video’s high to low resolutions file with its size. Just select your needed resolution and press START.












 Step 5: Press DOWNLOAD and cheers.

Sunday, 3 April 2016

Cheack Your Computer Gender (Male/Female)

06:19
Have you ever wondered how can you make your computer speak whatever you input to it like in the movies? Would it not be fun? If only it was possible! Rejoice, because now it is possible. Well, if you wish to know how to do this, then you have come to the right place. With this trick, you can create a script in Windows which will make your computer speak whatever you input to it.


To create one such talk script, follow the steps given below:-
 

 
Steps
  1. Open Notepad.
  2. Copy and paste the exact code given below.
          Dim Message, Speak
          Message=InputBox("Enter text","Speak")
          Set Speak=CreateObject("sapi.spvoice")
          Speak.Speak Message
    3. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Speak.vbs or "*.vbs".
    4.  Double click on the saved file, a window will open like the one in the image. Enter some text in enter text column and click OK.

Now your Computer will speak / talk what you typed in Step 4. Try it yourself.

Windows Compatibility: This VBS file can be executed on all versions of Windows including Windows XP, Windows Vista, Windows 7 and Windows 8.

Personal Experience: I personally showed this trick to many of my friends and they were literally left awestruck. You too can impress your friends by making your PC talk and be the Computer Wiz.

Sunday, 24 January 2016

SHORTCUT VIRUS REMOVING TRICKS

05:19
If your Pen Drive is infected with any of the following viruses:
  1. Autorun.inf
  2. new folder.exe
  3. New_Folder.exe
  4. ravmon.exe
Actually this viruses are hidden and can’t be seen even after you enable show hidden folders.
Following simple dos command will change the attributes of these files ,there after you can remove it by pressing delete key.
Follow these steps:
  1. You have to Type ” cmd ” in Run.
  2. Then Switch to the drive on which pen drive is connected (like C:\> h: enter).
  3. Type ” attrib -s -h *.* /s /d ” and hit enter (don’t forget spaces).
Now you can see hidden virus files and you can delete them.

Sunday, 27 December 2015

How to we Edit any Website Online

00:19

JavaScript Tricks: Edit Websites in Browser (Live)

Here is an example picture demonstrating the Google Homepage edited by me to say that I own Google.
Edit Websites Browser

This is just an example. You can use it for anything like showing wrong traffic stats or for fooling people by showing that someone said something about them on Facebook or Twitter. It depends only on your creativity. But I would advise you to stay ethical and use it for entertainment purposes only.

(Mozilla Firefox does not support this. If you use Firefox, you can use the bookmarklets given at the end of this post. If you use Google Chrome and the code does not seem to work, precede it with "javascript:" without quotes.)

To use this trick, all you need to do is just copy the code given below and paste it in your address bar after you have opened the website you wish to edit. And start editing.

javascript:document.body.contentEditable%20=%20'true';%20document.designMode='on';%20void%200
You can capture a screenshot by pressing the Print Screen key or by using the Snipping Tool if you use Windows 7 or Windows Vista. If you wish to again make the website non-editable to give a more authentic look, copy and paste the code given below in the address bar after you are done editing (does not work in Firefox).
javascript:document.body.contentEditable%20=%20'false';%20document.designMode='off';%20void%200

The editing that you do will however be temporary as it is not server-sided. You can also save the modified website through your browser by File>Save. This works on all common web browsers including Chrome, Firefox, Opera and Internet Explorer.