-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
2056 lines (2047 loc) · 156 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
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>OSCVPass 專案介紹頁面</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.3/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CFKVL29PQR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CFKVL29PQR');
</script>
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">OSCVPass 專案介紹頁面</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PRPD">計畫說明</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PRAD">申請說明</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR01">開源</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR02">社群貢獻</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR03">程式語言與設計</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR04">資安 / 區塊鏈</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR05">語言</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR06">翻譯</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR07">影像辨識 / 聲音辨識</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR08">App</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR09">chatbot / API</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR10">Linux Kernel</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#PR11">發PR修bug</a></li>
</ul>
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid p-0">
<!-- About-->
<section class="resume-section" id="home">
<div class="resume-section-content">
<h2 class="mb-0">
OSCVPass
<span class="text-primary">專案介紹頁面</span>
</h2>
<p class="text-white lead mb-5">本頁面介紹歷年來 OSCVPass 申請通過者的專案列表,並依照專案相關類別分類。</p>
<div class="social-icons">
<a class="social-icon" href="https://github.com/ocftw/OSCVPass"><i class="fab fa-github"></i></a>
<a class="social-icon" href="https://ocf.tw/p/oscvpass/"><i class="fa fa-home"></i></a>
</div>
</div>
</section>
<hr class="m-0" />
<hr class="m-0" />
<!-- PR00 -->
<section class="resume-section" id="PRPD">
<div class="resume-section-content">
<h2 class="mb-5">計畫說明</h2>
<font size= 4 color=white>
為孜孜不倦的開源貢獻好夥伴們設計!<br>
在台灣,開源與開放社群十分活躍,一年會有超過十場的中大型會議 / 活動舉辦,也往往會有許多針對開源貢獻者的補助票券釋出。<br>
<br>
然而以往各大活動從未統整申請這類票券的文件格式、繳交規範等,也沒有針對此環節有所合作,讓申請者需反覆彙整開源貢獻資料內容,時時關注不同活動期限再分別上傳申請,耗費許多時間心力。在繁忙的活動期間,主辦方也得分配志工去審核資格、發信提醒,更是佔用珍貴的人力。<br>
現在,OCF 決定將繁瑣的行政庶務納為己任,啟動 OSCVPass(開源貢獻者快速通關)專案!<br>
<br>
只要在表單中登記特定期間內,你參與的開放原始碼專案或活動之有效證明,由 OCF 募集的社群志工協助審查;確認通過者,收到確認通過信件的一年內可直接透過 OCF 申請 SITCON、COSCUP 等活動的開源貢獻者票券,不需要再重複填資料。不僅同時減輕志工壓力、讓申請者輕鬆參加活動,更希望能憑藉 OSCVPass 的時效性與宣傳力,促進開源貢獻的更新、活絡與發展。<br>
<br>
OCF 邀你一同加入,作伙輕鬆來開源!<br>
</font>
</div>
</section>
<!-- PR00 -->
<section class="resume-section" id="PRAD">
<div class="resume-section-content">
<h2 class="mb-5">申請說明</h2>
<h3 class="mb-3">申請條件</h3>
<font size= 4 color=white>
請提供實際針對開源專案提供開發、推廣、或其他有助專案進展之貢獻相關證明,開源專案與你的參與須符合下列幾種情況:</font>
<ol class="text-white lead mb-0">
<li>申請者請提出近一年內(月份區間)開源貢獻。(例如此時為 2023/06/15,則可以為 2022/06/01 之後的貢獻申請)</li>
<li>開源專案意指專案成果以 <a href="https://www.fsf.org/licensing/">FSF</a> 或 <a href="https://opensource.org/licenses/">OSI</a> 認同之公眾授權條款釋出者。</li>
<li>
你的開源專案的貢獻可以包含但不限是:
<ol>
<li>寫/修 Code 的</li>
<li>寫/修文件的</li>
<li>發 ISSUE 的</li>
<li>籌劃推廣活動的</li>
<li>釋出 non-code 作品的</li>
</ol>
</li>
<li>所提出之貢獻,必須可以經由公開途徑查證(例如提供 GitHub、GitLab、Bitbucket 等公開專案平台上的討論紀錄、網址、commit log、信件文本、公開釋出之演講投影片紀錄等。</li>
</ol>
<br>
<h3 class="mb-0">申請連結:<a href="https://forms.gle/j62bUmTy1hKKGm7n6">點我前往</a></h3>
</div>
</section>
<!-- PR01 -->
<section class="resume-section" id="PR01">
<div class="resume-section-content">
<h2 class="mb-5">開源-專案列表</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">學測五選四</h3>
<p class="text-white">專案連結:<a href="https://git.io/gsat">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">sean</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">EZIO</h3>
<p class="text-white">專案連結:<a href="https://github.com/tjjh89017/ezio">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">tjjh89017</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Galaxy Project</h3>
<p class="text-white">專案連結:<a href="https://github.com/OKTW-Network/Galaxy">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">OKTW-Network</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Facebook Don't Track Me</h3>
<p class="text-white">專案連結:<a href="https://github.com/FlandreDaisuki/Facebook-Dont-Track-Me">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">FlandreDaisuki</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">台灣地震報告系統 (TERS)</h3>
<p class="text-white">專案連結:<a href="https://github.com/MizuyoruTW/TERS">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">MizuyoruTW</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">hugo-lamp</h3>
<p class="text-white">專案連結:<a href="https://github.com/huyb1991/hugo-lamp">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">huyb1991</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">LibreOffice</h3>
</div>
<div class="flex-shrink-0"><span class="text-primary">FRANKLIN WENG</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Fission</h3>
<p class="text-white">專案連結:<a href="https://github.com/fission/fission">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">fission</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0"> Official Docker Image for Node.js</h3>
<p class="text-white">專案連結:<a href="https://github.com/nodejs/docker-node">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">PeterDaveHello</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">OpenStack</h3>
<p class="text-white">專案連結:<a href="https://github.com/openstack/heat">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">heat項目專案負責人</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Python tutorial</h3>
<p class="text-white">專案連結:<a href="https://github.com/macs1207/python-tutorial">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">macs1207</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Facebook Don't Track Me</h3>
<p class="text-white">專案連結:<a href="https://github.com/FlandreDaisuki/Facebook-Dont-Track-Me">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">FlandreDaisuki</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">GDIndex</h3>
<p class="text-white">專案連結:<a href="https://github.com/maple3142/GDIndex">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">maple3142</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">BerryNet</h3>
<p class="text-white">專案連結:<a href="https://github.com/DT42/BerryNet">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">DT42</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">WasmVM</h3>
<p class="text-white">專案連結:<a href="https://github.com/WasmVM/WasmVM">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">LuisHsu</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Telegram_link_Line</h3>
<p class="text-white">專案連結:<a href="https://github.com/we684123/Telegram_link_Line">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">we684123</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">tfhe-demo-ais3-2019</h3>
<p class="text-white">專案連結:<a href="https://github.com/s3131212/tfhe-demo-ais3-2019">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">s3131212</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">MuPDF</h3>
<p class="text-white">專案連結:<a href="https://github.com/ArtifexSoftware/mupdf">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ArtifexSoftware</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">oxool-community</h3>
<p class="text-white">專案連結:<a href="https://github.com/OSSII/oxool-community">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">OSSII</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Search Sketch</h3>
<p class="text-white">專案連結:<a href="https://github.com/candy02058912/search-sketch">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">candy02058912</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">MozTW 網站</h3>
<p class="text-white">專案連結:<a href="https://github.com/moztw/www.moztw.org/commits?author=irvin">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">irvin</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">bio-partitioner</h3>
<p class="text-white">專案連結:<a href="https://github.com/david30907d/bio-partitioner">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">david30907d</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">JNovelDownloader</h3>
<p class="text-white">專案連結:<a href="https://github.com/pupuliao/JNovelDownloader">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">pupuliao</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Disfactory</h3>
<p class="text-white">專案連結:<a href="https://github.com/Disfactory/Disfactory">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Disfactory</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Key Frequency Logger</h3>
<p class="text-white">專案連結:<a href="https://github.com/ErgoKB/key_frequency_logger">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ErgoKB</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Download Youtube Video in Golang</h3>
<p class="text-white">專案連結:<a href="https://github.com/kkdai/youtube">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">kkdai</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">simple-channel-notify</h3>
<p class="text-white">專案連結:<a href="https://github.com/timfanda35/simple-channel-notify">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">timfanda35</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">CodiMD</h3>
<p class="text-white">專案連結:<a href="https://github.com/hackmdio/codimd">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">hackmdio</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">書蟲小幫手</h3>
<p class="text-white">專案連結:<a href="https://github.com/chihchun/library-helper">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">chihchun</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">open-huninn-font</h3>
<p class="text-white">專案連結:<a href="https://github.com/justfont/open-huninn-font">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">justfont</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">vim-agda-async</h3>
<p class="text-white">專案連結:<a href="https://github.com/ray851107/vim-agda-async">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ray851107</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">ACGN股票交易市場</h3>
<p class="text-white">專案連結:<a href="https://github.com/ACGN-stock/acgn-stock">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ACGN-stock</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">CapTube</h3>
<p class="text-white">專案連結:<a href="https://github.com/dannvix/CapTube">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">dannvix</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">avsi4comp</h3>
<p class="text-white">專案連結:<a href="https://github.com/fieliapm/avsi4comp">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">fieliapm</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">ThectBlog</h3>
<p class="text-white">專案連結:<a href="https://github.com/cheetosysst/ThectBlog">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">cheetosysst</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">github-profile-summary-cards</h3>
<p class="text-white">專案連結:<a href="https://github.com/vn7n24fzkq/github-profile-summary-cards">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">vn7n24fzkq</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">smore</h3>
<p class="text-white">專案連結:<a href="https://github.com/cnclabs/smore">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">cnclabs</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">SOLL</h3>
<p class="text-white">專案連結:<a href="https://github.com/second-state/SOLL">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">second-state</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">xNCTU</h3>
<p class="text-white">專案連結:<a href="https://github.com/Sea-n/xNCTU">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Sea-n</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Init Engineer</h3>
<p class="text-white">專案連結:<a href="https://github.com/init-engineer">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">init-engineer</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">旅遊規劃王</h3>
<p class="text-white">專案連結:<a href="https://github.com/t106362512/King-of-the-tourism-planning">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">t106362512</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">ThectBlog</h3>
<p class="text-white">專案連結:<a href="https://github.com/cheetosysst/ThectBlog">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">cheetosysst</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">frrouting-lg</h3>
<p class="text-white">專案連結:<a href="https://github.com/steveyiyo/frrouting-lg">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">steveyiyo</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">cdp-cache</h3>
<p class="text-white">專案連結:<a href="https://github.com/sillygod/cdp-cache">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">sillygod</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">github-dark-theme</h3>
<p class="text-white">專案連結:<a href="https://github.com/poychang/github-dark-theme">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">poychang</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">drogon</h3>
<p class="text-white">專案連結:<a href="https://github.com/an-tao/drogon">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">an-tao</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">cf.composer</h3>
<p class="text-white">專案連結:<a href="https://github.com/nclab/cf.composer">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">nclab</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">UnblockNeteaseMusic</h3>
<p class="text-white">專案連結:<a href="https://github.com/UnblockNeteaseMusic/server">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">UnblockNeteaseMusic</span></div>
</div>
</div>
</section>
</div>
<!-- PR02 -->
<section class="resume-section" id="PR02">
<div class="resume-section-content">
<h2 class="mb-5">社群貢獻-專案列表</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">維基百科等維基媒體計畫</h3>
<p class="text-white">維基百科共計 30000 多次編輯、維基共享資源則共 20000 多次;Wikidata 則協助建立資料庫項目以及臺灣相關資料的規範</p>
<p class="text-white">專案連結:<a href="https://zh.wikipedia.org/wiki/Special:%E7%94%A8%E6%88%B7%E8%B4%A1%E7%8C%AE/Taiwania_Justo">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Taiwania_Justo</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">PyCon Taiwan 2019</h3>
<p class="text-white">PyCon Taiwan 2019 為台灣全國性的 Python 社群活動在這次的議程中我作為贊助組長參與整個 PyCon TW 的籌備過程。</p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Robert</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">LibreOffice</h3>
<p class="text-white">我2019年主要參與的開源專案是 LibreOffice,我曾經參加五月的 LibreOffice Asia 研討會並撰寫報導介紹此專案,並在九月 LibreOffice 研討會擔任講者,報告台灣原住民語文書平台在地話的計畫</p>
<p class="text-white">專案連結:<a href="https://cgit.freedesktop.org/libreoffice">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Kuan-Ting Lin</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">GCC</h3>
<p class="text-white">RISC-V toolchain 主要開發者之一</p>
<p class="text-white">專案連結:<a href="https://raw.githubusercontent.com/gcc-mirror/gcc/master/gcc/ChangeLog">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Kito</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">pycontw-postevent-report-generator</h3>
<p class="text-white">PyCon TW 相關的 open source projects,主要活躍於官網開發維護與結案報告產生器</p>
<p class="text-white">專案連結:<a href="https://github.com/pycontw/pycontw-postevent-report-generator/commits?author=tai271828">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">tai271828</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">openstreetmap</h3>
<p class="text-white">OpenStreetMap (非官方譯名:開放街圖,簡稱 OSM ) 是自由而且開源的全球地圖,於2004年由英國的 Steve Coast 發起,採用類似 Wiki 的協作編輯以及開放的授權與格式。
我在這個地理資料庫裡貢獻了許多我自己調查的資料,例如我生活周遭的商店資訊、學校/車站之類的公共設施細節。</p>
<p class="text-white">專案連結:<a href="https://www.openstreetmap.org/user/jiazheng/history#map=9/24.4749/121.1966">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">jiazheng</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">mopcon 2019</h3>
<p class="text-white">於這個專案中主要擔任管理者與營運維護者</p>
<p class="text-white">專案連結:<a href="https://mopcon.org/2019/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Hash</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">debian</h3>
<p class="text-white">擔任 Debian 開發者, 並參與 pkg-security team, 負責協助維護數十個 open source projects</p>
<p class="text-white">專案連結:<a href="https://salsa.debian.org/szlin">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">szlin</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">hkoscon 2019</h3>
<p class="text-white">Hong Kong Open Source Conference ( HKOSCon ) is one of the major Open Source conferences in Hong Kong since its first commercement in 2013, bringing an international crowd of developers, contributors, users, IT manager, students and public. The conference aims to promote the open source development into communities and to encourage its application in the industry.</p>
<p class="text-white">專案連結:<a href="https://hkoscon.org/2019/about/volunteers/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">小兔黑黑</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Ubuntu-TW</h3>
<p class="text-white">Ubuntu-TW: Ubuntu Taiwan LoCo Team. NCNU-OpenSource: 暨大開源實驗室、課程、活動. OSSPlanet: Free hosting service for OpenSource Projects.</p>
<p class="text-white">專案連結:<a href="https://profile.codersrank.io/user/bluet">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">bluet</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">維基百科 / Wikipedia</h3>
<p class="text-white">在維基百科中協助編輯內容、頁面管理、社群參與與討論</p>
<p class="text-white">專案連結:<a href="https://zh.wikipedia.org/wiki/User:Htchien">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Htchien</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Linux 讀書會</h3>
<p class="text-white">從基礎的部份來教大家去瞭解 Linux kernel,並帶入簡單的練習實做。我們 Hackmd 的部份為教學文章,Github 的部份為章節練習,我目前完成了前面幾個章節,哪些章節請參考成員那篇。</p>
<p class="text-white">專案連結:<a href="https://hackmd.io/@combo-tw/Linux-%E8%AE%80%E6%9B%B8%E6%9C%83/%2F%40combo-tw%2FHyJXuuy8H">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">小春</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Debian</h3>
<p class="text-white">Debian is an operating system and a distribution of Free Software.</p>
<p class="text-white">專案連結:<a href="https://qa.debian.org/developer.php?login=czchen">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">czchen</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">pycon.tw</h3>
<p class="text-white">PyCon Taiwan 是台灣內最大的 Python Conference,每年促進 Python 愛好者的彼此交流,我在 19 年協助開發網站頁面</p>
<p class="text-white">專案連結:<a href="https://github.com/pycontw/pycon.tw/pull/538">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">josix</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">openmaptiles</h3>
<p class="text-white">開源的向量圖磚(Mapbox Vector Tile格式)產製方案,主要用於 OpenStreetMap 資料的加值使用。</p>
<p class="text-white">專案連結:<a href="https://github.com/openmaptiles/openmaptiles/releases/tag/v3.10">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">pham</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Android-x86 Open Source Project</h3>
<p>詳情請見<a href="https://en.wikipedia.org/wiki/Android-x86">https://en.wikipedia.org/wiki/Android-x86</a></p>
<p>專案連結:<a href="https://git.osdn.net/view?a=project_list;o=age;pf=android-x86">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary"></span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Cofacts</h3>
<p class="text-white">「Cofacts 真的假的」是一套連結網路訊息與事實查核的協作型系統。所有程式為 MIT 授權,而非程式之資料(蒐集到的謠言、回應)均以 CC0 釋出至公眾領域。
作為專案發起人,我會開發系統的核心至前端部分,並且每週主持開發者週會,推進專案進度。</p>
<p class="text-white">專案連結:<a href="https://github.com/cofacts/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">MrOrz/比鄰</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">tech-talks-note</h3>
<p class="text-white">針對 Event-sourcing pattern 的多種相關資訊來源做研究彙整與實作,
在活動中分享知識與討論細節,
並開放專案原始碼與講稿。</p>
<p class="text-white">專案連結:<a href="https://github.com/EddieChoCho/tech-talks-note/blob/master/2019/ChoChosBizarreAdventureOfEventSourcing.md">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Eddie</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">pycon 2020</h3>
<p class="text-white">PyCon Taiwan 是全台最大的 Python 開源程式語言年會,我在 organizers 中擔任協調各組、財務的工作。</p>
<p class="text-white">專案連結:<a href="https://tw.pycon.org/2020/zh-hant/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">rock</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">pycon.tw</h3>
<p class="text-white">主要負責開發網站</p>
<p class="text-white">專案連結:<a href="https://github.com/pycontw/pycon.tw">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">james</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">sciwork</h3>
<p class="text-white">I am the founder of sciwork, and would like to find opportunities to promote he community in COSCUP.
Sciwork is a community for researchers and engineers to share and discuss computer code for scientific, numerical, and engineering work. We believe in the power of openness, and use open source as a means to advance software development for computational sciences.
As information technology blending in every aspect of human activities, proficient use of programming languages is a prerequisite for conducting most research and engineering work. As the practitioners observed, the work evolved into a hierarchy of skills that take years to acquire. We need a thorough understanding of the problem to solve as well as the mastery of computer programming to deliver reliable solution. It is overly challenging since either of both is already complicated. Sciwork would like to get involved in the global effort to solve the issue of code development entangling with science and engineering.
Our activities include but are not limited to coding sprints, hands-on tutorials, and technical talks and conferences, on-line or off-line.</p>
<p class="text-white">專案連結:<a href="https://sciwork.dev/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">yyc</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Swift taipei meetup</h3>
<p class="text-white">主辦 開源程式語言 Swift 的使用者聚會</p>
<p class="text-white">專案連結:<a href="https://www.meetup.com/Swift-Taipei-User-Group/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">John</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">COSCUP 2019 文件大全</h3>
<p class="text-white">這個專案整理了 COSCUP 議程組 2019 寄送的信件範本,供未來的我們參考
但其實我主要的工作只是把散落各地的文件上傳而已</p>
<p class="text-white">專案連結:<a href="https://github.com/catcatcatcat/COSCUP_program_templates/tree/master/COSCUP19">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">四貓</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Gophercon TW 2020 官網</h3>
<p class="text-white">協助 Golang Taiwan 建置年會官網</p>
<p class="text-white">專案連結:<a href="https://github.com/golangtw/gophercon2020">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Yun Chen</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">g0v summit 2020 主網站 + 徵件網站</h3>
<p class="text-white">g0v summit 2020 是兩年一次的社群年會,我在其中參與兩個網站的製作,主要負責撿沒人作的事情來作</p>
<p class="text-white">專案連結:<a href="https://github.com/g0v/summit2020/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ddio</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Django 緩慢排錯心法經驗談</h3>
<p class="text-white">這是一篇為了增進初階開發者對於 Django ORM 內部運作的認識的文章。原先預計是會寫成系列文的,但現在有點難產中。但有鑒於 Django 本身開源的性質,現在這些成果應該也算是對開源有些許貢獻吧!</p>
<p class="text-white">專案連結:<a href="https://github.com/hiimdoublej/djangoDebugExample">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Johnny</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">CC台灣社群討論室</h3>
<p class="text-white">Responsive contribution to the CC 台灣社群討論室, urshing people in Taiwan to use CC and Open Access materials in right way.</p>
<p class="text-white">專案連結:<a href="https://github.com/ocftw/tw.creativecommons.org">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Lucien</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">riscv: Add KASAN support</h3>
<p class="text-white">Porting KASAN to riscv</p>
<p class="text-white">專案連結:<a href="https://lkml.org/lkml/2019/10/27/814">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Nick Hu</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">ArticleParser</h3>
<p class="text-white">由 g0v 社群參與者發起,《零時檔案局》要用開源鄉民的力量,蒐集資料,協力研究台灣資訊空間。《零時檔案局》會⋯
開發一套開源、自動的資料蒐集軟體系統;
蒐集資料,發佈為開放資料集;
發佈交換資料標準格式;
主辦小松,餵養資料分析和詮釋的社群;
發佈各式社群生產的內容及報告。
我主要貢獻其中的 ZeroScrapper 與 ArticleParser 的程式。</p>
<p class="text-white">專案連結:<a href="https://github.com/disinfoRG/ArticleParser/commits?author=pm5">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">pm5</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">openstreetmap</h3>
<p class="text-white">參與完成專案宗旨:建立自由的地理資訊資料庫</p>
<p class="text-white">專案連結:<a href="https://www.openstreetmap.org/user/yellowsoar">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">yellowsoar</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">MOPCON 2020</h3>
<p class="text-white">MOPCON 是堅持濁水溪以南的開源軟體社群,2020 年我加入了 MOPCON 資訊志工組別,一起和夥伴寫前端。</p>
<p class="text-white">專案連結:<a href="https://github.com/MOPCON/MOPCON/pull/438">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Chita</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">MOPCON</h3>
<p class="text-white">MOPCON 官網建置 主要負責規劃及協助開發後端 API </p>
<p class="text-white">專案連結:<a href="https://github.com/MOPCON/MOPCON">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Eric</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">軟體自由日派對影像紀錄</h3>
<p class="text-white">軟體自由日 (Software Freedom Day) 是 Digital Freedom Foundation 2005 年開始發起的國際軟體自由慶祝活動,全球各地每年會舉辦各式各樣的活動,慶祝軟體的自由帶給世界的美好。
9/19,開放文化基金會和 MozTW 社群一起籌備了軟體自由日的活動,現場有吃吃喝喝、社群義賣、閃電講活動、社群交流時間
本次擔任平面影像紀錄</p>
<p class="text-white">專案連結:<a href="https://www.flickr.com/photos/daisuke1230/albums/72157716100373362">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">大助</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">PyCon Taiwan 2020</h3>
<p class="text-white">擔任議程組志工,負責更新官網內容,審核財務補助,擔任兩場 talk 與一場 tutorial 的主持人,規劃 City Tour 與 Lightning Talk</p>
<p class="text-white">專案連結:<a href="https://github.com/pycontw/pycon.tw/pulls?q=is%3Apr+author%3ASirius207+is%3Aclosed">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">pochun</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">cofacts</h3>
<p class="text-white">I am a new contributor to the cofacts project, an open source fact-checking collaboration platform. I've mostly been working on the two projects listed above, and my contributions include writing&refactoring code, updating docs, creating&organizing issues.</p>
<p class="text-white">專案連結:<a href="https://github.com/cofacts">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Zoe</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">rumors-line-bot</h3>
<p class="text-white">協助開發 LINEBot、在 cofacts 小聚幫忙、參與每週的開發者會議</p>
<p class="text-white">專案連結:<a href="https://github.com/cofacts/rumors-line-bot/pulls?q=+is%3Apr+author%3Anonumpa+">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">nonumpa</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">MOPCON 2020</h3>
<p class="text-white">Lead the preparation for MOPCON 2019, 2020 and fixed the tracking issue for a long while to improve our data-driven strategies.</p>
<p class="text-white">專案連結:<a href="https://github.com/MOPCON/MOPCON/pull/479">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary"></span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">etcdadm</h3>
<p class="text-white">Kubernetes 是目前最常見的容器管理平台
Code 貢獻 / Cloud Native Taiwan User Group Co-organizer / 講者</p>
<p class="text-white">專案連結:<a href="https://github.com/kubernetes-sigs/etcdadm/pull/238">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">genekuo</span></div>
</div>
</section>
<!-- PR03 -->
<section class="resume-section" id="PR03">
<div class="resume-section-content">
<h2 class="mb-5">程式設計與語言-專案列表</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">py-libp2p</h3>
<p class="text-white">專案連結:<a href="https://github.com/libp2p/py-libp2p">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">libp2p</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">performance</h3>
<p class="text-white">專案連結:<a href="https://github.com/javalin/performance">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">javalin</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">cncjs</h3>
<p class="text-white">專案連結:<a href="https://github.com/cncjs/cncjs">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">cncjs</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">GCC</h3>
<p class="text-white">專案連結:<a href="https://github.com/gcc-mirror/gcc">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">gcc-mirror</span></div>
</div>
<div class="resume-section-content">
<h2 class="mb-5"></h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">vrac</h3>
<p class="text-white">專案連結:<a href="https://github.com/green-coder/vrac">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">green-coder</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">flatten-dict</h3>
<p class="text-white">專案連結:<a href="https://github.com/ianlini/flatten-dict">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ianlini</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">react-form-maker</h3>
<p class="text-white">專案連結:<a href="https://github.com/ronny1020/react-form-maker">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ronny1020</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">nodejs-express-template</h3>
<p class="text-white">專案連結:<a href="https://github.com/Rice9547/nodejs-express-template">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Rice9547</span></div>
</div>
<div class="resume-section-content">
<h2 class="mb-5"></h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">www.jsdelivr.com</h3>
<p class="text-white">專案連結:<a href="https://github.com/jsdelivr/www.jsdelivr.com/">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">jsdelivr</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">KeyboardSimulator</h3>
<p class="text-white">專案連結:<a href="https://github.com/ChiHangChen/KeyboardSimulator">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">ChiHangChen</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">k8s-jenkins-django-jasper-shop</h3>
<p class="text-white">專案連結:<a href="https://github.com/JasperSui/k8s-jenkins-django-jasper-shop">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">JasperSui</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Dbux</h3>
<p class="text-white">專案連結:<a href="https://github.com/Domiii/dbux">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Domiii</span></div>
</div>
<div class="resume-section-content">
<h2 class="mb-5"></h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">react-native-debugger</h3>
<p class="text-white">專案連結:<a href="https://github.com/jhen0409/react-native-debugger">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">jhen0409</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">NetworkServicePackage</h3>
<p class="text-white">專案連結:<a href="https://github.com/Jimmy01240397/NetworkServicePackage">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jimmy01240397</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">cncjs</h3>
<p class="text-white">專案連結:<a href="https://github.com/cncjs/cncjs">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">cncjs</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">Chuon</h3>
<p class="text-white">專案連結:<a href="https://github.com/Jimmy01240397/Chuon">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jimmy01240397</span></div>
</div>
<div class="resume-section-content">
<h2 class="mb-5"></h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">LANRSAAuthenticationService</h3>
<p class="text-white">專案連結:<a href="https://github.com/Jimmy01240397/LANRSAAuthenticationService">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jimmy01240397</span></div>
</div>
<div class="resume-section-content">
<h2 class="mb-5"></h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">CodingMaker</h3>
<p class="text-white">專案連結:<a href="https://github.com/Jimmy01240397/CodingMaker">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Jimmy01240397</span></div>
</div>
</section>
<!-- PR04 -->
<section class="resume-section" id="PR04">
<div class="resume-section-content">
<h2 class="mb-5">資安 / 區塊鏈-專案列表</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">tangle-accelerator</h3>
<p class="text-white">專案連結:<a href="https://github.com/DLTcollab/tangle-accelerator">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">DLTcollab</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">breach.tw</h3>
<p class="text-white">專案連結:<a href="https://github.com/breach-tw/breach.tw/tree/admin_panel">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">海豹/石頭/雷雷</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">twnhi-smartcard-agent</h3>
<p class="text-white">專案連結:<a href="https://github.com/Inndy/twnhi-smartcard-agent">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">Inndy</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">flow-js-sdk</h3>
<p class="text-white">專案連結:<a href="https://github.com/onflow/flow-js-sdk">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">onflow</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">likecoin</h3>
<p class="text-white">專案連結:<a href="https://github.com/likecoin">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">likecoin</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">MOST_ParentChain</h3>
<p class="text-white">專案連結:<a href="https://github.com/TMineCola/MOST_ParentChain">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">TMineCola</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">quark-engine</h3>
<p class="text-white">專案連結:<a href="https://github.com/quark-engine/quark-engine">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">quark-engine</span></div>
</div>
</section>
<!-- PR05 -->
<section class="resume-section" id="PR05">
<div class="resume-section-content">
<h2 class="mb-5">語言-專案列表</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">amis-safolu</h3>
<p class="text-white">專案連結:<a href="https://github.com/miaoski/amis-safolu">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">miaoski</span></div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="flex-grow-1">
<h3 class="mb-0">shudu</h3>
<p class="text-white">專案連結:<a href="https://github.com/jackkuo-tw/shudu">點我前往</a></p>
</div>
<div class="flex-shrink-0"><span class="text-primary">jackkuo-tw</span></div>