X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/69e936ab32b46f8c46e4dc077438cf4f4536aa9d..HEAD:/index.plp diff --git a/index.plp b/index.plp index 1927f13..f05c02a 100644 --- a/index.plp +++ b/index.plp @@ -1,60 +1,89 @@ -<: -use utf8; -use strict; -use warnings; - -our $VERSION = 'v1.0'; - -$header{content_type} = "text/html; charset=utf-8"; - -:> - - - -vi cheat sheet - - - - - - +<(common.inc.plp)><: +Html({ + title => 'cheat sheets', + canonical => '/', + version => '1.18', + description => [ + "Cheat sheets summarising various software programs and standards.", + ], + keywords => [qw' + sheet cheat reference software overview summary help keyboard map unicode + '], + raw => [ + '', + '', + ], + data => ['UPDATE'], +}); +:>

Shiar's cheat sheets

Through the miracle of formatting, design, abbreviation, compression, and Perl, the following topics have been condensed into single pages of reference.
-Originally created by Mischa Poslawsky, +Originally created by Mischa Poslawsky, but you're free to use, print, alter, and redistribute under the AGPL license.

+<: +if (open my $log, '<', 'UPDATE') {{ + my $line = readline $log; + $line or next; # explicitly ignore empty input + EscapeHTML $line; + my ($date, $subject) = split /[\t\n]/, $line; + $date =~ s/ \K// and $date .= ''; + $subject =~ s{\A (\w+) (?= (?:/\w+)* :\h )}{ + showlink($1, -e "$1.plp" && "/$1"); + }ex; + say "

Last update: $date $subject

"; +}} +:> +