Captain: Sharmin

12/11/06

bu4035

Today's topic:

Linux

 
-Linux is a free Unix-type operating system originally created by Linus Torvalds with the assistance of developers around the world.

- Source code for Linux is freely available to everyone.

-Click on the link below to find out more about the operating system that is causing a revolution in the world of computers.

http://www.linux.org/
 

On wed we will meet Room:A117 next to math center.

 

PROJECT SEARCH EXAMPLE

Keith Wallace

<SCRIPT LANGUAGE="javascript">
var inputSearch=["evolution", "programming", "languages", "chapter 1",
                            "input", "process", "output", "IPO", "chapter 2"];
var resultSearch=["http://www.geocities.com/spudbundy/TutorialProject.htm#chap01",                 "http://www.geocities.com/spudbundy/TutorialProject.htm#chap01", "http://www.geocities.com/spudbundy/TutorialProject.htm#chap01", "http://www.geocities.com/spudbundy/TutorialProject.htm#chap01",
"http://www.geocities.com/spudbundy/TutorialProject.htm#chap02", "http://www.geocities.com/spudbundy/TutorialProject.htm#chap02", "http://www.geocities.com/spudbundy/TutorialProject.htm#chap02", "http://www.geocities.com/spudbundy/TutorialProject.htm#chap02"];

function buttonPressed( )
{
var result = 0;
var searchKey = searchForm.inputValue.value;

for( var index = 0; index < inputSearch.length; index++ )
{
if( inputSearch[index] == searchKey )
{
document.writeln( "SEARCH FOUND:<p> <a href=" + resultSearch[index] + ">" + resultSearch[index] + "</a>" );
result=1;
}
}

if(result==0)
document.writeln( "Sorry, No MATCH for: " + searchKey );
}
</SCRIPT>

<body>

<form name="searchForm">
<input name="inputValue" type="text" size="20">
<input name="search" type="button" value="search" onclick = "buttonPressed()">