Yesterday, I read a book about magic (How to Know her Birth Day)
It, just an ordinary book with simple math calculation.
you just have to know about basic calculation such as multiply and other.
Then i think, why don't i write this calculation become simple software.
So i start to write the code for this magic
Showing posts with label Script. Show all posts
Showing posts with label Script. Show all posts
Wednesday, May 27, 2009
Wednesday, May 13, 2009
Prevent Autorun From Removeable disc
Prepare Umbrella before rain, That you should do every time or you will get something bad or unwanted happen to you and your family.
This article wrote for you who like to use a USB Flash disc to share your file with other. Some times (in this case recently) a computer virus or worm hide in your Flash disc and infect other computer when you plug in your FD in their computer (with windows flat form).
To prevent this happen, when you plug in your FD you also
This article wrote for you who like to use a USB Flash disc to share your file with other. Some times (in this case recently) a computer virus or worm hide in your Flash disc and infect other computer when you plug in your FD in their computer (with windows flat form).
To prevent this happen, when you plug in your FD you also
Wednesday, March 18, 2009
Autorun Script
Did you know how program or virus can run automatically from you disc or other storage device (USB flash disc for example) or give label on your storage device.
It Easy to make it
just need notepad.exe from your computer.
type in your new file
[autorun]
label="your name wanted"
icon="your icon addres (.../..../icon.ico)"
autorun="your Software addres (.../..../software.exe)"
After that Safe As your write with label "autorun.inf"
you can chose any or all from above.
there more other you can write
I just mentioned this one this time.
It Easy to make it
just need notepad.exe from your computer.
type in your new file
[autorun]
label="your name wanted"
icon="your icon addres (.../..../icon.ico)"
autorun="your Software addres (.../..../software.exe)"
After that Safe As your write with label "autorun.inf"
you can chose any or all from above.
there more other you can write
I just mentioned this one this time.
Wednesday, March 11, 2009
VBS (VBScript) - part 1
VBS Or Visual Basic Script is programing language . It Can be made use notepad in widows, you just to save as *.vbs
VBScript stands for Visual Basic Script, a scripting language developed by Microsoft to be used with Microsoft products, mainly Internet Explorer. It has gone through many changes over the years and is now mainly used as the default scripting language of ASP
VBScript was created to allow web page developers the ability to create dynamic web pages for their viewers who used Internet Explorer. With HTML, not a lot can be done to make a web page interactive, but VBScript unlocked many tools like: the ability to print the current date and time, access to the web servers file system, and allow advanced web programmers to develop web applications
VBScript is a prerequisite for ASP developers and should be learned thoroughly before attempting any sophisticated ASP programming. Programmers who have used Visual Basic in the past will feel more at home when designing their dynamic web pages with VBScript, but it should be known that only visitor's using Internet Explorer will be able to access your code, while other browsers will not be able to process the VBScript code.
VBS Sample
Write in notepad
'start
' end
save as *.vbs
run it
VBScript stands for Visual Basic Script, a scripting language developed by Microsoft to be used with Microsoft products, mainly Internet Explorer. It has gone through many changes over the years and is now mainly used as the default scripting language of ASP
VBScript was created to allow web page developers the ability to create dynamic web pages for their viewers who used Internet Explorer. With HTML, not a lot can be done to make a web page interactive, but VBScript unlocked many tools like: the ability to print the current date and time, access to the web servers file system, and allow advanced web programmers to develop web applications
VBScript is a prerequisite for ASP developers and should be learned thoroughly before attempting any sophisticated ASP programming. Programmers who have used Visual Basic in the past will feel more at home when designing their dynamic web pages with VBScript, but it should be known that only visitor's using Internet Explorer will be able to access your code, while other browsers will not be able to process the VBScript code.
VBS Sample
Write in notepad
'start
msgbox="hello world"
' end
save as *.vbs
run it
Subscribe to:
Posts (Atom)