@wcj/github-rank 22.7.6 → 22.7.9
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 +34920 -34923
- package/dist/sifou-daily.json +12 -93
- package/dist/sifou-monthly.json +104 -104
- package/dist/sifou-weekly.json +165 -165
- package/dist/toutiao-30.json +97 -97
- package/dist/toutiao-7.json +113 -113
- package/dist/toutiao-90.json +35 -35
- package/dist/trending-daily.json +165 -165
- package/dist/trending-monthly.json +159 -159
- package/dist/trending-weekly.json +171 -171
- package/dist/users.china.json +2667 -2667
- package/dist/users.json +4076 -4078
- package/package.json +19 -18
- package/web/data/36kr.json +5006 -1552
- package/web/data/repos.json +34920 -34923
- package/web/data/sifou-daily.json +12 -93
- package/web/data/sifou-monthly.json +104 -104
- package/web/data/sifou-weekly.json +165 -165
- package/web/data/toutiao-30.json +97 -97
- package/web/data/toutiao-7.json +113 -113
- package/web/data/toutiao-90.json +35 -35
- package/web/data/trending-daily.json +165 -165
- package/web/data/trending-monthly.json +159 -159
- package/web/data/trending-weekly.json +171 -171
- package/web/data/users.china.json +2667 -2667
- package/web/data/users.json +4076 -4078
- package/web/index.html +1998 -2001
- package/web/repos.html +4274 -4277
- package/web/sifou-daily.html +12 -267
- package/web/sifou-monthly.html +127 -130
- package/web/sifou-weekly.html +140 -143
- package/web/toutiao-30.html +78 -81
- package/web/toutiao-7.html +79 -82
- package/web/toutiao-90.html +56 -59
- package/web/trending-monthly.html +140 -139
- package/web/trending-weekly.html +146 -153
- package/web/trending.html +136 -151
- package/web/users.china.html +1394 -1397
- package/web/36kr.html +0 -828
package/dist/sifou-weekly.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
[
|
|
2
|
-
{
|
|
3
|
-
"title": "switch 有四样写法你知道么",
|
|
4
|
-
"description": "我所知道的 JavaScript 的 switch 语句只有一种写法。但要说到对分支的处理,写法可就多了去了。if 分支写法可以算一种,switch 分支写法可以算第二种,第三种是使用策略模式,如果要把条件运算符也算上的话,嗯...",
|
|
5
|
-
"url": "https://segmentfault.com/a/1190000042055258",
|
|
6
|
-
"author": "边城",
|
|
7
|
-
"home_url": "https://segmentfault.com/u/jamesfancy",
|
|
8
|
-
"votes": "12",
|
|
9
|
-
"rank": 1
|
|
10
|
-
},
|
|
11
2
|
{
|
|
12
3
|
"title": "CSS层级小技巧!如何在滚动时自动添加头部阴影?",
|
|
13
4
|
"description": "在网页中,经常会用阴影来突出层级关系,特别是顶部导航,但有时候设计觉得没必要一开始就显示阴影,只有滚动后才出现。比如下面这个例子,注意观察头部阴影",
|
|
14
5
|
"url": "https://segmentfault.com/a/1190000042065365",
|
|
15
6
|
"author": "XboxYan",
|
|
16
7
|
"home_url": "https://segmentfault.com/u/xboxyan",
|
|
17
|
-
"votes": "
|
|
8
|
+
"votes": "19",
|
|
9
|
+
"rank": 1
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"title": "使用纯 CSS 实现超酷炫的粘性气泡效果",
|
|
13
|
+
"description": "最近,在 CodePen 上看到这样一个非常有意思的效果:这个效果的核心难点在于气泡的一种特殊融合效果。其源代码在:CodePen Demo -- Goey footer,作者主要使用的是 SVG 滤镜完成的该效果,感兴趣的可以戳源码看看...",
|
|
14
|
+
"url": "https://segmentfault.com/a/1190000042070334",
|
|
15
|
+
"author": "chokcoco",
|
|
16
|
+
"home_url": "https://segmentfault.com/u/chokcoco",
|
|
17
|
+
"votes": "18",
|
|
18
18
|
"rank": 2
|
|
19
19
|
},
|
|
20
20
|
{
|
|
@@ -27,246 +27,246 @@
|
|
|
27
27
|
"rank": 3
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"title": "
|
|
31
|
-
"description": "
|
|
32
|
-
"url": "https://segmentfault.com/a/
|
|
33
|
-
"author": "
|
|
34
|
-
"home_url": "https://segmentfault.com/u/
|
|
35
|
-
"votes": "
|
|
30
|
+
"title": "使用CSS background实现炫酷悬停效果",
|
|
31
|
+
"description": "日常开发过程中,会遇到不少按钮鼠标悬停的效果,实现这类悬停效果的方式有很多,借助伪元素,CSS3变换及过渡等都可以实现。今天的文章将使用背景色实现类似的效果,当我们遇到一个问题时,你的脑海中的方案不止...",
|
|
32
|
+
"url": "https://segmentfault.com/a/1190000042069856",
|
|
33
|
+
"author": "南城大前端",
|
|
34
|
+
"home_url": "https://segmentfault.com/u/nanchengfe",
|
|
35
|
+
"votes": "9",
|
|
36
36
|
"rank": 4
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
"title": "
|
|
40
|
-
"description": "
|
|
41
|
-
"url": "https://segmentfault.com/a/
|
|
39
|
+
"title": "runc hang 导致 Kubernetes 节点 NotReady",
|
|
40
|
+
"description": "Kubernetes 1.19.3OS: CentOS 7.9.2009Kernel: 5.4.94-1.el7.elrepo.x86_64Docker: 20.10.6先说结论,runc v1.0.0-rc93 有 bug,会导致 docker hang 住。发现问题线上告警提示集群中存在 2-3 个 K8s 节点处于 Not...",
|
|
41
|
+
"url": "https://segmentfault.com/a/1190000042065327",
|
|
42
42
|
"author": "云叔_又拍云",
|
|
43
43
|
"home_url": "https://segmentfault.com/u/yunshu_blog",
|
|
44
|
-
"votes": "
|
|
44
|
+
"votes": "4",
|
|
45
45
|
"rank": 5
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
|
-
"title": "
|
|
49
|
-
"description": "
|
|
50
|
-
"url": "https://segmentfault.com/a/
|
|
51
|
-
"author": "
|
|
52
|
-
"home_url": "https://segmentfault.com/u/
|
|
53
|
-
"votes": "
|
|
48
|
+
"title": "DNS 系列(一):为什么更新了 DNS 记录不生效?",
|
|
49
|
+
"description": "我们在上网时如果想要访问到另一台机器上的内容,通常只需要直接输入一串地址,例如:www.upyun.com,就能够准确访问到自己想要访问的网站。但是实际上这只是方便我们记忆的字符形式网络标识,真正让我们的机器和...",
|
|
50
|
+
"url": "https://segmentfault.com/a/1190000042081565",
|
|
51
|
+
"author": "云叔_又拍云",
|
|
52
|
+
"home_url": "https://segmentfault.com/u/yunshu_blog",
|
|
53
|
+
"votes": "4",
|
|
54
54
|
"rank": 6
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
|
-
"title": "
|
|
58
|
-
"description": "
|
|
59
|
-
"url": "https://segmentfault.com/a/
|
|
60
|
-
"author": "
|
|
61
|
-
"home_url": "https://segmentfault.com/u/
|
|
62
|
-
"votes": "
|
|
57
|
+
"title": "编程语言:类型系统的本质",
|
|
58
|
+
"description": "我一直对编写更好的代码有浓厚的兴趣。如果你能真正理解什么是抽象,什么是具象,就能理解为什么现代编程语言中,接口和函数类型为什么那么普遍存在了。在使用函数式语言进行编程后,就能够很清晰地理解为什么随...",
|
|
59
|
+
"url": "https://segmentfault.com/a/1190000042060686",
|
|
60
|
+
"author": "陈光剑",
|
|
61
|
+
"home_url": "https://segmentfault.com/u/donghaichenguangjian",
|
|
62
|
+
"votes": "4",
|
|
63
63
|
"rank": 7
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
|
-
"title": "
|
|
67
|
-
"description": "
|
|
68
|
-
"url": "https://segmentfault.com/a/
|
|
69
|
-
"author": "
|
|
70
|
-
"home_url": "https://segmentfault.com/u/
|
|
71
|
-
"votes": "
|
|
66
|
+
"title": "反爬篇 | 手把手教你处理 JS 逆向之图片伪装",
|
|
67
|
+
"description": "aHR0cHM6Ly93d3cuZ3hyYy5jb20vam9iRGV0YWlsL2Q2NmExNjQxNzc2MjRlNzA4MzU5NWIzMjI1ZWJjMTBi",
|
|
68
|
+
"url": "https://segmentfault.com/a/1190000042065274",
|
|
69
|
+
"author": "Python技术大本营",
|
|
70
|
+
"home_url": "https://segmentfault.com/u/bianchengdandan",
|
|
71
|
+
"votes": "2",
|
|
72
72
|
"rank": 8
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
|
-
"title": "
|
|
76
|
-
"description": "
|
|
77
|
-
"url": "https://segmentfault.com/a/
|
|
78
|
-
"author": "
|
|
79
|
-
"home_url": "https://segmentfault.com/u/
|
|
80
|
-
"votes": "
|
|
75
|
+
"title": "这个高颜值的开源第三方网易云音乐播放器你值得拥有",
|
|
76
|
+
"description": "我平时主要的听歌软件是网易云音乐,但是它有很多花里胡哨的功能,比如电台、直播、朋友、播客、云村等等,说实话这些我都不需要,基本也不会用,大部分的时间都只把它当做一个本地播放器,因为它毕竟是一个商业...",
|
|
77
|
+
"url": "https://segmentfault.com/a/1190000042069019",
|
|
78
|
+
"author": "街角小林",
|
|
79
|
+
"home_url": "https://segmentfault.com/u/jiejiaoxiaolin",
|
|
80
|
+
"votes": "2",
|
|
81
81
|
"rank": 9
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
|
-
"title": "
|
|
85
|
-
"description": "
|
|
86
|
-
"url": "https://segmentfault.com/a/
|
|
87
|
-
"author": "
|
|
88
|
-
"home_url": "https://segmentfault.com/u/
|
|
89
|
-
"votes": "
|
|
84
|
+
"title": "Nginx 实战核心知识点整理(上)",
|
|
85
|
+
"description": "Nginx 作为一款高性能的代理软件,在工作中常被用做负载均衡器、正向反向代理。最近在看了一个关于 Nginx 的视频,老师讲得很不错。笔者也记录了一下整套课程的一些重点和自己的理解。",
|
|
86
|
+
"url": "https://segmentfault.com/a/1190000042070687",
|
|
87
|
+
"author": "Rhythm_2019",
|
|
88
|
+
"home_url": "https://segmentfault.com/u/rhythm_2019",
|
|
89
|
+
"votes": "3",
|
|
90
90
|
"rank": 10
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
"title": "
|
|
94
|
-
"description": "
|
|
95
|
-
"url": "https://segmentfault.com/a/
|
|
96
|
-
"author": "
|
|
97
|
-
"home_url": "https://segmentfault.com/u/
|
|
98
|
-
"votes": "
|
|
93
|
+
"title": "Web 应用实时版本检测,这么做最方便",
|
|
94
|
+
"description": "经常会发生这样的情况: 当用户在浏览器中打开某 web 应用较长时间且未刷新页面, 在应用有新版本更新或问题修复时, 用户会无法及时知晓有新版发布, 导致用户继续使用旧的版本, 影响用户体验和后端数据准确性。",
|
|
95
|
+
"url": "https://segmentfault.com/a/1190000042069210",
|
|
96
|
+
"author": "Myou_Aki",
|
|
97
|
+
"home_url": "https://segmentfault.com/u/akimyou",
|
|
98
|
+
"votes": "1",
|
|
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": "苹果自研 5G 芯片或已失败;腾讯 QQ 回应大规模账号被盗;Vim 9.0 发布 | 思否周刊",
|
|
103
|
+
"description": "40s 新闻速递微信推出新功能:图片大爆炸苹果自研 5G 芯片或已失败腾讯 QQ 回应大规模账号被盗:受影响范围已得到控制,正收集黑产团伙犯罪证据立陶宛网络遭大规模 DDoS 攻击Arm 发布全新 Armv9 芯片:正式放弃 3...",
|
|
104
|
+
"url": "https://segmentfault.com/a/1190000042061765",
|
|
105
|
+
"author": "snakesss",
|
|
106
|
+
"home_url": "https://segmentfault.com/u/snakesss",
|
|
107
|
+
"votes": "2",
|
|
108
108
|
"rank": 12
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
|
-
"title": "
|
|
112
|
-
"description": "
|
|
113
|
-
"url": "https://segmentfault.com/a/
|
|
114
|
-
"author": "
|
|
115
|
-
"home_url": "https://segmentfault.com/u/
|
|
111
|
+
"title": "GitHub 四宗罪“惹众怒”?SFC 发文《Give Up GitHub!》呼吁全网声讨",
|
|
112
|
+
"description": "前几天,一则关于 “GitHub 人工智能编程工具 Copilot 以67 元/月的费用正式上线”的消息引发了开源圈的热议,一时间关于 Copilot 侵犯隐私、抄袭代码、无视许可证以及“开源变付费”等以往争议话题再次被挖出来,且...",
|
|
113
|
+
"url": "https://segmentfault.com/a/1190000042071322",
|
|
114
|
+
"author": "MissD",
|
|
115
|
+
"home_url": "https://segmentfault.com/u/d2ms1shh",
|
|
116
116
|
"votes": "2",
|
|
117
117
|
"rank": 13
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
|
-
"title": "
|
|
121
|
-
"description": "
|
|
122
|
-
"url": "https://segmentfault.com/a/
|
|
123
|
-
"author": "
|
|
124
|
-
"home_url": "https://segmentfault.com/u/
|
|
125
|
-
"votes": "
|
|
120
|
+
"title": "你还在为组件文档烦恼吗?",
|
|
121
|
+
"description": "从 0 到 1 搭建一个全新的组件库文档工具不是最优的选择,本人先在网上搜寻一些已有的解决方案。业务项目技术栈是基于 React,UI 库使用的是 Antd,下面是一些方案的汇总和分析:",
|
|
122
|
+
"url": "https://segmentfault.com/a/1190000042073725",
|
|
123
|
+
"author": "Samon",
|
|
124
|
+
"home_url": "https://segmentfault.com/u/samonxian",
|
|
125
|
+
"votes": "1",
|
|
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/
|
|
134
|
-
"votes": "
|
|
129
|
+
"title": "K8S 生态周报| Ingress NGINX 项目暂停接收新功能将专注于稳定性提升",
|
|
130
|
+
"description": "「K8S 生态周报」内容主要包含我所接触到的 K8S 生态相关的每周值得推荐的一些信息。欢迎订阅专栏「k8s生态」。题外话大家好,我是张晋涛。本次我将这个部分放在开头。聊聊最近的一些情况。「K8S 生态周报」暂停...",
|
|
131
|
+
"url": "https://segmentfault.com/a/1190000042064534",
|
|
132
|
+
"author": "张晋涛",
|
|
133
|
+
"home_url": "https://segmentfault.com/u/moelove",
|
|
134
|
+
"votes": "1",
|
|
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/
|
|
143
|
-
"votes": "
|
|
138
|
+
"title": "全网都在疯传的《老板管理手册》(转)",
|
|
139
|
+
"description": "《老板管理手册》[TOC]📌又名《入职三个月,我对公司的思考建议》建议人:AKA·市场部新媒体运营·快乐打工侠·俞虹 🤘 建议人:AKA·市场部新媒体运营·快乐打工侠·俞虹 🤘 建议人:AKA·市场部新媒体运营·快乐打工侠·俞...",
|
|
140
|
+
"url": "https://segmentfault.com/a/1190000042063056",
|
|
141
|
+
"author": "Young",
|
|
142
|
+
"home_url": "https://segmentfault.com/u/young_6082714523e64",
|
|
143
|
+
"votes": "1",
|
|
144
144
|
"rank": 16
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
|
-
"title": "
|
|
148
|
-
"description": "
|
|
149
|
-
"url": "https://segmentfault.com/a/
|
|
150
|
-
"author": "
|
|
151
|
-
"home_url": "https://segmentfault.com/u/
|
|
147
|
+
"title": "PHP后端面试85问",
|
|
148
|
+
"description": "替换原则(the Liskov Substitution Principle LSP) :子类应当可以替换父类并出现在父类能够出现的任何地方。",
|
|
149
|
+
"url": "https://segmentfault.com/a/1190000042071370",
|
|
150
|
+
"author": "IT小马",
|
|
151
|
+
"home_url": "https://segmentfault.com/u/itxiaoma",
|
|
152
152
|
"votes": "2",
|
|
153
153
|
"rank": 17
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
|
-
"title": "
|
|
157
|
-
"description": "
|
|
158
|
-
"url": "https://segmentfault.com/a/
|
|
159
|
-
"author": "
|
|
160
|
-
"home_url": "https://segmentfault.com/u/
|
|
161
|
-
"votes": "
|
|
156
|
+
"title": "精读《Diff, AnyOf, IsUnion...》",
|
|
157
|
+
"description": "首先要思考 Diff 的计算方式,A 与 B 的 Diff 是找到 A 存在 B 不存在,与 B 存在 A 不存在的值,那么正好可以利用 Exclude<X, Y> 函数,它可以得到存在于 X 不存在于 Y 的值,我们只要用 keyof A、keyof B...",
|
|
158
|
+
"url": "https://segmentfault.com/a/1190000042064614",
|
|
159
|
+
"author": "黄子毅",
|
|
160
|
+
"home_url": "https://segmentfault.com/u/aoyangyudakong",
|
|
161
|
+
"votes": "1",
|
|
162
162
|
"rank": 18
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
|
-
"title": "
|
|
166
|
-
"description": "在
|
|
167
|
-
"url": "https://segmentfault.com/a/
|
|
168
|
-
"author": "
|
|
169
|
-
"home_url": "https://segmentfault.com/u/
|
|
170
|
-
"votes": "
|
|
165
|
+
"title": "Vue 源码中的工具函数",
|
|
166
|
+
"description": "在 Vue 源码中,封装了很多工具函数,学习这些函数,一方面学习大佬们的实现方式,另一方面是温习基础知识,希望大家在日常工作中,简单的函数也可以自己封装,提高编码能力。",
|
|
167
|
+
"url": "https://segmentfault.com/a/1190000042073070",
|
|
168
|
+
"author": "诺顿",
|
|
169
|
+
"home_url": "https://segmentfault.com/u/nuodun",
|
|
170
|
+
"votes": "4",
|
|
171
171
|
"rank": 19
|
|
172
172
|
},
|
|
173
173
|
{
|
|
174
|
-
"title": "
|
|
175
|
-
"description": "
|
|
176
|
-
"url": "https://segmentfault.com/a/
|
|
177
|
-
"author": "
|
|
178
|
-
"home_url": "https://segmentfault.com/u/
|
|
179
|
-
"votes": "
|
|
174
|
+
"title": "如何优雅地实现多数据库的发件箱模式",
|
|
175
|
+
"description": "一个微服务可能需要执行“存数据库”和“发送事件”两个步骤。例如发布一篇文章后,需要更新作者的发文统计信息。业务上要求两个操作同时失败,或者同时成功,而不能出现一个成功一个失败。假如最终文章发布了,更新...",
|
|
176
|
+
"url": "https://segmentfault.com/a/1190000042063425",
|
|
177
|
+
"author": "叶东富",
|
|
178
|
+
"home_url": "https://segmentfault.com/u/yedongfu",
|
|
179
|
+
"votes": "1",
|
|
180
180
|
"rank": 20
|
|
181
181
|
},
|
|
182
182
|
{
|
|
183
|
-
"title": "
|
|
184
|
-
"description": "
|
|
185
|
-
"url": "https://segmentfault.com/a/
|
|
186
|
-
"author": "
|
|
187
|
-
"home_url": "https://segmentfault.com/u/
|
|
188
|
-
"votes": "
|
|
183
|
+
"title": "Vim直接上手(一):三种模式",
|
|
184
|
+
"description": "比如,我们直接在mac上的terminal上输入vim 1.txt,这样系统就会查找是否存在这个txt文件,有就打开,没有就创建一个再打开。",
|
|
185
|
+
"url": "https://segmentfault.com/a/1190000042073871",
|
|
186
|
+
"author": "LiberHome",
|
|
187
|
+
"home_url": "https://segmentfault.com/u/liberhome",
|
|
188
|
+
"votes": "1",
|
|
189
189
|
"rank": 21
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
|
-
"title": "
|
|
193
|
-
"description": "
|
|
194
|
-
"url": "https://segmentfault.com/a/
|
|
195
|
-
"author": "
|
|
196
|
-
"home_url": "https://segmentfault.com/u/
|
|
192
|
+
"title": "纯CSS 格子背景",
|
|
193
|
+
"description": "本文简介点赞 + 收藏 + 关注 = 学会了这次会使用css画出一个格子背景。并且一步步分析如何实现~思路直接给答案:通过2个相等的直角三角形拼接,形成一个正方形。三角形可以使用 background-image 的渐变来实现。 ...",
|
|
194
|
+
"url": "https://segmentfault.com/a/1190000042069574",
|
|
195
|
+
"author": "学习委员",
|
|
196
|
+
"home_url": "https://segmentfault.com/u/k21vin",
|
|
197
197
|
"votes": "1",
|
|
198
198
|
"rank": 22
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
|
-
"title": "
|
|
202
|
-
"description": "
|
|
203
|
-
"url": "https://segmentfault.com/a/
|
|
204
|
-
"author": "
|
|
205
|
-
"home_url": "https://segmentfault.com/u/
|
|
206
|
-
"votes": "
|
|
201
|
+
"title": "在react中基于ant-design,封装一个中文输入框,提高onchange性能",
|
|
202
|
+
"description": "1 antd中,input组件在触发onChange时,如果是中文输入模式,会频繁被触发,导致页面性能降低。尤其是在onChange时需要实时搜索的情况。",
|
|
203
|
+
"url": "https://segmentfault.com/a/1190000042068929",
|
|
204
|
+
"author": "jsoncode",
|
|
205
|
+
"home_url": "https://segmentfault.com/u/jsoncode",
|
|
206
|
+
"votes": "1",
|
|
207
207
|
"rank": 23
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
|
-
"title": "
|
|
211
|
-
"description": "
|
|
212
|
-
"url": "https://segmentfault.com/a/
|
|
213
|
-
"author": "
|
|
214
|
-
"home_url": "https://segmentfault.com/u/
|
|
215
|
-
"votes": "
|
|
210
|
+
"title": "官方答:在React18中请求数据的正确姿势(其他框架也适用)",
|
|
211
|
+
"description": "大家好,我卡颂。一些同学喜欢在useEffect中请求初始数据,类似这样: {代码...} 但React18并不推荐这种方式。这么写有什么问题?如果不推荐这种方式,那么推荐的方式是什么呢?本文来看看Dan在reddit是如何回答...",
|
|
212
|
+
"url": "https://segmentfault.com/a/1190000042059978",
|
|
213
|
+
"author": "卡颂",
|
|
214
|
+
"home_url": "https://segmentfault.com/u/kasong",
|
|
215
|
+
"votes": "1",
|
|
216
216
|
"rank": 24
|
|
217
217
|
},
|
|
218
218
|
{
|
|
219
|
-
"title": "
|
|
220
|
-
"description": "
|
|
221
|
-
"url": "https://segmentfault.com/a/
|
|
222
|
-
"author": "
|
|
223
|
-
"home_url": "https://segmentfault.com/u/
|
|
224
|
-
"votes": "
|
|
219
|
+
"title": "vue3 + express + socket.io 快速搭建响应式 web 即时聊天应用",
|
|
220
|
+
"description": "这是一款响应式开源的 web 即时聊天应用,该应用使用全新技术构建,前端使用 element-plus+ vue3 + vite + ts + pinia + socket.io + unocss 等开发,后端使用 nodejs + express + socket.io + express-jwt 等开...",
|
|
221
|
+
"url": "https://segmentfault.com/a/1190000042081989",
|
|
222
|
+
"author": "南风未了",
|
|
223
|
+
"home_url": "https://segmentfault.com/u/nanfengweiliao",
|
|
224
|
+
"votes": "2",
|
|
225
225
|
"rank": 25
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
|
-
"title": "
|
|
229
|
-
"description": "
|
|
230
|
-
"url": "https://segmentfault.com/a/
|
|
231
|
-
"author": "
|
|
232
|
-
"home_url": "https://segmentfault.com/u/
|
|
228
|
+
"title": "原生JS以后也支持类型注解啦?",
|
|
229
|
+
"description": "在布达佩斯2022 JSConf会议上,tc39(ES标准委员会)成员Gil Tayar介绍了一份当前仍处于stage 1阶段的提案 —— Type Annotations,意在让原生JS支持类型注解。",
|
|
230
|
+
"url": "https://segmentfault.com/a/1190000042080607",
|
|
231
|
+
"author": "卡颂",
|
|
232
|
+
"home_url": "https://segmentfault.com/u/kasong",
|
|
233
233
|
"votes": "1",
|
|
234
234
|
"rank": 26
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
|
-
"title": "
|
|
238
|
-
"description": "
|
|
239
|
-
"url": "https://segmentfault.com/a/
|
|
240
|
-
"author": "
|
|
241
|
-
"home_url": "https://segmentfault.com/u/
|
|
242
|
-
"votes": "
|
|
237
|
+
"title": "麒麟操作系统 (kylinos) 从入门到精通 - 研发环境 - 第二十一篇 C++/C语言开发环境搭建",
|
|
238
|
+
"description": "类别:笔记本型号:中国长城 NF14C硬件平台:飞腾处理器(ArmV8 指令集)系统:银河麒麟操作系统 V10 SP1(2203) 关键词:信创,麒麟系统,linux,c++,c,内核飞腾,arm",
|
|
239
|
+
"url": "https://segmentfault.com/a/1190000042060487",
|
|
240
|
+
"author": "码上世界",
|
|
241
|
+
"home_url": "https://segmentfault.com/u/code4world",
|
|
242
|
+
"votes": "1",
|
|
243
243
|
"rank": 27
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
|
-
"title": "
|
|
247
|
-
"description": "
|
|
248
|
-
"url": "https://segmentfault.com/a/
|
|
249
|
-
"author": "
|
|
250
|
-
"home_url": "https://segmentfault.com/u/
|
|
251
|
-
"votes": "
|
|
246
|
+
"title": "Vue 灰度发布新功能的那些事",
|
|
247
|
+
"description": "灰度发布是指在黑与白之间,能够平滑过渡的一种发布方式。AB test就是一种灰度发布方式,让一部分用户继续用A,一部分用户开始用B,如果用户对B没有什么反对意见,那么逐步扩大范围,把所有用户都迁移到B上面来。...",
|
|
248
|
+
"url": "https://segmentfault.com/a/1190000042077860",
|
|
249
|
+
"author": "南城大前端",
|
|
250
|
+
"home_url": "https://segmentfault.com/u/nanchengfe",
|
|
251
|
+
"votes": "0",
|
|
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": "golang 简洁架构介绍",
|
|
256
|
+
"description": "在 go 开发中,首先遇到的一个问题,应该怎么设计开发架构。一个好的架构可以在后续的项目开发中能够更好的使用项目的推进,同时能够让团队的配合更加的顺利。",
|
|
257
|
+
"url": "https://segmentfault.com/a/1190000042064332",
|
|
258
|
+
"author": "ucmir183",
|
|
259
|
+
"home_url": "https://segmentfault.com/u/ucmir183",
|
|
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/
|
|
269
|
-
"votes": "
|
|
264
|
+
"title": "sso单点登录",
|
|
265
|
+
"description": "sso,Single Sign On,单点登录。简单来说,就是当我们有多个系统时,我们每个系统都需要单独登录非常麻烦,那么我们去单独做一个登录系统,我们叫做sso,这个登录系统可以登录多个其他系统,并且访问多个系统只...",
|
|
266
|
+
"url": "https://segmentfault.com/a/1190000042068327",
|
|
267
|
+
"author": "小强Zzz",
|
|
268
|
+
"home_url": "https://segmentfault.com/u/zhaokaiqiang",
|
|
269
|
+
"votes": "2",
|
|
270
270
|
"rank": 30
|
|
271
271
|
}
|
|
272
272
|
]
|