blob: 3a68ef6e2192709ab8b5ec833eba0905190f57c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?xml version="1.0" encoding="UTF-8"?>
<devbook self="appendices/further-reading/">
<chapter>
<title>Further reading</title>
<body>
<p>
This section lists some recommended further reading. These are real
recommendations, not padding designed to make this document look important.
</p>
</body>
<section>
<title>Books</title>
<body>
<dl>
<dt>
Mastering Regular Expressions
</dt>
<dd>
"Mastering Regular Expressions" by Jeffrey E. F. Friedl (3rd edition,
O'Reilly, 2006, ISBN 0-596-52812-4) is <b>the</b> book on regular
expressions. Very readable and devoid of the usual mathematical jargon
that tends to fill up these kinds of books.
<uri link="https://www.oreilly.com/library/view/mastering-regular-expressions/0596528124/">
Publisher's page</uri>
</dd>
</dl>
</body>
</section>
<section>
<title>Articles</title>
<body>
<dl>
<dt>
Making Packager-Friendly Software
</dt>
<dd>
<uri link="https://jmmv.dev/2005/03/making-packager-friendly-software-1.html">
Making Packager-Friendly Software</uri> by Julio M. Merino Vidal describes
various things that can be done by upstream software providers to make life
easy for the distribution people (that means you).
</dd>
<dt>
How to Report Bugs Effectively
</dt>
<dd>
<uri link="https://www.chiark.greenend.org.uk/~sgtatham/bugs.html">How to Report Bugs
Effectively</uri> by Simon Tatham is a good overview of effective bug reporting.
</dd>
</dl>
</body>
</section>
</chapter>
</devbook>
|