|
Subject:
|
SCRIPTING LANGUAGES
|
|
Posted By:
|
itsmepiyush_kool
|
Post Date:
|
6/29/2006 4:23:50 AM
|
what are scripting languages? and whaft are they used for??? are perl and python scripting languages?????
|
|
Reply By:
|
Taimur Tanwir
|
Reply Date:
|
8/13/2006 6:05:34 PM
|
Around 1992, a company called Nombas began developing an embedded scripting language called C-minus-minus (Cmm for short). The idea behind Cmm was simple: a scripting language powerful enough to replace macros, but still similar enough to C (and C++) that developers could learn it quickly. This scripting language was packaged in a shareware product called CEnvi, which first exposed the power of such languages to developers. Nombas eventually changed the name Cmm to ScriptEase because the latter sounded “too negative” and the letter C “frightened people” (http:// www.nombas.com/us/scripting/history.htm). ScriptEase is now the driving force behind Nombas products. When the popularity of Netscape Navigator started peaking, Nombas developed a version of CEnvi that could be embedded into Web pages. These early experiments were called Espresso Pages, and they represented the first client-side scripting language used on the World Wide Web. Little did Nombas know that its ideas would become an important foundation for the Internet. As Web surfing gained popularity, a gradual demand for client-side scripting languages developed. At the time, most Internet users were connecting over a 28.8 kbps modem even though Web pages were growing in size and complexity. Adding to users’ pain was the large number of round-trips to the server required for simple form validation. Imagine filling out a form, clicking the Submit button, waiting 30 seconds for processing, and then being met with a message telling you that you forgot to complete a required field. Netscape, at that time on the cutting edge of technological innovation, began seriously considering the development of a client-side scripting language to handle simple processing.
When JavaScript first appeared in 1995, its main purpose was to handle some of the input validation that had previously been left to server-side languages such as Perl. Prior to that time, a round trip to the server was needed to determine if a required field had been left blank or an entered value was invalid. Netscape Navigator sought to change that with the introduction of JavaScript. The capability to handle some basic validation on the client was an exciting new feature at a time when use of telephone modems (operating at 28.8 kbps) was widespread. Such slow speeds turned every trip to the server into an exercise in patience.
Taimur Tanwir
|
|
Reply By:
|
woodyz
|
Reply Date:
|
12/13/2006 2:50:53 PM
|
Perl and Python are "scripting" languages.
One common element of scripting languages is that they are interpreted rather than compiled. The source code is processed by the interpreter line-by-line each time it is used, rather than being compiled into an exe or other binary executable file.
Scripting languages are used for numerous purposes - I use them daily for running batch operations on my box, as server side code in ASP web applications, as client side code in those same applications, for various utilities and applications that help me get my work done, and to automate or otherwise improve the functionality of some applications (such as Word or Excel) that I use.
You can look up "scripting language" somewhere like Wikipedia to get a good description.
Of course, this post has been sitting around for a long time, but that anwser by Taimur just didn't seem to be much help - for example, scripting languages have been around a long time (way before 1992 that is for certain!). Norbus? ScriptEase? What an imagination!
Woody Z http://www.learntoprogramnow.com
|