-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
2124 lines (311 loc) · 23.5 KB
/
index.html
File metadata and controls
2124 lines (311 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
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="https://www.opensourceway.community/">
<meta property="og:locale" content="en_US">
<meta property="article:published_time" content="2021-05-20"/>
<meta property="article:modified_time" content="2021-05-20"/>
<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="https://www.opensourceway.community">
<title>开源之道</title>
<link rel="canonical" href="https://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="/posts/askos/why_we_need_ask/" 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="https://www.opensourceway.community/posts/book-of-open-source/2021-06-rebel-code/">「开源之书·共读」2021-06: 颠覆代码:Linux和开源的革命 </a> </h2>
<div class="post-meta">Thu, May 20, 2021 | 作者: 开源之道 | </div>
</header>
软件项目作为计算机专业技术的一个表达,其本身所累积的代码,对于绝大多数人来说,理解起来几乎是无比困难的,然而,围绕这个项目所发生的工程师们的故事却是可以引起人们的共鸣的,也就是开源共同体的人文的一面。而这也是开源项目之所以在工程上取得成功的重要原因,本书乃其中之典范也。
<footer>
<a href='https://www.opensourceway.community/posts/book-of-open-source/2021-06-rebel-code/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/book-of-open-source/2021-05-the-open-source-way/">「开源之书·共读」2021·5:开源之路2.0 </a> </h2>
<div class="post-meta">Fri, Apr 30, 2021 | 作者: 开源之道 | </div>
</header>
Jono Bacon 写过两本非常实用的Community建设的书籍:《the art of community》和《people powered》,但是,不同的文化背景下的具体做法,落地就成了巨大的问题,那么基本上就又回归了非常古老的问题,本土究竟有没有可能打造出有实力的开源共同体,或者说,没有开源共同体能否打造出卓越的开源的项目?那么这本来自RedHat OSPO团队的指南又有多少参考价值?
<footer>
<a href='https://www.opensourceway.community/posts/book-of-open-source/2021-05-the-open-source-way/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/book-of-open-source/2021-04-open-source-for-business/">「开源之书·共读」2021.4月共读:《面向企业的开源:开源软件许可实用指南》 </a> </h2>
<div class="post-meta">Tue, Mar 30, 2021 | 作者: 开源之道 | </div>
</header>
谁会在乎许可证了呢?这确实是一个好问题,一个专注于解决问题的工程师会去关注这些吗?除非是遇到了问题,否则是不会碰到的。但是商业和业务必须去关注,因为这是开源商业化的必备路径。不理解许可证,就无法理解开源项目商业化的合理性。
<footer>
<a href='https://www.opensourceway.community/posts/book-of-open-source/2021-04-open-source-for-business/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-21/">开源的崛起:疫情、经济、效率与信任;新入行的开发者已经无法想象没有开源的世界了,这背后到底发生了什么?等开源之道一周精选2021 03 21 </a> </h2>
<div class="post-meta">Mon, Mar 22, 2021 | 作者: 开源之道 | </div>
</header>
发展中国家的开源轮椅:SafariSeat项目;关于开源软件,你应该知道什么?开源的崛起:疫情、经济、效率与信任;新入行的开发者已经无法想象没有开源的世界了,这背后到底发生了什么?通过分析共同体行为而保护开源软件;OctoML ,基于Apache TVM 的商业公司获得B轮2千八百万融资;开源:以最小依赖创新数据科学;DataOps:开源和专有的对比
<footer>
<a href='https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-21/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/opensource_culture/why_must_speaking_english_in_open_source_world/">在开源的世界里,应该讲开发者都能懂的语言! </a> </h2>
<div class="post-meta">Wed, Mar 17, 2021 | | </div>
</header>
鸡同鸭讲这种事情会常常发生,每个人不同的成长背景和处于不同的空间,难免会有一些沟通上的障碍,不过更可怕的是置换了空间之后,而没有做到灵活改变,笑话可能是件小事,可怕的是损害了某些结果。
<footer>
<a href='https://www.opensourceway.community/posts/opensource_culture/why_must_speaking_english_in_open_source_world/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-14/">Linux 基金会成立新的安全供应链签名项目sigstore;中国的巨头们正在开源上努力赶超等开源之道一周精选2021 03 14 </a> </h2>
<div class="post-meta">Mon, Mar 15, 2021 | 作者: 开源之道 | </div>
</header>
开源软件如何助力数字化创新;中国的巨头们正在开源上努力赶超;Jupyter 革新了数据科学;开源安全基金会喜迎新会员;参与 GSoC 2021 的开源项目超过200个;Open Source 101 2021 开启;Linus Torvalds 警告大家新版本的缺陷;Linux 基金会成立新的安全供应链签名项目sigstore;Abobe 和 娱乐技术中心加入Academy Software Foundation(ASWF)
<footer>
<a href='https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-14/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-07/">如果售卖开源软件;开源:创新的绝佳平台;等开源之道一周精选2021 03 07 </a> </h2>
<div class="post-meta">Thu, Mar 4, 2021 | 作者: 开源之道 | </div>
</header>
如果售卖开源软件;开源软件改变了软件的开发模式,这是3百多亿美金的大市场;开源:创新的绝佳平台;如何让 code review 更加的愉悦;亚太地区成为采用开源的领先者;这家软件巨头向亚马逊宣战,其他开源公司也会效仿吗?开源数据集成平台 Airbyte 获得5百2十万融资;Scarf 网关:可追踪开源软件的使用;Yugabyte 融资四千八百万美金;为什么说开源对于数字化转型非常重要
<footer>
<a href='https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-03-07/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-02-28/">Linux 基金会的崛起;没有人拥有Linux,你可以选择付费,也可以不付;等开源之道一周精选2021 02 28 </a> </h2>
<div class="post-meta">Tue, Mar 2, 2021 | 作者: 开源之道 | </div>
</header>
开源软件和“私人集体”创新模式:组织科学的问题;没有人拥有Linux,你可以选择付费,也可以不付;从开源技术中获得的5大益处;Apache® 软件基金会依靠公司赞助和慈善捐赠而维持价值 $22B公共软件产品;5步实现2021开源策略改进;RedHat 完成对StackRox的收购;基于上游供应链做开源商业产品的18个差异化方法;Linux 基金会的崛起;RedHat 为开源非营利组织提供免费的 RHEL ;开源软件的优势;Google 为Linux内核安全赞助两名全职开发者;开源如何帮助政府创新;请停止对开源不安全的偏见认知吧!;为什么香港会成为开源软件增长最快枢纽?
<footer>
<a href='https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%80%E5%91%A8%E7%B2%BE%E9%80%892021-02-28/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/book-of-open-source/2021-03-linux-under-the-radar/">开源之道图书推荐之:Linux:Under the Radar </a> </h2>
<div class="post-meta">Thu, Feb 25, 2021 | 作者: 开源之道 | </div>
</header>
2021 IBM 将赌注押在了混合云解决方案上,其中红帽带来技术和解决方案独占鳌头。红帽这家公司,始终在开源界被津津乐道,人们常说的就是红帽只可能出现一个,这句话人们也常用来形容Linux,Linux的发展模式是不可复制的。那么,如此独一无二的组织是如何建立的?它走过的最初几年做对了什么?给后来的二十几年的发展留下了什么?此书不得不读。
<footer>
<a href='https://www.opensourceway.community/posts/book-of-open-source/2021-03-linux-under-the-radar/'><nobr>Read more →</nobr></a>
</footer>
</article>
<article class="post">
<header>
<h2><a href="https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%89%E5%91%A8%E7%B2%BE%E9%80%892021-02-23/">开源之道三周精选2021 02 23 </a> </h2>
<div class="post-meta">Tue, Feb 23, 2021 | 作者: 开源之道 | </div>
</header>
福特汽车将采用Android;Rocket.Chat 开源公司获得1千9百万投资;为什么在数字化时代开源的使用会上升?Google 应该真正开源 Chromium;CHIPS 联盟新上任执行总监;开源界、高科技界的女性高管们;开源技术的益处;顶级银行加入Linux及开源专利保护组织;用开源的方式实现你的MBA之路;衡量开源的隐形成本;IBM研究院发布开源报告;DigitalOcean 2020 开源调查报告;Google 为重要项目的开发者制定新规则;开源开发者到底价值多少?几千万亿美金;Drupal 创始人 Dries Buytaert说了:开源并不意味着反商业化;DARPA 和Linux基金会展开合作;解释开源:商业模式的未来;至星辰大海:Linux和开源走上火星;Amex和 Adobe 加入了GitHub 实战训练营;为何说开源在2021将会在企业更进一步
<footer>
<a href='https://www.opensourceway.community/posts/opensource/daily_reading/2021/%E5%BC%80%E6%BA%90%E4%B9%8B%E9%81%93%E4%B8%89%E5%91%A8%E7%B2%BE%E9%80%892021-02-23/'><nobr>Read more →</nobr></a>
</footer>
</article>
<nav class="pagination group">
<div class="wp-pagenavi">
<span class="pages">
第 1 页,共62 页
(共557 篇文章)
</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>