This repository has been archived by the owner on Jul 18, 2020. It is now read-only.
forked from ploum/lingi2401
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8. open source in entreprises.html
427 lines (285 loc) · 8.77 KB
/
8. open source in entreprises.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
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html>
<head>
<title>LINGI2401 - 8. Open Source in entreprises</title>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
</style>
</head>
<body>
<textarea id="source">
class: center, middle
# LINGI 2401 : Open Source strategy for software development
Lionel Dricot
@ploum - @[email protected]
???
---
class: center, middle
#A word about the exam
- Dress for the job you want, not the job you have
- A new, complex usecase to study and to talk about
- You can have access to any resource you want
---
class: center, middle
#Pitch your project
- Last 2 lessons
- Elevator pitch
---
class: center, middle
#What are the pros and cons of using Open Source in entreprises?
---
class: center, middle
#Usecases
?
???
What are your ideas?
---
class: center, middle
#Usecases
1. Using open source software at work for non-product tasks
2. Using open source software in your product
3. Open sourcing an internal product
4. Open sourcing a released proprietary product
5. Developing an open source product
---
class: center, middle
#1. Recommending an open source software
---
class: center, middle
#Rule 1
Nobody will be fired for recommending Microsoft
---
class: center, middle
#Corolary
If you recommend a solution, you will be held responsible for every problem happening with that solution.
???
And you will have a natural tendency to be emotionnaly attached to the solution
---
class: center, middle
#Two questions:
- Why should we use this tool?
- How should I convince the other?
---
class: center, middle
#Why?
- Cost/benefits analysis
- Is ideology important?
- Long term advantages
???
Be transparent with yourself and others about ideology or even about your own preferences. Acknowledge whether your choice is rational or unrational.
https://en.wikipedia.org/wiki/Cost–benefit_analysis
---
class: center, middle
#Consequences of Open Source?
- Fear of contamination
- Support
- Adaptability
---
class: center, middle
#Change management
- Every change has a cost
???
https://en.wikipedia.org/wiki/Change_management
---
class: center, middle
#Example: Firefox vs Chrome
???
And what if we are replacing an existing Chrome installation with Firefox?
Example of replacing IE with Firefox but keeping the IE icon.
---
class: center, middle
#How to convince other?
- Pitch to management
- Experiment (sometimes hidden)
- Recruit proponents
???
Don't ask for permission, ask for forgiveness.
Don't present it as a global project but enlarge it gradually.
Why is it interesting to take a risk to change ?
---
class: center, middle
#2. Using open source software in your product
---
class: center, middle
#Clarify legal implications
- Contamination
- Publication (BSD style)
---
class: center, middle
#Convincing
Same as before: Why, How
???
Convincing should start with yourself. Be ready to hear new arguments and change your opinion.
---
class: center, middle
#Maintaining a private branch vs Contributing
---
class: center, middle
#Private branch
- quick and dirty code
- boss doesn't fear seeing the code "stolen"
- your usecase might be so personal that it doesn't make sense upstreaming it
- you can link with some propriatary code
- be aware of the legal problems when redistributing your product
- maintenance nightmare
- No, really. It will become your worst nightmare.
???
Yes, it is really that bad. Example of using LibreOffice to convert documents.
---
class: center, middle
#Upstreaming
- More upfront work
- Nearly no maintenance
- Good community karma
- If your usecase is so specific, it is worth investigating why.
- Need to be well clarified when distributing the product.
- More upfront work, really.
???
Community Karma is also very good to influence the open source project future.
---
class: center, middle
#Best case
- Hiring a contributor of the project
- Paying an employee to become an active contributor
- Very good community karma
---
class: center, middle
#Saying thanks
- Donating to the project
- Becoming a sponsor of the project
- Hosting events related to the project
---
class: center, middle
#3. Open sourcing an internal product
- When it's not your core business
---
class: center, middle
#Advantages
- External contributions
- Potential collaboration, even with direct competitors
- Good community karma
---
class: center, middle
#Disadvantages
- Maintaining a community is hard
- And time consuming
- Probably need to introduce stuff like dual-licensing if you want to keep control
???
External scrutiny is an asset for security. Don't forget the "security by obscurity" paradigm
---
class: center, middle
#Open sourcing is hard
- Every line of code has to be legally owned by one entity
- Every stakeholder needs to agree
- Huge incompilable project with in-house spaghetti manuals cannot be released as a huge block
???
Open sourcing a big proprietary app is usually a huge project in itself.
Anecdote : every company internal project needs several days (if not weeks or months) of work to be compiled (config of the computer). Usually, only one or two guys know how to do it.
---
class: center, middle
#The Bus Factor
"How many people could get hit by a bus before ruining your project?"
???
https://en.wikipedia.org/wiki/Bus_factor
In most proprietary companies, building the project is a full time job in itself with specific tools, specific hardware and only a few people knowing how to do it.
---
class: center, middle
#4. Open sourcing a released proprietary product
- Usually, it requires finding a new business model
???
Let's be honest, most open sourcing happen when the business has no more money.
---
class: center, middle
#Netscape
- 94-98 : business license and support
- 98 : Windows ships with IE 5 (First browsers war)
---
class: center, middle
background-image: url(https://github.com/ploum/lingi2401/raw/master/images/netscape.jpg)
---
class: center, middle
#Netscape
- 94-98 : business license and support
- 98 : Windows ships with IE 5 (First browsers war)
- 98 : Netscape is freed and Mozilla is created (owned by AOL, who bought Netscape)
- 02 : Experimental Phoenix fork
---
class: center, middle
background-image: url(https://github.com/ploum/lingi2401/raw/master/images/phoenix.png)
---
class: center, middle
#Netscape
- 94-98 : business license and support
- 98 : Windows ships with IE 5 (First browsers war)
- 98 : Netscape is freed and Mozilla is created (owned by AOL, who bought Netscape)
- 02 : Experimental Phoenix fork
- 03 : name changed to Firebird, Mozilla foundation created and Mozilla suite deprecated
- 04 : name changed to Firefox and 1.0 release
- 08 : Google Chrome is released (Second browsers war)
- 17 : Firefox Quantum released. Focus on privacy (against Google Chrome)
---
class: center, middle
#StarOffice
- 85 : Proprietary Star Writer
---
class: center, middle
background-image: url(https://github.com/ploum/lingi2401/raw/master/images/starwriter.png)
---
class: center, middle
#StarOffice
- 85 : Proprietary Star Writer
- 98 : StarOffice becomes freeware
- 99 : Stardivision bought by Sun (because cheaper than buying MS Office license for the company)
- 00 : Free version of StarOffice : OpenOffice.org (dual licensing, two projects co-existing)
- 10 : Sun bought by Oracle. OpenOffice.org becomes Oracle Open Office
- january 11 : Developers left and create LibreOffice (The Document Foundation)
- june 11 : Oracle donates OpenOffice.org source code to the Apache foundation
---
class: center, middle
#5. Developing an open source product
---
class: center, middle
#You don't have a good idea
???
https://ploum.net/votre-idee-ne-vaut-rien/
---
class: center, middle
background-image: url(https://github.com/ploum/lingi2401/raw/master/images/idea.jpg)
---
class: center, middle
#Minimum Viable Product
???
Test your idea. Even only on paper. Try to sell it. Even to yourself!
---
class: center, middle
#Build your pitch
---
class: center, middle
#Business Model Canvas
---
class: center, middle
background-image: url(https://github.com/ploum/lingi2401/raw/master/images/Business_Model_Canvas.png)
???
https://en.wikipedia.org/wiki/Business_Model_Canvas
---
class: center, middle
# Discussion time
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>
</body>
</html>