X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/7e61bf43e629fb11d22bebfd4b31226fdea31651..5fadf3bba74628ae85920b5c2d71f804e3256601:/index.plp diff --git a/index.plp b/index.plp index cc4c9af..1aaf0f6 100644 --- a/index.plp +++ b/index.plp @@ -2,7 +2,7 @@ Html({ title => 'cheat sheets', - version => 'v1.3', + version => 'v1.4', description => [ "Cheat sheets summarising various software programs and standards.", ], @@ -43,15 +43,31 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
  • common glyphs
  • digraphs
  • script comparison +
  • font coverage

    Other references

    +<: +if (open my $log, '-|', 'git log -20 --since=2\ week\ ago --pretty=%ai%x00%s%x00%h') { + print "

    Recent updates

    \n\n"; + print "
    \n"; + while (readline $log) { + chomp; + my ($date, $subject, $commit) = split /\0/, $_; + $date =~ s{( .+)}{$1}; + printf '
    %s
    %s
    '."\n", $date, $subject; + } + print "
    \n\n"; +} +