Sunday, April 20, 2014

How to transfer files via wifi without Cables and Internet

FEEM is WIFI file tranfering Software
Download it from official website
http://www.tryfeem.com/

Enjoy chat and local file transfers over  Wi-Fi.
Without Internet
Without cables.
Works with your awesome  pictures,  music,  videos, and documents

Saturday, April 19, 2014

How to Remove hidden Virus From Harddrive or Pendrive


If your Pen Drive is infected with any of the 

following viruses

* Autorun.inf
* new folder.exe
* Iexplorer.vbsve

* Bha.vbs
* nfo.exe
* New_Folder.exe
* ravmon.exe
* RVHost.exe
or any other files with extension.
Actually this viruses are hidden and can’t be seen even after
you enable show hidden folders.
Following simple cmd command will change the attributes of
these files ,there after you can remove it by pressing delete
key.
Follow these steps:
1) Type cmd in Run.
2) Switch to the drive on which pen drive is connected
(like C:\> h: press enter)
3) type command: attrib -s -h *.* /s /d and press enter
(don’t forget spaces).
Now you can see hidden virus files and you can delete them.
enjoy……

How To Download Youtube Videos without any software?

How To Download Youtube Videos without any software?

1. First Go to Youtube Homepage.
2. Then select the video you want to download. I will demonstrate with video url given below.
https://www.youtube.com/watch?feature=player_embedded&v=zWCX9Ix48xk
Now add save or ss or kick before youtube and press enter.
3. After adding any of the above keyword the above link will become.
https://www.saveyoutube.com/watch?feature=player_embedded&v=zWCX9Ix48xkOr
Or https://www.ssyoutube.com/watch?feature=player_embedded&v=zWCX9Ix48xk
https://www.kickyoutube.com/watch?feature=player_embedded&v=zWCX9Ix48xk
4. Now you will be redirected to a new page from where you can download youtube videos in any format of your choice. You may also download only the soundtrack of the video in mp3 format.
Thankyou and share with your friends and please it's my humble request that don't say it's a very old trick because there are many who still dont know the trick 

Sunday, April 13, 2014

See who’s tracking you online

See who’s tracking you online

Lightbeam is a Firefox add-on that uses interactive visualizations to show you the first and third party sites you interact with on the Web. As you browse, Lightbeam reveals the full depth of the Web today, including parts that are not transparent to the average user
DOWNLOAD 
FIREFOX ADD-ON
https://addons.mozilla.org/firefox/addon/lightbeam/

The Collusion Add-on 

Collusion (by Jono XDethe Elza) is an experimental add-on for Firefox ,Crome that allows you to see which sites are using third-party cookies to track your movements across the Web. It shows, in real time, how that data creates a spider-web of interaction between companies and other trackers.

DOWNLOAD 
FIREFOX ADD-ON
CROME ADD ON

Tuesday, April 08, 2014

How to Download Google books in pdf Format


Google Books Downloadloader for Windows, Android and 
Mac OS X


Google has announced the launch of its new service; Google Books. Currently, you can purchase books (U.S. only) or download more than 3 million free books from anywhere in the world using this service. 
As announced by Google, the aim of this project is to provide users with their own bookshelf on hand, no matter where they are. Purchased or downloaded books can be read using a desktop browser, as well as through mobile devices based on the Android operating system or iOS. Additionally, the books can be read on any e-reader with Adobe Digital Editions software.
As opposed to the Picasa service which provides an access to photos, the Google Books service does not allow users to download free electronic editions without digital copy protection and use them on other devices. Google Books Downloader is a little software that allows you to save these books in PDF, JPEG or PNG format (note: it supports only the books marked as "full view")

DOWNLOAD
Google Books Downloader (for Windows)

Google Books Downloader Mac (for Macintosh)
Google Books Downloader (for Android)
Adobe Reader XI (for Windows)  -->A software that lets you view and print Portable Document Format (PDF) files.

.Feature
 It gives the feature to download books in pdf fomat
 Having ability to scan maximum no of pages

Oracle/Mysql Tutorial

Oracle/Mysql Tutorial (playlist)

Thursday, April 03, 2014

How to lock folder without any software.

How to lock folder without any software.
1) Open notepad
2) Copy the following code:

cls 
@ECHO OFF 
title Folder Private 
if EXIST "HTG Locker" goto UNLOCK 
if NOT EXIST Private goto MDLOCKER 
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== PASSWORD_GOES_HERE goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

3) You can put your own password in the place of PASSWORD_GOES_HERE

4) Change the Save as type to 'All files'

5) And name your file as passwordprotected.bat or anything but don't forget to put '.bat'

6) Save and you are done . Enjoy your password protected folder without any software.