Live data from Hacker News

Viewing profile — perlperson

perlperson

HN member
Joined
Tue, Aug 14, 2018, 6:07 AM UTC
HN karma
36
Public activity
6 items

About perlperson

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. 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…

  4. 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…

  5. 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

  6. 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