-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.json
More file actions
673 lines (673 loc) · 23.5 KB
/
slides.json
File metadata and controls
673 lines (673 loc) · 23.5 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
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
{
"presentation": {
"topics": [
{
"id": "what-is-oss",
"title": "What is Open Source Software (OSS)?",
"slides": [
{
"type": "content",
"title": "What is Open Source Software (OSS)?",
"box": {
"content": "Software with <span class=\"highlight\">source code</span> that anyone can:",
"list": [
{
"emoji": "👀",
"text": "<strong>Inspect</strong> - See how it works"
},
{
"emoji": "✏️",
"text": "<strong>Modify</strong> - Change and improve it"
},
{
"emoji": "🔄",
"text": "<strong>Distribute</strong> - Share with others"
}
]
},
"note": {
"text": "<strong>Note:</strong> OSS ≠ FOSS (Free and Open Source Software)<br>OSS focuses on <em>open development</em>, FOSS emphasizes <em>user freedom</em>"
}
}
]
},
{
"id": "you-already-use-oss",
"title": "You Already Use OSS!",
"slides": [
{
"type": "topic-title",
"title": "You Already Use OSS!",
"box": {
"content": "Open source is everywhere! Let's look at some examples you probably use daily..."
},
"note": {
"text": "<span class=\"emoji\">💡</span> <strong>Fun Fact:</strong> Over 90% of modern applications contain OSS components!"
}
},
{
"type": "content",
"emoji": "🐧",
"title": "Linux",
"box": {
"title": "What is it?",
"content": "The most popular open source operating system kernel"
},
"list": [
{
"emoji": "🌍",
"text": "Powers most web servers worldwide"
},
{
"emoji": "📱",
"text": "Foundation of Android OS"
},
{
"emoji": "☁️",
"text": "Runs on 90% of cloud infrastructure"
},
{
"emoji": "💻",
"text": "Free alternative to Windows/macOS"
}
],
"note": {
"text": "Created by Linus Torvalds in 1991, now maintained by thousands of developers globally"
}
},
{
"type": "content",
"emoji": "🦊",
"title": "Firefox",
"box": {
"title": "What is it?",
"content": "Privacy-focused open source web browser"
},
"list": [
{
"emoji": "🔒",
"text": "Built with privacy as a core principle"
},
{
"emoji": "🛠️",
"text": "Highly customizable with extensions"
},
{
"emoji": "🌐",
"text": "Champions open web standards"
},
{
"emoji": "👥",
"text": "Community-driven development"
}
],
"note": {
"text": "Developed by Mozilla Foundation, first released in 2004"
}
},
{
"type": "content",
"emoji": "📝",
"title": "WordPress",
"box": {
"title": "What is it?",
"content": "The world's most popular website builder and CMS"
},
"list": [
{
"emoji": "🌍",
"text": "Powers 43% of all websites on the internet"
},
{
"emoji": "🎨",
"text": "Thousands of free themes and plugins"
},
{
"emoji": "💼",
"text": "Powers everything from blogs to e-commerce"
},
{
"emoji": "👥",
"text": "Massive global community"
}
],
"note": {
"text": "Started as a blogging platform in 2003, now a full CMS"
}
},
{
"type": "content",
"emoji": "💻",
"title": "Visual Studio Code",
"box": {
"title": "What is it?",
"content": "Popular open source code editor by Microsoft"
},
"list": [
{
"emoji": "🚀",
"text": "Most popular code editor among developers"
},
{
"emoji": "🔌",
"text": "Thousands of extensions available"
},
{
"emoji": "🎯",
"text": "Supports almost every programming language"
},
{
"emoji": "⚡",
"text": "Fast, lightweight, and free"
}
],
"note": {
"text": "Released by Microsoft in 2015, built on Electron (also OSS!)"
}
},
{
"type": "content",
"emoji": "🔀",
"title": "Git",
"box": {
"title": "What is it?",
"content": "The most popular version control system"
},
"list": [
{
"emoji": "📝",
"text": "Track changes in your code over time"
},
{
"emoji": "👥",
"text": "Collaborate with multiple developers"
},
{
"emoji": "🌿",
"text": "Work on features in separate branches"
},
{
"emoji": "⏪",
"text": "Roll back to previous versions anytime"
}
],
"note": {
"text": "Created by Linus Torvalds in 2005, now the industry standard"
}
}
]
},
{
"id": "why-oss-matters",
"title": "Why Open Source Matters",
"slides": [
{
"type": "topic-title",
"title": "Why Open Source Matters"
},
{
"type": "content",
"title": "1. Innovation Through Collaboration",
"box": {
"content": "<span class=\"emoji\">🚀</span> <strong>Faster Development</strong>",
"list": [
"Thousands of developers working together worldwide",
"Problems get solved faster with diverse perspectives",
"Innovations happen at incredible speed",
"No need to reinvent the wheel - build on existing solutions"
]
},
"note": {
"text": "<span class=\"emoji\">💡</span> Example: Linux kernel has 15,000+ contributors from 1,500+ companies"
}
},
{
"type": "content",
"title": "2. Enhanced Security",
"box": {
"content": "<span class=\"emoji\">🔒</span> <strong>\"Many Eyes Make Bugs Shallow\"</strong> - Linus's Law",
"list": [
"Anyone can review and audit the code",
"Vulnerabilities are found and fixed faster",
"No hidden backdoors or malicious code",
"Security researchers can proactively find issues"
]
},
"note": {
"text": "<span class=\"emoji\">⚡</span> OSS projects often patch vulnerabilities faster than proprietary software"
}
},
{
"type": "content",
"title": "3. Cost-Effective & Accessible",
"box": {
"content": "<span class=\"emoji\">💰</span> <strong>Open Source = Open Access</strong>",
"list": [
"No licensing fees - source code is publicly available",
"Customize to fit your specific requirements",
"Avoid vendor lock-in with transparent codebases",
"Lower barriers to entry for individuals and organizations"
]
},
"note": {
"text": "<span class=\"emoji\">📊</span> Organizations save significantly by using and contributing to OSS projects"
}
},
{
"type": "content",
"title": "4. Global Community & Learning",
"box": {
"content": "<span class=\"emoji\">🌍</span> <strong>Collaborate Across Borders</strong>",
"list": [
"Learn from experts worldwide",
"Join supportive communities of like-minded developers",
"Share knowledge and best practices",
"Contribute to projects that impact millions"
]
},
"note": {
"text": "<span class=\"emoji\">🤝</span> GitHub alone has 100+ million developers collaborating on OSS"
}
},
{
"type": "content",
"title": "5. Transparency & Trust",
"box": {
"content": "<span class=\"emoji\">🎯</span> <strong>No Hidden Code, No Surprises</strong>",
"list": [
"See exactly what the software does",
"Verify privacy and data handling practices",
"No vendor lock-in or forced upgrades",
"Build trust through openness"
]
},
"note": {
"text": "<span class=\"emoji\">🔍</span> Transparency builds trust - you know exactly what's running on your system"
}
}
]
},
{
"id": "oss-licenses",
"title": "Understanding OSS Licenses",
"slides": [
{
"type": "topic-title",
"title": "Understanding OSS Licenses",
"box": {
"content": "How to identify open source software and what different licenses mean"
}
},
{
"type": "content",
"emoji": "🔍",
"title": "How to Tell if Software is Open Source",
"box": {
"content": "<span class=\"emoji\">✅</span> <strong>Look for These Signs</strong>",
"list": [
"LICENSE or LICENSE.txt file in the repository",
"Source code publicly available (GitHub, GitLab, etc.)",
"Clear license information in README or documentation",
"OSI (Open Source Initiative) approved license"
]
},
"note": {
"text": "<span class=\"emoji\">💡</span> If there's no license, the code is NOT open source - it's copyrighted by default"
}
},
{
"type": "content",
"emoji": "📄",
"title": "MIT License",
"box": {
"title": "Simple and Permissive",
"content": "The most popular open source license",
"list": [
{
"emoji": "✅",
"text": "Use commercially without restrictions"
},
{
"emoji": "✅",
"text": "Modify and distribute freely"
},
{
"emoji": "✅",
"text": "No requirement to share modifications"
},
{
"emoji": "⚠️",
"text": "No warranty - use at your own risk"
}
]
},
"note": {
"text": "<span class=\"emoji\">🌟</span> Used by: React, jQuery, Node.js, Rails"
}
},
{
"type": "content",
"emoji": "🚀",
"title": "Apache License 2.0",
"box": {
"title": "Permissive with Patent Protection",
"content": "Popular for large projects and enterprise use",
"list": [
{
"emoji": "✅",
"text": "Similar freedoms to MIT"
},
{
"emoji": "🛡️",
"text": "Includes patent protection grants"
},
{
"emoji": "📝",
"text": "Requires attribution and change documentation"
},
{
"emoji": "⚖️",
"text": "More detailed legal terms"
}
]
},
"note": {
"text": "<span class=\"emoji\">🌟</span> Used by: Android, Kubernetes, Apache HTTP Server"
}
},
{
"type": "content",
"emoji": "🔄",
"title": "GNU GPL (General Public License)",
"box": {
"title": "Copyleft License",
"content": "Ensures derivative works remain open source",
"list": [
{
"emoji": "✅",
"text": "Use and modify freely"
},
{
"emoji": "🔗",
"text": "Derivative works must use GPL too (copyleft)"
},
{
"emoji": "📤",
"text": "Must share source code of modifications"
},
{
"emoji": "⚠️",
"text": "Can complicate commercial use"
}
]
},
"note": {
"text": "<span class=\"emoji\">🌟</span> Used by: Linux kernel, Git, WordPress"
}
},
{
"type": "content",
"emoji": "🎓",
"title": "BSD License (Berkeley Software Distribution)",
"box": {
"title": "Very Permissive",
"content": "Minimal restrictions, similar to MIT",
"list": [
{
"emoji": "✅",
"text": "Use, modify, distribute freely"
},
{
"emoji": "✅",
"text": "Commercial use allowed"
},
{
"emoji": "📝",
"text": "Must include copyright notice"
},
{
"emoji": "🆓",
"text": "No copyleft - can relicense"
}
]
},
"note": {
"text": "<span class=\"emoji\">🌟</span> Used by: FreeBSD, OpenBSD, many networking tools"
}
},
{
"type": "content",
"emoji": "💡",
"title": "Choosing a License",
"box": {
"content": "<span class=\"emoji\">🤔</span> <strong>Quick Guide</strong>",
"list": [
"Want simple and permissive? → MIT or BSD",
"Need patent protection? → Apache 2.0",
"Want derivatives to stay open? → GPL",
"Not sure? → MIT is a safe default choice"
]
},
"note": {
"text": "<span class=\"emoji\">🔗</span> Visit choosealicense.com for an interactive guide"
}
}
]
},
{
"id": "hands-on-exercise",
"title": "Hands-On Exercise: Making Your First Contribution",
"slides": [
{
"type": "topic-title",
"title": "Hands-On Exercise",
"box": {
"content": "Let's practice creating and reviewing pull requests together!"
}
},
{
"type": "content",
"emoji": "🗺️",
"title": "Contribution Workflow",
"box": {
"content": "<span class=\"emoji\">📊</span> <strong>From Idea to Merged Code</strong>"
},
"list": [
{
"emoji": "1️⃣",
"text": "Find a project & issue → <em>Choose what to work on</em>"
},
{
"emoji": "2️⃣",
"text": "Fork the repository → <em>Create your own copy</em>"
},
{
"emoji": "3️⃣",
"text": "Clone to local machine → <em>Download to your computer</em>"
},
{
"emoji": "4️⃣",
"text": "Create a new branch → <em>Work in isolation</em>"
},
{
"emoji": "5️⃣",
"text": "Make your changes → <em>Code, document, test</em>"
},
{
"emoji": "6️⃣",
"text": "Commit & push → <em>Save and upload changes</em>"
},
{
"emoji": "7️⃣",
"text": "Create Pull Request → <em>Propose your changes</em>"
},
{
"emoji": "8️⃣",
"text": "Review & iterate → <em>Respond to feedback</em>"
},
{
"emoji": "9️⃣",
"text": "Merged! → <em>Your code is now part of the project!</em>"
}
]
},
{
"type": "content",
"emoji": "🔀",
"title": "Creating a Pull Request (PR)",
"box": {
"title": "Step-by-Step Guide",
"list": [
{
"emoji": "1️⃣",
"text": "<strong>Fork & Clone</strong> - Get the code locally"
},
{
"emoji": "2️⃣",
"text": "<strong>Create branch</strong> - <code>git checkout -b fix-typo</code>"
},
{
"emoji": "3️⃣",
"text": "<strong>Make changes</strong> - Edit files, add tests"
},
{
"emoji": "4️⃣",
"text": "<strong>Commit</strong> - <code>git commit -m \"Fix typo in README\"</code>"
},
{
"emoji": "5️⃣",
"text": "<strong>Push</strong> - <code>git push origin fix-typo</code>"
},
{
"emoji": "6️⃣",
"text": "<strong>Open PR</strong> - Go to GitHub, click 'New Pull Request'"
},
{
"emoji": "7️⃣",
"text": "<strong>Describe changes</strong> - Clear title & description"
}
]
},
"note": {
"text": "<span class=\"emoji\">💡</span> <strong>Tip:</strong> Reference issue numbers in PR description (e.g., 'Fixes #123')"
}
},
{
"type": "content",
"emoji": "📝",
"title": "Writing a Good PR Description",
"box": {
"content": "<span class=\"emoji\">✍️</span> <strong>Make it Easy to Review</strong>",
"list": [
{
"emoji": "📌",
"text": "<strong>Clear title</strong> - Summarize the change in one line"
},
{
"emoji": "📋",
"text": "<strong>What & Why</strong> - Explain what you changed and why"
},
{
"emoji": "🧪",
"text": "<strong>How to test</strong> - Steps to verify your changes work"
},
{
"emoji": "📸",
"text": "<strong>Screenshots</strong> - If UI changes, show before/after"
},
{
"emoji": "🔗",
"text": "<strong>Related issues</strong> - Link to issue being fixed"
}
]
},
"note": {
"text": "<span class=\"emoji\">🎯</span> Good PR descriptions help reviewers understand your work faster"
}
},
{
"type": "content",
"emoji": "👀",
"title": "Reviewing a Pull Request",
"box": {
"title": "How to Be a Helpful Reviewer",
"list": [
{
"emoji": "📖",
"text": "<strong>Read the description</strong> - Understand the goal"
},
{
"emoji": "🔍",
"text": "<strong>Check the code</strong> - Look for bugs, style issues"
},
{
"emoji": "🧪",
"text": "<strong>Test it</strong> - Pull the branch and try it locally"
},
{
"emoji": "💬",
"text": "<strong>Leave comments</strong> - Be specific and constructive"
},
{
"emoji": "✅",
"text": "<strong>Approve or request changes</strong> - Clear feedback"
}
]
},
"note": {
"text": "<span class=\"emoji\">💡</span> <strong>Remember:</strong> Be kind, be specific, and focus on the code, not the person"
}
},
{
"type": "content",
"emoji": "💬",
"title": "PR Review Best Practices",
"box": {
"content": "<span class=\"emoji\">🤝</span> <strong>Constructive Communication</strong>",
"list": [
"✅ \"Consider using a map here for better performance\"",
"✅ \"This might break on edge case X, let's add a test\"",
"✅ \"Nice solution! Could we add a comment explaining why?\"",
"❌ \"This is wrong\"",
"❌ \"Why would you do it this way?\"",
"❌ \"This code is terrible\""
]
},
"note": {
"text": "<span class=\"emoji\">🌟</span> <strong>Golden Rule:</strong> Review code as you'd want yours reviewed - with respect and helpfulness"
}
},
{
"type": "content",
"emoji": "🎓",
"title": "Practice Time!",
"box": {
"content": "<span class=\"emoji\">🚀</span> <strong>Let's Try It Together</strong>",
"list": [
{
"emoji": "🔗",
"text": "Visit: <strong>github.com/OSSPhilippines/first-contribution</strong>"
},
{
"emoji": "📝",
"text": "Follow the tutorial to make your first PR"
},
{
"emoji": "👥",
"text": "Practice the full workflow in a safe environment"
},
{
"emoji": "🎉",
"text": "Get your first contribution merged!"
}
]
},
"note": {
"text": "<span class=\"emoji\">💡</span> This is a beginner-friendly repository designed for practicing!"
}
}
]
}
]
}
}