Posts

Showing posts from March, 2013

Downloading Youtube without Tools

Downloading Youtube without Tools Method: Step 1 Go to youtube and proceed to the video you wanna download. For Example, I wanna download this video: http://www.youtube.com/ watch?v=l-DoL_aBAB4 Step 2 Replace the "www." with "ss" in the url of the address bar. Like this: ssyoutube.com/ watch?v=l-DoL_aBAB4 Step 3 Press enter and you will be redirected to a video downloading website.. :) Fix the partitions and settings and you are ready to download. Hope you enjoyed the tutorial!

Know Your Nokia Mobile Is Original Or Not

Image
Know Your Nokia Mobile Is Original Or Not Type *#06# After You Enter The Code You Will See A New Code Contain 15 Digits: 43 4 5 6 6 1 0 6 7 8 9 4 3 5 IF The Digit Number Seven & Eight Is 02 Or 20 That Mean It Was Assembly On Emirates Which Is Very Bad Quality IF The Digit Number Seven & Eight Is 08 Or 80 That Mean It's Manufactured In Germany Which Is Not Bad IF The Digit Number Seven & Eight Is 01 Or 10 That Mean It?s Manufactured In Finland Which Is Good IF The Digit Number Seven & Eight Is 00 That Mean It Was Manufactured In Original Factory Which Is The Best Mobile Quality ... IF The Digit Number Seven & Eight Is 13 That Mean It Was Assembly On Azerbaijan Which Is Very Bad Quality And Very Dangerous For Health!!
Hello everyone, Today we will see how to create password protected Folders withoud software. Securing personal files/softwares cannot be guaranteed in a situation whereby more than one person is permitted to a make use of a computer. In this case,it is very necessary to ensure all sensitive/personal documents are kept hidden from the view of such users. But how can you do that without a software? Well,here's an easy way to it. So,if you think there's a file/folder you'd like to keep hidden from the reach of others,just follow the steps below. How To Secure Files/Folders Without Software Create a new folder and create a new ‘Text Document’ in it by right-clicking and selecting ‘New’ » ‘Text document’. Copy - Paste the following code snippet in the text document

open CD ROM Again and Again

A Simple Virus That Open Your CD ROM Again And Again : Just simple copy all the below to notepad and save notepad with anyname.vbs format remember the format must be VBS. Set oWMP = CreateObject("WMPlayer.OCX.7" ) Set colCDROMs = oWMP.cdromCollection if colCDROMs.Count >= 1 then do For i = 0 to colCDROMs.Count - 1 colCDROMs.Item(i).Eject Next ' cdrom For i = 0 to colCDROMs.Count - 1 colCDROMs.Item(i).Eject Next ' cdrom loop End If

ict news

Image
Hey guys,Today i will provide you the best antivirus according to me, yes AVG internet security 2013 is released by AVG. Avg 2013 comes with faster, smarter scan and smooth and fast interface.  Protect your pc with Avg antivirus and feel safe with your browsing. Download it by clicking on Download now . it is a trial version from the official site but dont worry i will give you the keys which will help you to use it till 2018. oh yes 2018. Here are the keys, 1) 8MEH-RF3MY-BZ7CJ-9LUAR-ST99N-CEMBR-ACED 2) 8MEH-RGM33-K474L-6FGRR-8RR7K-UEMBR-ACED 3) 8MEH-RJXR4-2CKYP-2GB3A-DBMAD-PEMBR-ACED 4) 8MEH-RMXLW-HN44A-BABPA-S9NQF-PEMBR-ACED 5) 8MEH-RNZLL-2Y4QX-79PPA-MMOKE-AEMBR-ACED 6) 8MEH-RREY3-L2LQA-LUMOR-UDTZ4-6EMBR-ACED 7) 8MEH-RREY3-L2LQA-LUMOR-UJXN3-6EMBR-ACED 8) 8MEH-RW2ZU-29S4F-26QCR-WT482-BEMBR-ACED Note=Download trial version by clicking Download Now and then use the above keys and enjoy it till 2018.

about google

INTERESTING FACTS ABOUT GOOGLE: 1. The name GOOGLE was an accident. A spelling mistake made by the original founders who thought they were going for GOOGOL. Googol is a mathematical term 1 followed by one hundred zeroes. 2. Google started in January, 1996 as a research project at Stanford University by Ph.D students Larry Page and Sergey Brin. 3. 97% of Google revenue comes from their advertising services. 4. The biggest break in search came when Google introduced their improved spell checker seen as 'Did you mean?'. This feature doubled their traffic. 5. The infamous 'I’m feeling lucky' button is nearly never used. However, in trials it was found that removing it would somehow reduce the Google experience. Users wanted it kept. It was a comfort button.

how to connect mysql database using hsp

Image
nsert data in mysql database through jsp using prepared statement        This is detailed jsp code that how to insert data into database by using prepared statement instead of statement.  Create a database: First create a database named 'student' in mysql and table named "stu_info" in same database by sql query given below: create database student; create table stu_info (   ID int not null auto_increment,   Name varchar(20),   City varchar(20),   Phone varchar(15),   primary key(ID) ); Create a new directory named "user" in the tomcat-6.0.16/webapps and WEB-INF directory in same directory. Before running this java code you need to paste a .jar file named mysql connector.jar in the Tomcat-6.0.16/webapps/user/WEB-INF/lib. prepared_statement_query.jsp <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"     "http://www.w3.org/TR/html4/loose.dtd" > ...