aboutsummaryrefslogtreecommitdiff
path: root/po/fr/LC_MESSAGES/_slides/2020-10-26-on-local-first-beyond-the-crdt-silver-bullet.slides.po
blob: e34f58ecb6e0359f75970bb482237c55081d6769 (about) (plain) (blame)
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
#
msgid ""
msgstr ""

msgid "On local-first"
msgstr ""

msgid "Beyond the CRDT silver bullet"
msgstr ""

msgid "Part 1"
msgstr ""

msgid "Exposition"
msgstr ""

msgid "\"cloud apps\" vs \"old-fashined apps\""
msgstr ""

msgid "Target"
msgstr ""

msgid "documents"
msgstr ""

msgid "files"
msgstr ""

msgid "personal data repositories"
msgstr ""

msgid ""
"Not: banking services, e-commerce, social networking, ride-sharing, *etc*."
msgstr ""

msgid "7 Ideals for local-first software"
msgstr ""

msgid "1 - No Spinners: Your Work at Your Fingertips"
msgstr ""

msgid "2 - Your Work Is Not Trapped on One Device"
msgstr ""

msgid "3 - The Network Is Optional"
msgstr ""

msgid "4 - Seamless Collaboration with Your Colleagues"
msgstr ""

msgid "5 - The Long Now"
msgstr ""

msgid "6 - Security and Privacy by Default"
msgstr ""

msgid "7 - You Retain Ultimate Ownership and Control"
msgstr ""

msgid "Towards a Better Future"
msgstr ""

msgid ""
"CRDTs (Conflict-free Replicated Data Types) as a Foundational Technology"
msgstr ""

msgid "Use case"
msgstr ""

msgid ""
"# in node A and node B\n"
"s = \"Hello, World\"\n"
"\n"
"# in node A\n"
"s = \"Hello, Alice\"\n"
"\n"
"# in node B\n"
"s = \"Hello, Bob\"\n"
msgstr ""

msgid "How to reconcile those?"
msgstr ""

msgid "`Hello, ABloibce`"
msgstr ""

msgid "`Hello, AliceBob`"
msgstr ""

msgid "`Hello, BobAlice`"
msgstr ""

msgid "`Hello, Alice`"
msgstr ""

msgid "`Hello, Bob`"
msgstr ""

msgid "Existing CRDTs differ:"
msgstr ""

msgid "performance"
msgstr ""

msgid "storage"
msgstr ""

msgid "compression"
msgstr ""

msgid "metadata overhead"
msgstr ""

msgid "Hint towards the \"automerge\" CRDT"
msgstr ""

msgid "*show comparison table, page 9*"
msgstr ""

msgid "Part 2"
msgstr ""

msgid "Critique"
msgstr ""

msgid "Software license"
msgstr ""

msgid ""
"In our opinion, maintaining control and ownership of data does not mean that"
" the software must necessarily be open source."
msgstr ""

msgid "Example 1 - intentional restriction"
msgstr ""

msgid ""
"#!/bin/sh\n"
"\n"
"TODAY=$(date +%s)\n"
"LICENSE_EXPIRATION=$(date -d 2020-10-27 +%s)\n"
"\n"
"if [ $TODAY -ge $LICENSE_EXPIRATION ]; then\n"
"  echo 'License expired!'\n"
"  exit 1\n"
"fi\n"
"\n"
"echo $((2 + 2))\n"
msgstr ""

msgid ""
"# today\n"
"$ ./useful-adder.sh\n"
"4\n"
"# tomorrow\n"
"$ ./useful-adder.sh\n"
"License expired!\n"
msgstr ""

msgid "Example 2 - unintentional restriction"
msgstr ""

msgid ""
"# today\n"
"$ useful-program\n"
"# ...useful output...\n"
"\n"
"# tomorrow, with more data\n"
"$ useful-program\n"
"ERROR: Panic! Stack overflow!\n"
msgstr ""

msgid "local-first **requires** free/libre software"
msgstr ""

msgid "Otherwise \"The Long Now\" (ideal nº5) is lost"
msgstr ""

msgid "Denial of existing solutions"
msgstr ""

msgid ""
"In principle it is possible to collaborate without a repository service, "
"e.g. by sending patch files by email, but the majority of Git users rely on "
"GitHub."
msgstr ""

msgid "Solution: either GitHub+CRDTs or `git` **`send-email`**"
msgstr ""

msgid "Plain text formats"
msgstr ""

msgid "Git is highly optimized for code and similar line-based text file"
msgstr ""

msgid "It even pulls software to the plain text direction, e.g.:"
msgstr ""

msgid "delivery-templates"
msgstr ""

msgid "`common-core.protocols.config`"
msgstr ""

msgid "Why not exploit that more?"
msgstr ""

msgid "Ditching of web applications"
msgstr ""

msgid "The architecture of web apps remains fundamentally server-centric"
msgstr ""

msgid ""
"Disagree. Constrast [PouchDB](https://pouchdb.com/) with Android [Instant "
"Apps](https://developer.android.com/topic/google-play-instant)"
msgstr ""

msgid "???"
msgstr ""

msgid "Talk on dynamic content"
msgstr ""

msgid "Costs are underrated"
msgstr ""

msgid "backups"
msgstr ""

msgid "maintanence"
msgstr ""

msgid "Example: blog vs vlog"
msgstr ""

msgid "Real-time collaboration a bit overrated"
msgstr ""

msgid ""
"It is only possible on the presence of reliable, medium-quality network "
"connection"
msgstr ""

msgid "X also works when inside an elevator, subway or plane!"
msgstr ""

msgid "On CRDTs and developer experience"
msgstr ""

msgid ""
"For an app developer, how does the use of a CRDT-based data layer compare to"
" existing storage layers like a SQL database, a filesystem, or CoreData? Is "
"a distributed system harder to write software for?"
msgstr ""

msgid "Yes."
msgstr ""

msgid ""
"See \"[A Note on Distributed "
"Computing](https://web.archive.org/web/20130116163535/http://labs.oracle.com/techrep/1994/smli_tr-94-29.pdf)\""
msgstr ""

msgid "Conclusion"
msgstr ""

msgid "Why this is a \"paper I love\": it took offline-first and ran with it."
msgstr ""

msgid "But a pinch of CRDT won't make the world local-first."
msgstr ""

msgid "The tricky part is the end of the sentence: \"**in spite of the Cloud**\"."
msgstr ""

msgid "Thank you!"
msgstr ""

msgid "References:"
msgstr ""

msgid "these slides: [{{ site.tld }}/slides.html]({% link slides.md %})"
msgstr ""

msgid ""
"\"[Local-First Software: You Own Your Data, in spite of the "
"Cloud](https://martin.kleppmann.com/papers/local-first.pdf)\", by M. "
"Kleppmann, A. Wiggins, P. Van Hardenberg and M. F. McGranaghan"
msgstr ""

msgid ""
"[The Morning Paper](https://blog.acolyer.org/2019/11/20/local-first-"
"software/) article"
msgstr ""

msgid "title: 'On \"local-first\": beyond the CRDT silver bullet'"
msgstr ""

msgid "date: 2020-10-26"
msgstr ""

msgid "layout: slides"
msgstr ""

msgid "lang: en"
msgstr ""

msgid "ref: on-local-first-beyond-the-crdt-silver-bullet"
msgstr ""

msgid "published: false"
msgstr ""

msgid ""
"[prose version of this presentation]({% link _articles/2020-10-26-local-"
"first-software-you-own-your-data-in-spite-of-the-cloud-article-review.md %})"
msgstr ""

msgid ""
"\"[A Note on Distributed "
"Computing](https://web.archive.org/web/20130116163535/http://labs.oracle.com/techrep/1994/smli_tr-94-29.pdf)\","
" by J. Waldo, G. Wyant, A. Wollrath and S Kendall"
msgstr ""

#~ msgid ""
#~ "title: 'On \"local-first\": beyond the CRDT silver bullet'\n"
#~ "date: 2020-10-26\n"
#~ "layout: slides\n"
#~ "lang: en\n"
#~ "ref: on-local-first-beyond-the-crdt-silver-bullet\n"
#~ "published: false"
#~ msgstr ""

#~ msgid ""
#~ "[prose version of this presentation]({% link _articles/2020-10-26-on-local-"
#~ "first-beyond-the-crdt-silver-bullet.md %})"
#~ msgstr ""