X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/24f355ee04994c12c6bee2b276aab8c1ff4c0748..263ed1a94b04cfa0cdb2e02fec49d73000356b4a:/index.plp diff --git a/index.plp b/index.plp index 789607b..c3b02ec 100644 --- a/index.plp +++ b/index.plp @@ -1,8 +1,81 @@ +<(common.inc.plp)><: + +Html({ + title => 'cheat sheets', + version => '1.9', + description => [ + "Cheat sheets summarising various software programs and standards.", + ], + keywords => [qw' + sheet cheat reference software overview summary help keyboard map unicode + '], + raw => [ + '', + ], +}); + +:> +

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, +but you're free to use, print, alter, and redistribute under the AGPL license. +

<: -$header{Status} = '302 Go right ahead'; -$header{Location} = '/vim'; -:> - -

Mainly just the Vim sheet so far...

- - +my @format = ('--date=short', "--pretty=%ad (%ar)\t%s"); +if (open my $log, '-|', git => 'log', -1, @format) {{ + my $line = readline $log; + $line or next; # explicitly ignore empty input + my ($date, $subject) = split /[\t\n]/, $line; + $date =~ s/ \K// and $date .= ''; + say "

Last update: $date $subject

"; +}} + +:> + +