Collecting my attempts to improve at tech, art, and life

2023-01-22

Tags: hackers-town look

Does any of this enlighten, entertain, or otherwise please you? Please consider a Tip. Every little bit helps!

I last updated this page

Activity Log

hackers.town: 2023-01-22 Sun 09:16

@mjgardner @mojolicious Ah there you go. Term::Cap was the missing ingredient. I went with the glue approach and piped to rich-cli

nicely formatted output from perl one-liner

Code Sample
    perl -CS -Mojo -E 'g("https://stardeusgame.com/changelog")->dom->at("article")->children->head(5)->each(sub { ($_->tag eq "ul" && say $_->children->map(sub { "- " .  $_->text })->join("\n")) || ($_->tag eq "p" && say "\n# ", $_->all_text) })' | rich - -m
  

Perl Mojolicious