X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/24f355ee04994c12c6bee2b276aab8c1ff4c0748..6d38d53c6cacbb5dabe6dc663c500d8ef8bb62d0:/index.plp diff --git a/index.plp b/index.plp index 789607b..1aaf0f6 100644 --- a/index.plp +++ b/index.plp @@ -1,8 +1,73 @@ +<(common.inc.plp)><: + +Html({ + title => 'cheat sheets', + version => 'v1.4', + description => [ + "Cheat sheets summarising various software programs and standards.", + ], + keywords => [qw' + sheet cheat reference software overview summary help keyboard map unicode + '], + stylesheet => [qw'light dark red'], +}); + +:> +

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

+ +
+

Keyboard maps

+ +
+ +
+

Unicode characters

+ +
+ +
+

Other references

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

Mainly just the Vim sheet so far...

- - +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"; +} +