latin: xerox unistrokes svg row
[sheet.git] / index.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'cheat sheets',
5         version => '1.9',
6         description => [
7                 "Cheat sheets summarising various software programs and standards.",
8         ],
9         keywords => [qw'
10                 sheet cheat reference software overview summary help keyboard map unicode
11         '],
12 });
13
14 :>
15 <h1>Shiar's cheat sheets</h1>
16
17 <p>
18 Through the miracle of formatting, design, abbreviation, compression, and Perl,
19 the following topics have been condensed into single pages of reference.
20 <br>
21 Originally created by Mischa <span style="font-variant:small-caps">Poslawsky</span>,
22 but you're free to use, print, alter, and redistribute under the AGPL license.
23 </p>
24 <:
25 my @format = ('--date=short', "--pretty=%ad (%ar)\t%s");
26 if (open my $log, '-|', git => 'log', -1, @format) {{
27         my $line = readline $log;
28         $line or next;  # explicitly ignore empty input
29         my ($date, $subject) = split /[\t\n]/, $line;
30         $date =~ s/ \K/<small>/ and $date .= '</small>';
31         say "<p><strong>Last update</strong>: $date $subject</p>";
32 }}
33
34 :>
35 <div class="section">
36 <h2>Keyboard maps</h2>
37 <ul>
38 <li><a href="/readline">readline</a>
39 <li><a href="/screen">screen</a>
40 <li><a href="/less">less</a>
41 <li><a href="/vi">vi/vim</a>
42 <li><a href="/vimperator">vimperator</a>
43 <li><a href="/mutt">mutt</a>
44 <li><a href="/nethack">nethack</a>
45 <li><a href="/mplayer">mplayer</a>
46 </ul>
47 </div>
48
49 <div class="section">
50 <h2>Unicode characters</h2>
51 <ul>
52 <li><a href="/charset">charsets</a>
53 <li><a href="/unicode">common glyphs</a>
54 <li><a href="/digraphs">digraphs</a>
55 <li><a href="/writing">alphabet comparison</a>
56 <li><a href="/latin">latin variants</a>
57 <li><a href="/font">font coverage</a>
58 </ul>
59 </div>
60
61 <div class="section">
62 <h2>Other references</h2>
63 <ul>
64 <li><a href="/browser">browser support</a>
65 <li><a href="/countries">country codes</a>
66 <li><a href="/perl">perl versions</a>
67 <li><a href="/apl">apl symbols</a>
68 <li><a href="/termcol">terminal colours</a>
69 <li><a href="/sc/2">starcraft 2 units</a>
70         (<a href="/sc" title="StarCraft: Brood War">bw</a>)
71 <li><a href="/emoji">emoticons</a>
72 </ul>
73 </div>
74