@wcj/github-rank 22.7.6 → 22.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/dist/36kr.json +5006 -1552
- package/dist/repos.json +21336 -21336
- package/dist/sifou-daily.json +6 -96
- package/dist/sifou-monthly.json +43 -43
- package/dist/sifou-weekly.json +113 -113
- package/dist/toutiao-30.json +45 -45
- package/dist/toutiao-7.json +100 -100
- package/dist/toutiao-90.json +35 -35
- package/dist/trending-daily.json +167 -167
- package/dist/trending-monthly.json +142 -142
- package/dist/trending-weekly.json +164 -164
- package/dist/users.china.json +1309 -1309
- package/dist/users.json +2105 -2106
- package/package.json +19 -18
- package/web/data/36kr.json +5006 -1552
- package/web/data/repos.json +21336 -21336
- package/web/data/sifou-daily.json +6 -96
- package/web/data/sifou-monthly.json +43 -43
- package/web/data/sifou-weekly.json +113 -113
- package/web/data/toutiao-30.json +45 -45
- package/web/data/toutiao-7.json +100 -100
- package/web/data/toutiao-90.json +35 -35
- package/web/data/trending-daily.json +167 -167
- package/web/data/trending-monthly.json +142 -142
- package/web/data/trending-weekly.json +164 -164
- package/web/data/users.china.json +1309 -1309
- package/web/data/users.json +2105 -2106
- package/web/index.html +1123 -1126
- package/web/repos.html +2860 -2863
- package/web/sifou-daily.html +6 -289
- package/web/sifou-monthly.html +73 -76
- package/web/sifou-weekly.html +129 -132
- package/web/toutiao-30.html +59 -62
- package/web/toutiao-7.html +71 -74
- package/web/toutiao-90.html +62 -65
- package/web/trending-monthly.html +125 -136
- package/web/trending-weekly.html +142 -149
- package/web/trending.html +148 -147
- package/web/users.china.html +696 -699
- package/web/36kr.html +0 -828
package/dist/sifou-weekly.json
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"title": "使用纯 CSS 实现超酷炫的粘性气泡效果",
|
|
4
|
+
"description": "最近,在 CodePen 上看到这样一个非常有意思的效果:这个效果的核心难点在于气泡的一种特殊融合效果。其源代码在:CodePen Demo -- Goey footer,作者主要使用的是 SVG 滤镜完成的该效果,感兴趣的可以戳源码看看...",
|
|
5
|
+
"url": "https://segmentfault.com/a/1190000042070334",
|
|
6
|
+
"author": "chokcoco",
|
|
7
|
+
"home_url": "https://segmentfault.com/u/chokcoco",
|
|
8
|
+
"votes": "17",
|
|
9
|
+
"rank": 1
|
|
10
|
+
},
|
|
2
11
|
{
|
|
3
12
|
"title": "switch 有四样写法你知道么",
|
|
4
13
|
"description": "我所知道的 JavaScript 的 switch 语句只有一种写法。但要说到对分支的处理,写法可就多了去了。if 分支写法可以算一种,switch 分支写法可以算第二种,第三种是使用策略模式,如果要把条件运算符也算上的话,嗯...",
|
|
5
14
|
"url": "https://segmentfault.com/a/1190000042055258",
|
|
6
15
|
"author": "边城",
|
|
7
16
|
"home_url": "https://segmentfault.com/u/jamesfancy",
|
|
8
|
-
"votes": "
|
|
9
|
-
"rank":
|
|
17
|
+
"votes": "14",
|
|
18
|
+
"rank": 2
|
|
10
19
|
},
|
|
11
20
|
{
|
|
12
21
|
"title": "CSS层级小技巧!如何在滚动时自动添加头部阴影?",
|
|
@@ -14,8 +23,8 @@
|
|
|
14
23
|
"url": "https://segmentfault.com/a/1190000042065365",
|
|
15
24
|
"author": "XboxYan",
|
|
16
25
|
"home_url": "https://segmentfault.com/u/xboxyan",
|
|
17
|
-
"votes": "
|
|
18
|
-
"rank":
|
|
26
|
+
"votes": "16",
|
|
27
|
+
"rank": 3
|
|
19
28
|
},
|
|
20
29
|
{
|
|
21
30
|
"title": "叮~您有一封Vue.js挑战邀请函,请查收",
|
|
@@ -24,35 +33,8 @@
|
|
|
24
33
|
"author": "null仔",
|
|
25
34
|
"home_url": "https://segmentfault.com/u/xiaoqianduan_58b28cfebff36",
|
|
26
35
|
"votes": "10",
|
|
27
|
-
"rank": 3
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"title": "SegmentFault 思否技术周刊 -- 超实用 Vue 合集,请查收",
|
|
31
|
-
"description": "Vue.js 是一个用于创建 web 交互界面的工具。其特点是简洁 HTML 模板 + JSON 数据,再创建一个 Vue 实例,就这么简单。数据驱动 自动追踪依赖的模板表达式和计算属性。组件化 用解耦、可复用的组件来构造界面。轻...",
|
|
32
|
-
"url": "https://segmentfault.com/a/1190000042048392",
|
|
33
|
-
"author": "Beverly",
|
|
34
|
-
"home_url": "https://segmentfault.com/u/beverly0",
|
|
35
|
-
"votes": "7",
|
|
36
36
|
"rank": 4
|
|
37
37
|
},
|
|
38
|
-
{
|
|
39
|
-
"title": "又拍云 Redis 的改进之路",
|
|
40
|
-
"description": "作为推出国内首创可编程 CDN 服务的专业云服务提供商,又拍云利用 CDN 边缘网络规模和性能,允许客户自定义编写规则来满足常用业务场景。而为了保证这些源数据,如边缘重定向、请求限速、自定义错误页面、访问防...",
|
|
41
|
-
"url": "https://segmentfault.com/a/1190000042048198",
|
|
42
|
-
"author": "云叔_又拍云",
|
|
43
|
-
"home_url": "https://segmentfault.com/u/yunshu_blog",
|
|
44
|
-
"votes": "7",
|
|
45
|
-
"rank": 5
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"title": "使用纯 CSS 实现超酷炫的粘性气泡效果",
|
|
49
|
-
"description": "最近,在 CodePen 上看到这样一个非常有意思的效果:这个效果的核心难点在于气泡的一种特殊融合效果。其源代码在:CodePen Demo -- Goey footer,作者主要使用的是 SVG 滤镜完成的该效果,感兴趣的可以戳源码看看...",
|
|
50
|
-
"url": "https://segmentfault.com/a/1190000042070334",
|
|
51
|
-
"author": "chokcoco",
|
|
52
|
-
"home_url": "https://segmentfault.com/u/chokcoco",
|
|
53
|
-
"votes": "11",
|
|
54
|
-
"rank": 6
|
|
55
|
-
},
|
|
56
38
|
{
|
|
57
39
|
"title": "Skypack:我老早就在布局前端基建了",
|
|
58
40
|
"description": "其中最主要的原因是 —— vite在开发环境基于ESM规范实现的Nobundle模式,节省了代码打包的时间(当然,也有ESBuild的功劳)。",
|
|
@@ -60,7 +42,16 @@
|
|
|
60
42
|
"author": "卡颂",
|
|
61
43
|
"home_url": "https://segmentfault.com/u/kasong",
|
|
62
44
|
"votes": "6",
|
|
63
|
-
"rank":
|
|
45
|
+
"rank": 5
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"title": "使用CSS background实现炫酷悬停效果",
|
|
49
|
+
"description": "日常开发过程中,会遇到不少按钮鼠标悬停的效果,实现这类悬停效果的方式有很多,借助伪元素,CSS3变换及过渡等都可以实现。今天的文章将使用背景色实现类似的效果,当我们遇到一个问题时,你的脑海中的方案不止...",
|
|
50
|
+
"url": "https://segmentfault.com/a/1190000042069856",
|
|
51
|
+
"author": "南城大前端",
|
|
52
|
+
"home_url": "https://segmentfault.com/u/nanchengfe",
|
|
53
|
+
"votes": "8",
|
|
54
|
+
"rank": 6
|
|
64
55
|
},
|
|
65
56
|
{
|
|
66
57
|
"title": "runc hang 导致 Kubernetes 节点 NotReady",
|
|
@@ -69,25 +60,25 @@
|
|
|
69
60
|
"author": "云叔_又拍云",
|
|
70
61
|
"home_url": "https://segmentfault.com/u/yunshu_blog",
|
|
71
62
|
"votes": "4",
|
|
72
|
-
"rank":
|
|
63
|
+
"rank": 7
|
|
73
64
|
},
|
|
74
65
|
{
|
|
75
|
-
"title": "
|
|
76
|
-
"description": "
|
|
77
|
-
"url": "https://segmentfault.com/a/
|
|
78
|
-
"author": "
|
|
79
|
-
"home_url": "https://segmentfault.com/u/
|
|
80
|
-
"votes": "
|
|
81
|
-
"rank":
|
|
66
|
+
"title": "编程语言:类型系统的本质",
|
|
67
|
+
"description": "我一直对编写更好的代码有浓厚的兴趣。如果你能真正理解什么是抽象,什么是具象,就能理解为什么现代编程语言中,接口和函数类型为什么那么普遍存在了。在使用函数式语言进行编程后,就能够很清晰地理解为什么随...",
|
|
68
|
+
"url": "https://segmentfault.com/a/1190000042060686",
|
|
69
|
+
"author": "陈光剑",
|
|
70
|
+
"home_url": "https://segmentfault.com/u/donghaichenguangjian",
|
|
71
|
+
"votes": "4",
|
|
72
|
+
"rank": 8
|
|
82
73
|
},
|
|
83
74
|
{
|
|
84
|
-
"title": "
|
|
85
|
-
"description": "
|
|
86
|
-
"url": "https://segmentfault.com/a/
|
|
87
|
-
"author": "
|
|
88
|
-
"home_url": "https://segmentfault.com/u/
|
|
89
|
-
"votes": "
|
|
90
|
-
"rank":
|
|
75
|
+
"title": "开源人物专访:OpenFunction 的独特“处世之道”,开源“实干家精神”从 0 到 1 的突破",
|
|
76
|
+
"description": "采访整理:SegmentFault 思否 | 编辑 朱玲采访嘉宾:霍秉杰 霍秉杰,哈尔滨工业大学计算机科技与技术硕士,曾任职于金山软件从事大数据技术研发,2016年加入青云科技。现为 KubeSphere 云原生 FaaS 项目 OpenFunc...",
|
|
77
|
+
"url": "https://segmentfault.com/a/1190000042053265",
|
|
78
|
+
"author": "MissD",
|
|
79
|
+
"home_url": "https://segmentfault.com/u/d2ms1shh",
|
|
80
|
+
"votes": "1",
|
|
81
|
+
"rank": 9
|
|
91
82
|
},
|
|
92
83
|
{
|
|
93
84
|
"title": "反爬篇 | 手把手教你处理 JS 逆向之图片伪装",
|
|
@@ -96,15 +87,24 @@
|
|
|
96
87
|
"author": "Python技术大本营",
|
|
97
88
|
"home_url": "https://segmentfault.com/u/bianchengdandan",
|
|
98
89
|
"votes": "2",
|
|
90
|
+
"rank": 10
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"title": "这个高颜值的开源第三方网易云音乐播放器你值得拥有",
|
|
94
|
+
"description": "我平时主要的听歌软件是网易云音乐,但是它有很多花里胡哨的功能,比如电台、直播、朋友、播客、云村等等,说实话这些我都不需要,基本也不会用,大部分的时间都只把它当做一个本地播放器,因为它毕竟是一个商业...",
|
|
95
|
+
"url": "https://segmentfault.com/a/1190000042069019",
|
|
96
|
+
"author": "街角小林",
|
|
97
|
+
"home_url": "https://segmentfault.com/u/jiejiaoxiaolin",
|
|
98
|
+
"votes": "2",
|
|
99
99
|
"rank": 11
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
|
-
"title": "
|
|
103
|
-
"description": "
|
|
104
|
-
"url": "https://segmentfault.com/a/
|
|
105
|
-
"author": "
|
|
106
|
-
"home_url": "https://segmentfault.com/u/
|
|
107
|
-
"votes": "
|
|
102
|
+
"title": "世界上最快的排序算法-Timsort",
|
|
103
|
+
"description": "Timsort 是一个混合、稳定的排序算法,简单来说就是归并排序和二分插入排序算法的混合体,号称世界上最好的排序算法。Timsort一直是 Python 的标准排序算法。Java SE 7 后添加了Timsort API ,我们从Arrays.sort...",
|
|
104
|
+
"url": "https://segmentfault.com/a/1190000042057238",
|
|
105
|
+
"author": "编程码农",
|
|
106
|
+
"home_url": "https://segmentfault.com/u/onlythinking",
|
|
107
|
+
"votes": "2",
|
|
108
108
|
"rank": 12
|
|
109
109
|
},
|
|
110
110
|
{
|
|
@@ -126,23 +126,32 @@
|
|
|
126
126
|
"rank": 14
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
|
-
"title": "
|
|
130
|
-
"description": "
|
|
131
|
-
"url": "https://segmentfault.com/a/
|
|
132
|
-
"author": "
|
|
133
|
-
"home_url": "https://segmentfault.com/u/
|
|
129
|
+
"title": "Vue3响应式源码分析 - ref + ReactiveEffect篇",
|
|
130
|
+
"description": "在Vue3中,因为reactive创建的响应式对象是通过Proxy来实现的,所以传入数据不能为基础类型,所以 ref 对象是对reactive不支持的数据的一个补充。",
|
|
131
|
+
"url": "https://segmentfault.com/a/1190000042054691",
|
|
132
|
+
"author": "小绵羊",
|
|
133
|
+
"home_url": "https://segmentfault.com/u/xiaomianyang_5a5c183e17d47",
|
|
134
134
|
"votes": "2",
|
|
135
135
|
"rank": 15
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
|
-
"title": "
|
|
139
|
-
"description": "
|
|
140
|
-
"url": "https://segmentfault.com/a/
|
|
141
|
-
"author": "
|
|
142
|
-
"home_url": "https://segmentfault.com/u/
|
|
138
|
+
"title": "苹果自研 5G 芯片或已失败;腾讯 QQ 回应大规模账号被盗;Vim 9.0 发布 | 思否周刊",
|
|
139
|
+
"description": "40s 新闻速递微信推出新功能:图片大爆炸苹果自研 5G 芯片或已失败腾讯 QQ 回应大规模账号被盗:受影响范围已得到控制,正收集黑产团伙犯罪证据立陶宛网络遭大规模 DDoS 攻击Arm 发布全新 Armv9 芯片:正式放弃 3...",
|
|
140
|
+
"url": "https://segmentfault.com/a/1190000042061765",
|
|
141
|
+
"author": "snakesss",
|
|
142
|
+
"home_url": "https://segmentfault.com/u/snakesss",
|
|
143
143
|
"votes": "2",
|
|
144
144
|
"rank": 16
|
|
145
145
|
},
|
|
146
|
+
{
|
|
147
|
+
"title": "Web 应用实时版本检测,这么做最方便",
|
|
148
|
+
"description": "经常会发生这样的情况: 当用户在浏览器中打开某 web 应用较长时间且未刷新页面, 在应用有新版本更新或问题修复时, 用户会无法及时知晓有新版发布, 导致用户继续使用旧的版本, 影响用户体验和后端数据准确性。",
|
|
149
|
+
"url": "https://segmentfault.com/a/1190000042069210",
|
|
150
|
+
"author": "Myou_Aki",
|
|
151
|
+
"home_url": "https://segmentfault.com/u/akimyou",
|
|
152
|
+
"votes": "1",
|
|
153
|
+
"rank": 17
|
|
154
|
+
},
|
|
146
155
|
{
|
|
147
156
|
"title": "通过示例了解Vue过渡和动画",
|
|
148
157
|
"description": "有梦想,有干货,微信搜索 【大迁世界】 关注这个在凌晨还在刷碗的刷碗智。本文 GitHub [链接] 已收录,有一线大厂面试完整考点、资料以及我的系列文章。",
|
|
@@ -150,26 +159,8 @@
|
|
|
150
159
|
"author": "前端小智",
|
|
151
160
|
"home_url": "https://segmentfault.com/u/minnanitkong",
|
|
152
161
|
"votes": "2",
|
|
153
|
-
"rank": 17
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"title": "苹果自研 5G 芯片或已失败;腾讯 QQ 回应大规模账号被盗;Vim 9.0 发布 | 思否周刊",
|
|
157
|
-
"description": "40s 新闻速递微信推出新功能:图片大爆炸苹果自研 5G 芯片或已失败腾讯 QQ 回应大规模账号被盗:受影响范围已得到控制,正收集黑产团伙犯罪证据立陶宛网络遭大规模 DDoS 攻击Arm 发布全新 Armv9 芯片:正式放弃 3...",
|
|
158
|
-
"url": "https://segmentfault.com/a/1190000042061765",
|
|
159
|
-
"author": "snakesss",
|
|
160
|
-
"home_url": "https://segmentfault.com/u/snakesss",
|
|
161
|
-
"votes": "2",
|
|
162
162
|
"rank": 18
|
|
163
163
|
},
|
|
164
|
-
{
|
|
165
|
-
"title": "Vue3响应式源码分析 - ref + ReactiveEffect篇",
|
|
166
|
-
"description": "在Vue3中,因为reactive创建的响应式对象是通过Proxy来实现的,所以传入数据不能为基础类型,所以 ref 对象是对reactive不支持的数据的一个补充。",
|
|
167
|
-
"url": "https://segmentfault.com/a/1190000042054691",
|
|
168
|
-
"author": "小绵羊",
|
|
169
|
-
"home_url": "https://segmentfault.com/u/xiaomianyang_5a5c183e17d47",
|
|
170
|
-
"votes": "2",
|
|
171
|
-
"rank": 19
|
|
172
|
-
},
|
|
173
164
|
{
|
|
174
165
|
"title": "冴羽答读者问:如何在工作中打造影响力,带动同事?",
|
|
175
166
|
"description": "前言最近我发起了「冴羽答读者问」活动,如果你也有想要提问的问题,欢迎留言,我会按照顺序依此回答。正文什么是影响力呢?引用百度百科的解释:影响力是用一种别人所乐于接受的方式,改变他人的思想和行动的能...",
|
|
@@ -177,7 +168,7 @@
|
|
|
177
168
|
"author": "冴羽",
|
|
178
169
|
"home_url": "https://segmentfault.com/u/yayu",
|
|
179
170
|
"votes": "3",
|
|
180
|
-
"rank":
|
|
171
|
+
"rank": 19
|
|
181
172
|
},
|
|
182
173
|
{
|
|
183
174
|
"title": "Java 集合常见知识点&面试题总结(上),2022 最新版!",
|
|
@@ -186,7 +177,7 @@
|
|
|
186
177
|
"author": "JavaGuide",
|
|
187
178
|
"home_url": "https://segmentfault.com/u/javaguide",
|
|
188
179
|
"votes": "2",
|
|
189
|
-
"rank":
|
|
180
|
+
"rank": 20
|
|
190
181
|
},
|
|
191
182
|
{
|
|
192
183
|
"title": "Go1.19 那些事:国产芯片、内存模型等新特性,你知道多少?",
|
|
@@ -195,7 +186,7 @@
|
|
|
195
186
|
"author": "煎鱼",
|
|
196
187
|
"home_url": "https://segmentfault.com/u/eddycjy",
|
|
197
188
|
"votes": "1",
|
|
198
|
-
"rank":
|
|
189
|
+
"rank": 21
|
|
199
190
|
},
|
|
200
191
|
{
|
|
201
192
|
"title": "React Native 中实现动态导入",
|
|
@@ -204,7 +195,7 @@
|
|
|
204
195
|
"author": "云音乐技术团队",
|
|
205
196
|
"home_url": "https://segmentfault.com/u/musicfe",
|
|
206
197
|
"votes": "2",
|
|
207
|
-
"rank":
|
|
198
|
+
"rank": 22
|
|
208
199
|
},
|
|
209
200
|
{
|
|
210
201
|
"title": "2022 年编程语言趋势:Swift、Kotlin 热度持续增长,收入最高的 5 种编程语言竟是它们",
|
|
@@ -213,16 +204,16 @@
|
|
|
213
204
|
"author": "MissD",
|
|
214
205
|
"home_url": "https://segmentfault.com/u/d2ms1shh",
|
|
215
206
|
"votes": "2",
|
|
216
|
-
"rank":
|
|
207
|
+
"rank": 23
|
|
217
208
|
},
|
|
218
209
|
{
|
|
219
|
-
"title": "
|
|
220
|
-
"description": "
|
|
221
|
-
"url": "https://segmentfault.com/a/
|
|
222
|
-
"author": "
|
|
223
|
-
"home_url": "https://segmentfault.com/u/
|
|
224
|
-
"votes": "
|
|
225
|
-
"rank":
|
|
210
|
+
"title": "Nginx 实战核心知识点整理(上)",
|
|
211
|
+
"description": "Nginx 作为一款高性能的代理软件,在工作中常被用做负载均衡器、正向反向代理。最近在看了一个关于 Nginx 的视频,老师讲得很不错。笔者也记录了一下整套课程的一些重点和自己的理解。",
|
|
212
|
+
"url": "https://segmentfault.com/a/1190000042070687",
|
|
213
|
+
"author": "Rhythm_2019",
|
|
214
|
+
"home_url": "https://segmentfault.com/u/rhythm_2019",
|
|
215
|
+
"votes": "3",
|
|
216
|
+
"rank": 24
|
|
226
217
|
},
|
|
227
218
|
{
|
|
228
219
|
"title": "又一款值得推荐的高颜值的服务器探针——WGCLOUD",
|
|
@@ -231,16 +222,7 @@
|
|
|
231
222
|
"author": "徐三刀",
|
|
232
223
|
"home_url": "https://segmentfault.com/u/9b3sps2b",
|
|
233
224
|
"votes": "1",
|
|
234
|
-
"rank":
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"title": "编程语言:类型系统的本质",
|
|
238
|
-
"description": "我一直对编写更好的代码有浓厚的兴趣。如果你能真正理解什么是抽象,什么是具象,就能理解为什么现代编程语言中,接口和函数类型为什么那么普遍存在了。在使用函数式语言进行编程后,就能够很清晰地理解为什么随...",
|
|
239
|
-
"url": "https://segmentfault.com/a/1190000042060686",
|
|
240
|
-
"author": "陈光剑",
|
|
241
|
-
"home_url": "https://segmentfault.com/u/donghaichenguangjian",
|
|
242
|
-
"votes": "2",
|
|
243
|
-
"rank": 27
|
|
225
|
+
"rank": 25
|
|
244
226
|
},
|
|
245
227
|
{
|
|
246
228
|
"title": "如何使用插件化机制优雅的封装你的请求hook",
|
|
@@ -249,23 +231,41 @@
|
|
|
249
231
|
"author": "Gopal",
|
|
250
232
|
"home_url": "https://segmentfault.com/u/fengguangping",
|
|
251
233
|
"votes": "1",
|
|
234
|
+
"rank": 26
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"title": "全网都在疯传的《老板管理手册》(转)",
|
|
238
|
+
"description": "《老板管理手册》[TOC]📌又名《入职三个月,我对公司的思考建议》建议人:AKA·市场部新媒体运营·快乐打工侠·俞虹 🤘 建议人:AKA·市场部新媒体运营·快乐打工侠·俞虹 🤘 建议人:AKA·市场部新媒体运营·快乐打工侠·俞...",
|
|
239
|
+
"url": "https://segmentfault.com/a/1190000042063056",
|
|
240
|
+
"author": "Young",
|
|
241
|
+
"home_url": "https://segmentfault.com/u/young_6082714523e64",
|
|
242
|
+
"votes": "1",
|
|
243
|
+
"rank": 27
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"title": "K8S 生态周报| Ingress NGINX 项目暂停接收新功能将专注于稳定性提升",
|
|
247
|
+
"description": "「K8S 生态周报」内容主要包含我所接触到的 K8S 生态相关的每周值得推荐的一些信息。欢迎订阅专栏「k8s生态」。题外话大家好,我是张晋涛。本次我将这个部分放在开头。聊聊最近的一些情况。「K8S 生态周报」暂停...",
|
|
248
|
+
"url": "https://segmentfault.com/a/1190000042064534",
|
|
249
|
+
"author": "张晋涛",
|
|
250
|
+
"home_url": "https://segmentfault.com/u/moelove",
|
|
251
|
+
"votes": "1",
|
|
252
252
|
"rank": 28
|
|
253
253
|
},
|
|
254
254
|
{
|
|
255
|
-
"title": "
|
|
256
|
-
"description": "
|
|
257
|
-
"url": "https://segmentfault.com/a/
|
|
258
|
-
"author": "
|
|
259
|
-
"home_url": "https://segmentfault.com/u/
|
|
255
|
+
"title": "精读《Diff, AnyOf, IsUnion...》",
|
|
256
|
+
"description": "首先要思考 Diff 的计算方式,A 与 B 的 Diff 是找到 A 存在 B 不存在,与 B 存在 A 不存在的值,那么正好可以利用 Exclude<X, Y> 函数,它可以得到存在于 X 不存在于 Y 的值,我们只要用 keyof A、keyof B...",
|
|
257
|
+
"url": "https://segmentfault.com/a/1190000042064614",
|
|
258
|
+
"author": "黄子毅",
|
|
259
|
+
"home_url": "https://segmentfault.com/u/aoyangyudakong",
|
|
260
260
|
"votes": "1",
|
|
261
261
|
"rank": 29
|
|
262
262
|
},
|
|
263
263
|
{
|
|
264
|
-
"title": "
|
|
265
|
-
"description": "
|
|
266
|
-
"url": "https://segmentfault.com/a/
|
|
267
|
-
"author": "
|
|
268
|
-
"home_url": "https://segmentfault.com/u/
|
|
264
|
+
"title": "JavaScript扩展原型链浅析",
|
|
265
|
+
"description": "前言上文对原型和原型链做了一些简单的概念介绍和解析,本文将浅析一些原型链的扩展。javaScript原型和原型链[链接]扩展原型链使用new操作符利用原型是对象的特性,实例化对象的时候,继承多个构造函数的属性和方...",
|
|
266
|
+
"url": "https://segmentfault.com/a/1190000042051801",
|
|
267
|
+
"author": "程序猿布欧",
|
|
268
|
+
"home_url": "https://segmentfault.com/u/lewyon",
|
|
269
269
|
"votes": "1",
|
|
270
270
|
"rank": 30
|
|
271
271
|
}
|
package/dist/toutiao-30.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{
|
|
3
3
|
"title": "3000帧动画图解MySQL为什么需要binlog、redo log和undo log",
|
|
4
4
|
"description": "全文建立在MySQL的存储引擎为InnoDB的基础上先看一条SQL如何入库的:这是一条很简单的更新SQL,从MySQL服务端接收到SQL到落盘,先后经过了MySQL Server层...",
|
|
5
|
-
"votes": "
|
|
5
|
+
"votes": "177",
|
|
6
6
|
"url": "/k/b0g4460",
|
|
7
7
|
"avatar": "https://img.toutiao.io/subject/8e12ef64799649acbfd936883ef16c3c/thumb",
|
|
8
8
|
"avatarAlt": "服务架构及中台 - 独家号",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{
|
|
13
13
|
"title": "吐血整理:一份不可多得的架构师图谱!",
|
|
14
14
|
"description": "文章来源:https://c1n.cn/J3wve目录概述微服务消息队列概述“架构师图谱”是一个很宏大的命题,特别是优秀的架构师自身也是“由点到...",
|
|
15
|
-
"votes": "
|
|
15
|
+
"votes": "137",
|
|
16
16
|
"url": "/k/ptp0ru2",
|
|
17
17
|
"avatar": "https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb",
|
|
18
18
|
"avatarAlt": "进击的程序猿 - 独家号",
|
|
@@ -89,6 +89,16 @@
|
|
|
89
89
|
"subjectName": "Bloomingroses",
|
|
90
90
|
"homeUrl": "/subjects/98777"
|
|
91
91
|
},
|
|
92
|
+
{
|
|
93
|
+
"title": "服务端监控架构设计与实践",
|
|
94
|
+
"description": "作者:vivo互联网服务器团队-Deng Haibo一、业务背景当今时代处在信息大爆发的时代,信息借助互联网的潮流在全球自由的流动,产生了各式各样的平台系统和软件系统,越来越多的业...",
|
|
95
|
+
"votes": "55",
|
|
96
|
+
"url": "/k/xhwa9mo",
|
|
97
|
+
"avatar": "https://img.toutiao.io/subject/ae2b74c589814b769c1bebad92c2fb9a/thumb",
|
|
98
|
+
"avatarAlt": "架构之美 - 独家号",
|
|
99
|
+
"subjectName": "架构之美",
|
|
100
|
+
"homeUrl": "/subjects/42200"
|
|
101
|
+
},
|
|
92
102
|
{
|
|
93
103
|
"title": "吐血推荐17个提升开发效率的“轮子”",
|
|
94
104
|
"description": "",
|
|
@@ -109,20 +119,10 @@
|
|
|
109
119
|
"subjectName": "浅谈架构",
|
|
110
120
|
"homeUrl": "/subjects/379488"
|
|
111
121
|
},
|
|
112
|
-
{
|
|
113
|
-
"title": "6年时间,我做了一个纯净的 Java 学习&面试网站!",
|
|
114
|
-
"description": "在大三准备面试的时候,我开源了 JavaGuide 。我把自己准备面试过程中的一些总结都毫不保留地通过 JavaGuide 分享了出来。目前,这个项目在 Github 一共有 41...",
|
|
115
|
-
"votes": "57",
|
|
116
|
-
"url": "/k/q51bb2i",
|
|
117
|
-
"avatar": "https://img.toutiao.io/subject/f834a19bb9e24261a813b7a1ebc03a11/thumb",
|
|
118
|
-
"avatarAlt": "JavaGuide - 独家号",
|
|
119
|
-
"subjectName": "JavaGuide",
|
|
120
|
-
"homeUrl": "/subjects/352853"
|
|
121
|
-
},
|
|
122
122
|
{
|
|
123
123
|
"title": "月活 12.8 亿的微信,海量请求下是如何防止崩溃的?",
|
|
124
124
|
"description": "",
|
|
125
|
-
"votes": "
|
|
125
|
+
"votes": "52",
|
|
126
126
|
"url": "/k/fflgnsh",
|
|
127
127
|
"avatar": "https://img.toutiao.io/subject/0bd01d30f85345feb85424b2928d99b2/thumb",
|
|
128
128
|
"avatarAlt": "进击的程序猿 - 独家号",
|
|
@@ -132,17 +132,27 @@
|
|
|
132
132
|
{
|
|
133
133
|
"title": "生产环境Go程序内存泄露,用pprof如何快速定位",
|
|
134
134
|
"description": "内存泄漏可以在整个系统中以多种形式出现,除了在写代码上的疏忽,忘了关闭该关闭的资源外,更多的时候导致系统发生内存泄露原因可能是设计上决策不对、或者业务逻辑上的疏忽没有考虑到一些边界...",
|
|
135
|
-
"votes": "
|
|
135
|
+
"votes": "52",
|
|
136
136
|
"url": "/k/o31fl5p",
|
|
137
137
|
"avatar": "https://img.toutiao.io/subject/3f69ffc3bdf6496e86439348166e3ed7/thumb",
|
|
138
138
|
"avatarAlt": "GoHackers - 独家号",
|
|
139
139
|
"subjectName": "GoHackers",
|
|
140
140
|
"homeUrl": "/subjects/1385"
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
"title": "6年时间,我做了一个纯净的 Java 学习&面试网站!",
|
|
144
|
+
"description": "在大三准备面试的时候,我开源了 JavaGuide 。我把自己准备面试过程中的一些总结都毫不保留地通过 JavaGuide 分享了出来。目前,这个项目在 Github 一共有 41...",
|
|
145
|
+
"votes": "57",
|
|
146
|
+
"url": "/k/q51bb2i",
|
|
147
|
+
"avatar": "https://img.toutiao.io/subject/f834a19bb9e24261a813b7a1ebc03a11/thumb",
|
|
148
|
+
"avatarAlt": "JavaGuide - 独家号",
|
|
149
|
+
"subjectName": "JavaGuide",
|
|
150
|
+
"homeUrl": "/subjects/352853"
|
|
151
|
+
},
|
|
142
152
|
{
|
|
143
153
|
"title": "如何学习架构,一个系列帮助你构筑架构知识体系",
|
|
144
154
|
"description": "",
|
|
145
|
-
"votes": "
|
|
155
|
+
"votes": "58",
|
|
146
156
|
"url": "/k/i9clyuy",
|
|
147
157
|
"avatar": "https://img.toutiao.io/subject/bcb663e36b0c406c9533cb76104b3227/thumb",
|
|
148
158
|
"avatarAlt": "Java全栈知识体系 - 独家号",
|
|
@@ -169,16 +179,6 @@
|
|
|
169
179
|
"subjectName": "架构必知必会",
|
|
170
180
|
"homeUrl": "/subjects/472073"
|
|
171
181
|
},
|
|
172
|
-
{
|
|
173
|
-
"title": "服务端监控架构设计与实践",
|
|
174
|
-
"description": "作者:vivo互联网服务器团队-Deng Haibo一、业务背景当今时代处在信息大爆发的时代,信息借助互联网的潮流在全球自由的流动,产生了各式各样的平台系统和软件系统,越来越多的业...",
|
|
175
|
-
"votes": "43",
|
|
176
|
-
"url": "/k/xhwa9mo",
|
|
177
|
-
"avatar": "https://img.toutiao.io/subject/ae2b74c589814b769c1bebad92c2fb9a/thumb",
|
|
178
|
-
"avatarAlt": "架构之美 - 独家号",
|
|
179
|
-
"subjectName": "架构之美",
|
|
180
|
-
"homeUrl": "/subjects/42200"
|
|
181
|
-
},
|
|
182
182
|
{
|
|
183
183
|
"title": "如何做好CodeReview",
|
|
184
184
|
"description": "",
|
|
@@ -189,6 +189,16 @@
|
|
|
189
189
|
"subjectName": "Bloomingroses",
|
|
190
190
|
"homeUrl": "/subjects/98777"
|
|
191
191
|
},
|
|
192
|
+
{
|
|
193
|
+
"title": "产品指标体系如何搭建",
|
|
194
|
+
"description": "",
|
|
195
|
+
"votes": "43",
|
|
196
|
+
"url": "/k/ipcteru",
|
|
197
|
+
"avatar": "https://img.toutiao.io/subject/6ee3bb205b3248c2b746c1506548181a/thumb",
|
|
198
|
+
"avatarAlt": "大数据生态 - 独家号",
|
|
199
|
+
"subjectName": "大数据生态",
|
|
200
|
+
"homeUrl": "/subjects/136176"
|
|
201
|
+
},
|
|
192
202
|
{
|
|
193
203
|
"title": "30款提升组织效能 SaaS 工具,我们的宝藏工具箱大公开",
|
|
194
204
|
"description": "",
|
|
@@ -209,16 +219,6 @@
|
|
|
209
219
|
"subjectName": "编程爱好者(网络编程)",
|
|
210
220
|
"homeUrl": "/subjects/134283"
|
|
211
221
|
},
|
|
212
|
-
{
|
|
213
|
-
"title": "B站 API 网关的发展",
|
|
214
|
-
"description": "",
|
|
215
|
-
"votes": "41",
|
|
216
|
-
"url": "/k/1qdkfk1",
|
|
217
|
-
"avatar": "https://img.toutiao.io/subject/388a8f21de6247edb0dced13b1701e0c/thumb",
|
|
218
|
-
"avatarAlt": "趣编程的独家号 - 独家号",
|
|
219
|
-
"subjectName": "趣编程的独家号",
|
|
220
|
-
"homeUrl": "/subjects/465623"
|
|
221
|
-
},
|
|
222
222
|
{
|
|
223
223
|
"title": "商品系统架构设计与实践",
|
|
224
224
|
"description": "",
|
|
@@ -229,16 +229,6 @@
|
|
|
229
229
|
"subjectName": "Bloomingroses",
|
|
230
230
|
"homeUrl": "/subjects/98777"
|
|
231
231
|
},
|
|
232
|
-
{
|
|
233
|
-
"title": "产品指标体系如何搭建",
|
|
234
|
-
"description": "",
|
|
235
|
-
"votes": "39",
|
|
236
|
-
"url": "/k/ipcteru",
|
|
237
|
-
"avatar": "https://img.toutiao.io/subject/6ee3bb205b3248c2b746c1506548181a/thumb",
|
|
238
|
-
"avatarAlt": "大数据生态 - 独家号",
|
|
239
|
-
"subjectName": "大数据生态",
|
|
240
|
-
"homeUrl": "/subjects/136176"
|
|
241
|
-
},
|
|
242
232
|
{
|
|
243
233
|
"title": "GitHub的5个骚操作",
|
|
244
234
|
"description": "来源 | 程序员鱼皮作者 | 鱼皮GitHub 是程序员必备的代码开源平台。我们可以在 GitHub 上搜索和阅读项目代码,进行学习;或者复制粘贴,从而快速完成自己的项目。相信绝大...",
|
|
@@ -248,5 +238,15 @@
|
|
|
248
238
|
"avatarAlt": "编程爱好者(网络编程) - 独家号",
|
|
249
239
|
"subjectName": "编程爱好者(网络编程)",
|
|
250
240
|
"homeUrl": "/subjects/134283"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"title": "Git存储原理及部分实现",
|
|
244
|
+
"description": "",
|
|
245
|
+
"votes": "42",
|
|
246
|
+
"url": "/k/ztcw9lm",
|
|
247
|
+
"avatar": "https://img.toutiao.io/subject/b9c73f469a224f428fa995bb6d0b7d9e/thumb",
|
|
248
|
+
"avatarAlt": "码小生 - 独家号",
|
|
249
|
+
"subjectName": "码小生",
|
|
250
|
+
"homeUrl": "/subjects/97644"
|
|
251
251
|
}
|
|
252
252
|
]
|