zlacker

[parent] [thread] 7 comments
1. empw+(OP)[view] [source] 2025-11-19 19:22:32
To me Perl was just Weird, to no particular end. Not the kind of mind expanding Haskell/Prolog/Lisp weirdness that opens up new possibilities. It just does roughly the same things as every other language, but everything is done slightly differently due to evolving out of the primordial soup of bourne shell and AWK filtered through Larry Wall's brain.

Perl and Python were similarly powerful and useful languages, but I could learn and start producing useful code in Python after reading an hour long tutorial. Perl took an order of magnitude longer, and remained more awkward to use just due to the Weirdness. There was a momentum building in the early 2000s toward competitors like Python and Ruby that were seen as less crufty and more modern.

Perl's developers seemed to agree, since they cooked up their own competitor to Perl, an entirely different language confusingly called Perl 6. The coexistence of Perl 5 and 6 made the Python 3 transition look like a cakewalk -- at least it would have save for Perl 6's almost entire failure to exist for over a decade after its inception. It produced lots of constantly churning specs and blog posts about register based virtual machines with native support for continuations or whatever, but no implementation of a language that anyone felt comfortable using for any real development. Meanwhile people kept using the ossifying Perl 5 for existing applications, and gradually transitioning away as they were replaced.

Also PHP overtook it for the "just FTP a script to $5 shared hosting and make a webapp" use case.

replies(2): >>fatbir+Pf >>lupire+ZH2
2. fatbir+Pf[view] [source] 2025-11-19 20:41:00
>>empw+(OP)
I agree, and the blame for its weirdness can be laid directly at Larry Wall's feet, because Wall wanted a language that allowed for cleverness, suprise, and ingenuity. He was never happier than when someone would come up with a completely new way to do something. For Wall, programming was less about coding an outcome, than it was about speaking a particular language (and ideally, writing poetry in it). And it was very successful in this way, and fit reasonably well with the high-knowledge users/environment of unix in the 90s.

It's just that Wall's vision was incompatible with general purpose languages used widely by a wide range of knowledge and skill amongst its users, and as unix/linux opened up to that wider range, better general purpose alternatives were chosen. Having to learn to be a poet to be a good coder was too high a barrier.

replies(1): >>kubanc+Ky
◧◩
3. kubanc+Ky[view] [source] [discussion] 2025-11-19 22:10:12
>>fatbir+Pf
> Wall wanted a language that allowed for cleverness, suprise, and ingenuity. [...] Having to learn to be a poet to be a good coder was too high a barrier.

To me this just sounds, umm, pathologically eclectic.

replies(2): >>fatbir+jA >>__davi+ed1
◧◩◪
4. fatbir+jA[view] [source] [discussion] 2025-11-19 22:18:30
>>kubanc+Ky
Now extrapolate to "let's do a Perl 6 that allows us to do all the things I couldn't work into Perl 5" and a lot more history makes sense.
◧◩◪
5. __davi+ed1[view] [source] [discussion] 2025-11-20 03:19:35
>>kubanc+Ky
But I bet you could really list some rubbish with it…
6. lupire+ZH2[view] [source] 2025-11-20 16:16:28
>>empw+(OP)
Larry Wall is a linguist.

Perl is most human-like programming language, which is what makes it great, but also what makes it unreliable for large scale programming.

replies(1): >>unbala+ct3
◧◩
7. unbala+ct3[view] [source] [discussion] 2025-11-20 20:22:53
>>lupire+ZH2
> Perl is most human-like programming language

This claim always seemed bizarre to me. What kind of drugs do you think a layman would think you were on if you showed them a typical Perl program and asserted how "human-like" it was? Even if you tried to follow-up and explain it: "No, no, see this bit means open whatever file stream is specified in the command line, as long as it starts with a letter between 'A' and 'F' that can be either upper or lower case, and is followed after any random characters by at least 3 digits in a row. Then this next character means.... See? It's just like I'm describing it to you!"

replies(1): >>Enk1du+A75
◧◩◪
8. Enk1du+A75[view] [source] [discussion] 2025-11-21 11:36:38
>>unbala+ct3
I remember the "Aha" moment on the face of a python-flavoured data scientist when I showed her my Perl scripts for managing LDAP groups.

One look at the class files (written in Moose) and she was stunned that she could immediately understand it, having never written Perl before.

[go to top]