X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/8ead727e049d95c57ca27d5e3c92c37be34e687c..5fadf3bba74628ae85920b5c2d71f804e3256601:/index.plp diff --git a/index.plp b/index.plp index d3c03ad..1aaf0f6 100644 --- a/index.plp +++ b/index.plp @@ -1,23 +1,18 @@ <(common.inc.plp)><: - our $VERSION = 'v1.0'; - -:> - - - - -cheat sheets -<:= stylesheet(qw'light dark red') :> - - - +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

@@ -28,29 +23,51 @@ Originally created by Mischa Poslawsky +

Keyboard maps

+
+

Unicode characters

+
- +
+

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