Viewing profile — perlperson
perlperson
HN member- Joined
- Tue, Aug 14, 2018, 6:07 AM UTC
- HN karma
- 36
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About perlperson
No profile information was provided.
Recent public activity
-
comment
Comment #46102652
Historical note: the original coding advent calendar was the Perl Advent Calendar, started in 2000 and still going. https://perladvent.org/archives.html Advent of Code is awesome a…
-
comment
Comment #31518624
I haven't seen frameworks in other languages rival mojolicious for rapid prototyping, web scraping, and good event-driven support. It's super easy to make websockets and even quick…
-
comment
Comment #26663507
Lots of interesting comments about Perl's shortcomings here. I think it's safe to say both Ruby and Python became popular because they addressed this sentiment -- for instance, typ…
-
comment
Comment #20833672
This is a _perfect_ case -- to get started, you can just put `shell` in front of every line #!/bin/bash echo hello change to #!/usr/bin/env perl6 shell "echo hello" then for argume…
-
comment
Comment #19396488
"The winner is the one who gives the most away." -- Larry Wall Perl bookends the career of the author of this article, so respect pls
-
comment
Comment #17755899
$ docker ps | rb drop 1 | rb -l split[1] $ docker ps | perl -anE 'say $F[1] if $.>1' perl solved this problem a long time ago, people