forked from OCselected/ocselected.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1962 lines (311 loc) · 22.6 KB
/
index.html
File metadata and controls
1962 lines (311 loc) · 22.6 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
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 class="no-js" lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
<meta name="generator" content="Hugo 0.52" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="">
<meta property="og:type" content="article"/>
<meta property="og:description" content=""/>
<meta property="og:title" content="开源之道 : 开源之道"/>
<meta property="og:site_name" content="The Tao of Open Source."/>
<meta property="og:image" content="" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="" />
<meta property="og:image:height" content="" />
<meta property="og:url" content="http://www.opensourceway.community/">
<meta property="og:locale" content="en_US">
<meta property="article:published_time" content="2020-04-25"/>
<meta property="article:modified_time" content="2020-04-25"/>
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@ocselected">
<meta name="twitter:title" content="开源之道 : ocselected">
<meta name="twitter:creator" content="@ocselected">
<meta name="twitter:description" content="">
<meta name="twitter:image:src" content="">
<meta name="twitter:domain" content="opensourceway.community">
<base href="http://www.opensourceway.community">
<title>开源之道</title>
<link rel="canonical" href="http://www.opensourceway.community/">
<link href='http://fonts.googleapis.com/css?family=Fjalla+One|Open+Sans:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="/static/css/pagination.css">
</head>
<body lang="en">
<header id="header">
<ul>
<a href="/" border=0 id="logolink">
<img src="/images/come_in_we_are_open.jpg" alt="logo" width="512px" height="96px"/>
</a>
</ul>
<nav id="nav">
<ul id="mainnav">
<li>
<a href="/posts/ocselected-reading-guide/">
<span class="icon"> <i aria-hidden="true" class="icon-home"></i></span>
<span> 导航 </span>
</a>
</li>
<li>
<a href="/posts/opensource_talking/2020-done-and-plan-index/">
<span class="icon"> <i aria-hidden="true" class="icon-headphones"></i></span>
<span> 播客 </span>
</a>
</li>
<li>
<a href="/community/communication/">
<span class="icon"> <i aria-hidden="true" class="icon-discuss"></i></span>
<span> 交流 </span>
</a>
</li>
<li>
<a href="/posts/paper_or_book_reading/2020_book_lists/">
<span class="icon"> <i aria-hidden="true" class="icon-graduation"></i></span>
<span> 共读 </span>
</a>
</li>
<li>
<a href="https://github.com/OCselected/open-source-way-2021-calendar-program" target="_blank">
<span class="icon"> <i aria-hidden="true" class="icon-idea"></i></span>
<span> 文化 </span>
</a>
</li>
<li>
<a href="/community/welcome-to-anyone-contribute/">
<span class="icon"> <i aria-hidden="true" class="icon-tux"></i></span>
<span> 参与 </span>
</a>
</li>
<li>
<a href="/index.xml">
<span class="icon"> <i aria-hidden="true" class="icon-feed-3"></i></span>
<span> 订阅 </span>
</a>
</li>
<li>
<a href="/posts/the_way_of_open_source/open_source_way/">
<span class="icon"> <i aria-hidden="true" class="icon-user"></i></span>
<span> 关于 </span>
</a>
</li>
</ul>
<ul id="social">
<p>扫码订阅微信公众号</p>
<li> <img src="/public/qrcode_for_gh_5628e0875dfd_258.jpeg" alt="qrcode" width="172px" height="172px"/>
</li>
</ul>
</nav>
</header>
<section id="main">
<div>
<h1 id="title">开源之道</h1>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/paper_or_book_reading/review_the_foundation_of_open_source_city/">开源哲学在开放城市中的良好应用 ———— 2020 世界阅读日读后感 </a> </h2>
<div class="post-meta">Sat, Apr 25, 2020 | 作者: 开源之道 | </div>
</header>
开源之道图书共读,突发灵感,临时凑热闹,选择了一本2020年的电子图书,希望能够在24小时之内阅读完成,最后以一篇读后感总结为结束标志,非常遗憾我未能在24小时之内完成,尽管连读带写一共花6个小时,但是我还得干其他事,结果就超过了50个小时,这是做事情的正常情况。
<footer>
<a href='http://www.opensourceway.community/posts/paper_or_book_reading/review_the_foundation_of_open_source_city/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-26/">如何采用复制粘贴开源代码大法被辞掉的方法;Drupal 创始人谈开源;等,开源之道一周精选2020 04 26 </a> </h2>
<div class="post-meta">Tue, Apr 21, 2020 | 作者: 开源之道 | </div>
</header>
重新思考数字化转型;开放设计项目 RepRap;Argon和 Dragfly 成为 CNCF 孵化项目;openEuler 希望成为多种计算场景下最好的OS;数字化转型: 疫情之后应思考的四件事;开源分析工程工具厂商Fishtown 获 A轮 1亿2千9百万美金;AWS 和 Facebook 联手启动PyTorch的云服务;微软让他的Outlook用户切换浏览器到Edge;Drupal 创始人 Dries Buytaert 谈经济下滑开源助你;复制和粘贴代码:如何使用开源代码然后被辞掉;AMD 加盟 Academy software Foundation;采用开源对于小型企业的最大障碍和益处
<footer>
<a href='http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-26/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/opensource_talking/2020-03-29-online-reading-engineering/">Episode 9:开源是一门工程学 ———— 图书共读交流 </a> </h2>
<div class="post-meta">Tue, Apr 14, 2020 | 作者: 开源之道 | </div>
</header>
开源之道Talking,本来预计三月是聊聊Peer Review的,结果邀请的嘉宾没有回应,于是就不能成行,这也是值得反思的地方,于是就将疫情期间不能面对面见面的开源之道图书共读活动的交流录音编辑为本期的播客。也算是试验性质的,其实工程学本来就是开源的重要课题。
<footer>
<a href='http://www.opensourceway.community/posts/opensource_talking/2020-03-29-online-reading-engineering/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/opensource_talking/2020-done-and-plan-index/">开源之道 Talking 节目 Episode 汇总(2020) </a> </h2>
<div class="post-meta">Tue, Apr 14, 2020 | 作者: 开源之道 | </div>
</header>
用声音来传播开源知识,探究思想,寻找其发生的奥秘!开源之道Talking ,业界顶级开源大咖表达观点,探寻问题,寻找答案,这里是洞见的集中地!
<footer>
<a href='http://www.opensourceway.community/posts/opensource_talking/2020-done-and-plan-index/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-19/">开源之道已被证明是开发软件的最佳解决方式;开源的四大发明,等开源之道一周精选2020 04 19 </a> </h2>
<div class="post-meta">Tue, Apr 14, 2020 | 作者: 开源之道 | </div>
</header>
开放式共同体健康:2019年workshop记录;突发的远程工作可以从开源共同体中学到什么;开源的四大发明;开放源代码、开放科学:新冠肺炎危机下的思考与实践;开源成就了云计算;GitHub 免费私有仓库协作的背后动机;Kubernetes 在银行的思考;对于某些行业,开源、闭源是无所谓的;GitLab Guru:15年了,git仍在演化;开源之道已被证明是开发软件的最佳解决方式;丹麦如何将公司转变为开源;Postgres、开源、赚钱和共同体
<footer>
<a href='http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-19/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/foundation_introduce/eclipse-introduce/">商业公司主导下的非营利开源软件基金会之 ———— Eclipse 的成长和发展 </a> </h2>
<div class="post-meta">Tue, Apr 7, 2020 | 作者: 开源之道 | </div>
</header>
毋庸置疑,Eclipse 是成功的,无论是项目本身,还是基金会运作,它所打造的IDE栈,引领了一个时代,彻底改变了IDE的格局,也让一门语言赢得了天下,那么这个项目和其背后的基金会背后有着什么样的经历?让我们不妨回顾一番。
<footer>
<a href='http://www.opensourceway.community/posts/foundation_introduce/eclipse-introduce/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/foundation_introduce/numfocus-introduce/">专注于开源数据科学软件的非营利基金会—— NumFOCUS 的来龙去脉 </a> </h2>
<div class="post-meta">Tue, Apr 7, 2020 | 作者: 开源之道 | </div>
</header>
赞助者文化、法律支撑、社会自组织、信任关系、工程技术等等关系铸就了开源软件非营利基金会机构的建立,这不是一个章程、一笔资金、一条中央指示的事情,就让我们来从技术的角度出发,来看看一个优秀的基金会的演变史。
<footer>
<a href='http://www.opensourceway.community/posts/foundation_introduce/numfocus-introduce/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-12/">软件生态系统:特性、收益和挑战;MIT 的计算思维课在疫情期间火了等,开源之道一周精选2020 04 12 </a> </h2>
<div class="post-meta">Mon, Apr 6, 2020 | 作者: 开源之道 | </div>
</header>
开放源代码文档的艺术;红帽任命 Paul Cormier 为总裁兼首席执行官;2006年 OSCON 的高管花絮总结;如何成为一家开源企业(GitHub企业版);软件生态系统:特性、收益和挑战;失业了怎么办?开源拯救你;临床和经济评论(ICER)可以从Linux/Mozilla学到什么;Google 发布 2020年度文档季;Cloud Foundry 基金会执行总监更换;Canonical 开启开源应用托管业务;东太平洋开源的崛起;MIT 的计算思维课在疫情期间火了;金融科技开源基金会加入Linux基金会;直播服务平台OBS;FOSSID 和 BearingPoint 合作交付开源软件治理解决方案;开源的核心是其共同体
<footer>
<a href='http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-12/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-05/">如何让开源多点成功的几率;开源和 COVID-19: 道高一尺魔高一丈;等开源之道一周精选2020 04 05 </a> </h2>
<div class="post-meta">Sun, Apr 5, 2020 | 作者: 开源之道 | </div>
</header>
避免边缘化:开源软件如何成功?Eclipse 基金会发布 VS Code 竞品:Theia 1.0;Georg Link 谈 CHAOSS 的共同体衡量项;GitLab 开源了新的18个功能,希望人们参与;Color正在启动一个高容量的 COVID-19 测试实验室,并将开源其设计和协议;ASWF 和开源软件的优势;如何让开源多点成功的几率;Linux 对抗过 IBM,开源软件还能对抗 Waymo和Tesla吗?开源和 COVID-19: 道高一尺魔高一丈;Google 的代码搜索;开源从叛逆回归主流; Mozilla 为开源的 COVID-19相关的技术项目提供资助
<footer>
<a href='http://www.opensourceway.community/posts/opensource/daily_reading/2020/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892020-04-05/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="http://www.opensourceway.community/posts/foundation_introduce/spi-annual-report-introduce/">想发展开源?给钱就好了,其它不用管 ———— 历届 SPI 主席序言 </a> </h2>
<div class="post-meta">Thu, Apr 2, 2020 | 作者: SPI | 译者: 开源之道 </div>
</header>
向来以官方-民间、国家-社会、城市-乡村、正规-野路子等二元来区分所有事情的本土文化,对于赞助非营利的机构是陌生的,但是没有关系,开源软件的发展,尤其是对于基础设施的奠基作用,会让朝野的人明白是怎么回事的。建构于国家的官僚体系,是无法驾驭匠人的,甚至金钱都不是最关键的。
<footer>
<a href='http://www.opensourceway.community/posts/foundation_introduce/spi-annual-report-introduce/'><nobr>Read more →</nobr></a>
</footer>
</article>
<nav class="pagination group">
<div class="wp-pagenavi">
<span class="pages">
第 1 页,共56 页
(共502 篇文章)
</span>
</div>
<nav class="pagination">
<ul>
<li class="active">
<a href="/">
1
</a>
</li>
<li class="">
<a href="/page/2/">
2
</a>
</li>
<li class="">
<a href="/page/3/">
3
</a>
</li>
<li class="">
<a href="/page/4/">
4
</a>
</li>
<li class="">
<a href="/page/5/">
5
</a>
</li>
<li class="">
<a href="/page/6/">
6
</a>
</li>
<li class="">
<a href="/page/7/">
7
</a>
</li>
<li class="">
<a href="/page/8/">
8
</a>
</li>
<li class="">
<a href="/page/9/">
9
</a>
</li>