473,568 Members | 2,762 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Decline and fall of scripting languages ?

No good news for scripting-language fans:

http://www.phpmag.net/itr/news/pseco...odeid,113.html

Regards
Kay

Aug 6 '05 #1
30 2017
Do you know anyone who has dropped LAMP for a proprietary Web solution?
Or vice versa?
Know any sys-admins that have dropped their use of scripting languages
for something else?
What are the alternatives that are supposedly driving scripting
languages out?

- I'm unconvinced.

Aug 6 '05 #2
Kay Schluehr wrote:
No good news for scripting-language fans:

http://www.phpmag.net/itr/news/pseco...odeid,113.html


The study was conducted by Evans Data Corporation. Look here:

http://www.evansdata.com/n2/about_us_clients.shtml

Do you see the PSF or Larry Wall on the list?

Reinhold
Aug 6 '05 #3
On Sat, 2005-08-06 at 03:24 -0700, Kay Schluehr wrote:
No good news for scripting-language fans:

http://www.phpmag.net/itr/news/pseco...odeid,113.html


It didn't say what they left PHP, Perl and Python for (if you are to
even believe their findings).

PHP has been losing programmers in droves... to Ruby on Rails, but I'm
not sure how that is bad news for scripting-language fans.

Commercially funded studies are completely untrustworthy. I've seen
contradictory studies published within months of each other by the same
research firms - it was more indicative of a change in clientelle than
anything else.

Cliff

--
cl***@develix.c om
http://www.develix.com :: Web applications and hosting :: Linux, PostgreSQL and Python specialists ::
Aug 6 '05 #4
Cliff Wells <cl***@develix. com> writes:
It didn't say what they left PHP, Perl and Python for (if you are to
even believe their findings).

PHP has been losing programmers in droves... to Ruby on Rails, but I'm
not sure how that is bad news for scripting-language fans.


That's the second time in one or two days that I've heard Ruby on
Rails mentioned. Can anyone here post a paragraph or two description?
I sort of know what Ruby is, a very OOP-ified Perl-resemblant
language, that's also implemented only as an interpreter. I can't see
punting Python for it.

Lately I'm interested in OCAML as a possible step up from Python. It
has bogosity of its own (much of it syntactic) but it has static
typing and a serious compiler, from what I understand. I don't think
I can grok it from just reading the online tutorial; I'm going to have
to code something in it, once I get a block of time available. Any
thoughts?
Aug 7 '05 #5
Paul Rubin wrote:
Cliff Wells <cl***@develix. com> writes:

It didn't say what they left PHP, Perl and Python for (if you are to
even believe their findings).

PHP has been losing programmers in droves... to Ruby on Rails, but I'm
not sure how that is bad news for scripting-language fans.


That's the second time in one or two days that I've heard Ruby on
Rails mentioned. Can anyone here post a paragraph or two description?
I sort of know what Ruby is, a very OOP-ified Perl-resemblant
language, that's also implemented only as an interpreter. I can't see
punting Python for it.

www.google.com
Aug 7 '05 #6
Joseph Garvin <k0*****@kzoo.e du> writes:
That's the second time in one or two days that I've heard Ruby on
Rails mentioned. Can anyone here post a paragraph or two description?
I sort of know what Ruby is, a very OOP-ified Perl-resemblant
language, that's also implemented only as an interpreter. I can't see
punting Python for it.

www.google.com


Thanks but I wanted a more Pythonic point of view.
Aug 7 '05 #7
Paul Rubin wrote:
Joseph Garvin <k0*****@kzoo.e du> writes:
That's the second time in one or two days that I've heard Ruby on
Rails mentioned. Can anyone here post a paragraph or two description?
I sort of know what Ruby is, a very OOP-ified Perl-resemblant
language, that's also implemented only as an interpreter. I can't see
punting Python for it.


www.google.com


Thanks but I wanted a more Pythonic point of view.


google('"ruby on rails" python')

Plenty of Pythonistas posting paragraphs pontificating on the Pythonic
perspective.

--
Robert Kern
rk***@ucsd.edu

"In the fields of hell where the grass grows high
Are the graves of dreams allowed to die."
-- Richard Harter

Aug 7 '05 #8
Paul Rubin wrote:
Cliff Wells <cl***@develix. com> writes:
It didn't say what they left PHP, Perl and Python for (if you are to
even believe their findings).

PHP has been losing programmers in droves... to Ruby on Rails, but I'm
not sure how that is bad news for scripting-language fans.
That's the second time in one or two days that I've heard Ruby on
Rails mentioned. Can anyone here post a paragraph or two description?
I sort of know what Ruby is, a very OOP-ified Perl-resemblant
language, that's also implemented only as an interpreter. I can't see
punting Python for it.


Exacly. While Pythons main attitude is reducing clutter and redundant
design while staying within an OO mindframe, Ruby reintroduces perlish
clutter. Ruby was mentioned to be a more clean OO language than Python
in times where Python didn't support inheritance from builtins.
Nowadays anonymus blocks are the single most discriminative feature
Ruby is praised for. Therefore Ruby seems to be more modern than Python
to some people allthough it's design concept is reactionary - or
"postmodern " what may be the same in post-postmodern times ;-)
Lately I'm interested in OCAML as a possible step up from Python. It
has bogosity of its own (much of it syntactic) but it has static
typing and a serious compiler, from what I understand. I don't think
I can grok it from just reading the online tutorial; I'm going to have
to code something in it, once I get a block of time available. Any
thoughts?


The whole ML family ( including OCaml ) and languages like Haskell
based on a Hindley-Milnor type system clearly make a difference. I
would say that those languages are also cutting edge in language theory
research. It should be definitely interesting to you. Since there is no
single language implementation you might also find one that supports
concepts you need most e.g. concurrency:

http://cml.cs.uchicago.edu/

Regards,
Kay

Aug 7 '05 #9
"Kay Schluehr" <ka**********@g mx.net> writes:
The whole ML family ( including OCaml ) and languages like Haskell
based on a Hindley-Milnor type system clearly make a difference. I
would say that those languages are also cutting edge in language theory
research. It should be definitely interesting to you. Since there is no
single language implementation you might also find one that supports
concepts you need most e.g. concurrency:

http://cml.cs.uchicago.edu/


Thanks. That link doesn't work right now but I'll try again later.

I wonder why the ML's didn't just dispense with the syntax nonsense
and present themselves unabashedly as statically typed Lisp dialects
complete with parentheses.

For concurrency, Oz looks neat, but probably doomed to Python-like
slow performance (at least the shootout benchmarks have been pretty
poor). I find it easier to understand than ML though I haven't coded
anything in it either. I wonder if using logic variables for
inter-thread communication without careful conventions can lead to
total spaghetti.

I also want to check out Erlang and Occam, in my copious free time.

Aug 7 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
2406
by: Ajay | last post by:
hi! is there an authoritative source on the performance of scripting languages such as python vs. something like java, c, c++. its for a report, so it would be awesome if i could quote some well-known authority on this. thanks
33
2703
by: Quest Master | last post by:
I am interested in developing an application where the user has an ample amount of power to customize the application to their needs, and I feel this would best be accomplished if a scripting language was available. However, I want to code this application in Python, and I have not yet heard of an implementation of another scripting language...
15
4244
by: Birahim FALL | last post by:
Hi, I'm very fresh to PostgreSQL, coming from Oracle. I want to developp web applications based on apache and postgresql. Is there an equivalent of OWA server (Oracle Web Application server) for postgresql. Shortly, OWA provides an apache module and a set of stored procedures/functions that generate html pages. A simple example could be...
1
5618
by: andrewcw | last post by:
I have used System.Management in the past to extract and walk thru drives & check their type. I can also do it with COM's FileSystemObject. Here I am trying to just use the Management Object after using the Directory class... There seems to be a way to load the System Management Object with string path ( 8 overloads ), but every time I...
2
2030
by: James | last post by:
Are there any classes in c# for this or am I left to use the com interface, which I'm not sure how. And if I have this will it work on a machine that someone has disabled scripting? Finally, if I have MyClass objectA can I give it functions like MakeBigger that would be available from the script? I'm new to this so thanks for any info!!
4
6341
by: korund | last post by:
Is there any difference to read & write to windows Registry with VBScript or JavaScript? Both scripting languages have similar syntax. What is preferable use for this? thanks.
6
1620
by: Dynash | last post by:
i want to have a normal hyperlink, its for the terms of service, a i accept, and i decline. the i decline like i want it to have the onClick="closeIt()" in order for when someone clicks the i decline, its obvoiusly closes the webpage. I've tried to add it into normal code and i managed to get it to work, but it showed as a text area at...
2
6492
by: JosAH | last post by:
Greetings, Introduction Java is not Javascript and most of the times when questions end up in the wrong forum, they're moved to the other forum as soon as possible. Accidentally this article talks about Javascript a bit but it belongs in the Java section. Since version 1.6 of Java a script engine comes packaged with the core classes. A...
12
2154
by: jim | last post by:
I am new to web programming with javascript and I was wondering if javascript is the only scripting language that run in browsers like Firefox, IE and Opera or are there others? The scripting that I am refering to is scripting that will show in the user's browser when you "view source" - not scripting languages that run on the server. ...
0
7693
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7604
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8117
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6275
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5498
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5217
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3631
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2101
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
932
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.