2010/03/25

Advertisments and banner ads

Banner ads and advertisments are popup indow that are used for adversing. Those sites
are doing adversing because they want people to visit their sites

2010/03/20

Hacking in video games

Some people are hacking in their video games because they think it is "cool" or because they
don't win so much in video games

2010/03/14

2010/03/12

Dangerous Dialers

The type of virus that I am going to talk about today is Dialers. Dialers are programs that infiltrate
into another's person computer and dial expensive phone without the knowledge of the
user.

2010/03/09

Vbscript codes download

Here is some downloads that you would like. Just copy and paste it on notepad and save it as download.vbs




ATIVOICE is an application that transforms your writings into voice here is the code

strText = inputbox("What do you want to say?")

set objVoice = CreateObject ("SAPI.spVoice")
ObjVoice.speak strText


MULTICALCLATOR is a calculator that does multiplication only here is the code

do
Dim a
a=inputbox("put in your number:")
b=inputbox("number you would like to multiply:")
if not isnumeric (a) then
wscript.quit
end if
if not isnumeric (b) then
wscript.quit
end if
c=msgbox("Your Answer: "& a * b)
loop