-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (92 loc) · 3.33 KB
/
index.html
File metadata and controls
136 lines (92 loc) · 3.33 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Harry Percival and Bob Gregory">
<meta name="description" content="">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pygments-css@1.0.0/friendly.css">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<main class="wrapper">
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="/">
<h1 class="title">Cosmic Python</h1>
</a>
</section>
</nav>
<section class="container">
<div class="row">
<div class="column">
<div class="banner-image-container">
<img src="https://www.jpl.nasa.gov/spaceimages/images/largesize/PIA13111_hires.jpg" />
<div class="banner-text">
<h1>cosmic_python</h1>
<h2>Simple patterns for building complex applications</h2>
</div>
</div>
</div>
</div>
<p>
<em class="align-right">
(Because "Cosmos" is the
<a href="https://www.goodreads.com/quotes/604655-cosmos-is-a-greek-word-for-the-order-of-the">opposite of Chaos</a>,
you see)
</em>
</p>
<h1 id="buy_the_book">The Book</h1>
<p>
There are lots of ways you can read the book. Some of them even involve us,
the authors, receiving a small amount of money!
</p>
<ul>
<li>
Read in online on O'Reilly Learning (aka Safari)
<a href="https://learning.oreilly.com/library/view/architecture-patterns-with/9781492052197/">learning.oreilly.com</a>
</li>
<li>
Preorder print books on
<a href="https://amzn.to/37pR2DH">Amazon.com</a>
or
<a href="https://amzn.to/38CmFu1">Amazon.co.uk</a>.
</li>
<li>
Buy a DRM-free ebook at
<a href="https://www.ebooks.com/en-us/book/209971850/architecture-patterns-with-python/harry-percival/">ebooks.com</a>
</li>
<li>
Or
<a href="book/preface.html">read it for free on this site</a> (license: CC-By-NC-ND).
</li>
</ul>
<h1>Blog</h1>
<h3>Recent posts</h3>
<ul>
<li>
<a href="blog/2020-01-25-testing_external_api_calls.html">2020-01-25 Writing tests for external API calls</a>
</li>
</ul>
<h3>Classic 2017 Episodes on Ports & Adapters, by Bob</h3>
<ul>
<li>
<a href="blog/2017-09-07-introducing-command-handler.html">2017-09-07 Introducing Command Handler</a>
</li>
<li>
<a href="blog/2017-09-08-repository-and-unit-of-work-pattern-in-python.html">2017-09-08 Repository and Unit of Work Pattern</a>
</li>
<li>
<a href="blog/2017-09-13-commands-and-queries-handlers-and-views.html">2017-09-13 Commands, Handlers, Queries and Views</a>
</li>
<li>
<a href="blog/2017-09-19-why-use-domain-events.html">2017-09-19 Why use domain events?</a>
</li>
</ul>
</section>
</main>
</body>
</html>