-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
214 lines (118 loc) · 4.73 KB
/
index.html
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<title>
cosmic_python
</title>
<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="">
<meta property="og:title" content="cosmic_python" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.cosmicpython.com" />
<meta property="og:image" content="https://www.cosmicpython.com/images/lobster_nebula.jpg" />
<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/[email protected]/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="/images/seagull_nebula_jpl.jpeg" />
<div class="banner-text">
<h1>cosmic_python</h1>
<h2>Simple patterns for building complex applications</h2>
</div>
</div>
</div>
</div>
<p>
<em class="float-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>
<img src="/images/cover.jpg" alt="Cover Image for Architecture Patterns with Python Book" class="book-cover float-right" width="200px" />
<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 it 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>
Buy 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"><b>read it for free on this site</b></a> (license: CC-By-NC-ND).
</li>
</ul>
<h1>Blog</h1>
<h3>Recent posts</h3>
<ul>
<li>
<a href="/blog/2020-10-27-i-hate-enums.html">2020-10-27 Making Enums (as always, arguably) more Pythonic</a>
</li>
<li>
<a href="/blog/2020-08-13-so-many-layers.html">2020-08-13 So Many Layers! A Note of Caution.</a>
</li>
<li>
<a href="/blog/2020-05-12-ddia-review.html">2020-05-12 Book review: Designing Data-Intensive Applications, by Martin Kleppmann</a>
</li>
<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>Guest Posts By David</h3>
<ul>
<li>
<a href="/blog/2019-08-03-ioc-techniques.html">2019-08-03 Three Techniques for Inverting Control, in Python</a>
</li>
<li>
<a href="/blog/2019-04-15-inversion-of-control.html">2019-04-15 What is Inversion of Control and Why Does it Matter?</a>
</li>
</ul>
<h3>Classic 2017 Episodes on Ports & Adapters, by Bob</h3>
<ul>
<li>
<a href="/blog/2017-09-19-why-use-domain-events.html">2017-09-19 Why use domain events?</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-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-07-introducing-command-handler.html">2017-09-07 Introducing Command Handler</a>
</li>
</ul>
</section>
</main>
</body>
</html>