@wcj/github-rank 22.10.16 → 22.10.17

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.
Files changed (37) hide show
  1. package/dist/repos.json +17124 -17110
  2. package/dist/sifou-daily.json +32 -5
  3. package/dist/sifou-monthly.json +20 -20
  4. package/dist/sifou-weekly.json +96 -96
  5. package/dist/toutiao-30.json +70 -70
  6. package/dist/toutiao-7.json +101 -101
  7. package/dist/toutiao-90.json +34 -34
  8. package/dist/trending-daily.json +171 -171
  9. package/dist/trending-monthly.json +140 -140
  10. package/dist/trending-weekly.json +163 -163
  11. package/dist/users.china.json +971 -972
  12. package/dist/users.json +1794 -1794
  13. package/package.json +1 -1
  14. package/web/data/repos.json +17124 -17110
  15. package/web/data/sifou-daily.json +32 -5
  16. package/web/data/sifou-monthly.json +20 -20
  17. package/web/data/sifou-weekly.json +96 -96
  18. package/web/data/toutiao-30.json +70 -70
  19. package/web/data/toutiao-7.json +101 -101
  20. package/web/data/toutiao-90.json +34 -34
  21. package/web/data/trending-daily.json +171 -171
  22. package/web/data/trending-monthly.json +140 -140
  23. package/web/data/trending-weekly.json +163 -163
  24. package/web/data/users.china.json +971 -972
  25. package/web/data/users.json +1794 -1794
  26. package/web/index.html +915 -915
  27. package/web/repos.html +2303 -2299
  28. package/web/sifou-daily.html +90 -6
  29. package/web/sifou-monthly.html +41 -41
  30. package/web/sifou-weekly.html +112 -112
  31. package/web/toutiao-30.html +86 -86
  32. package/web/toutiao-7.html +81 -81
  33. package/web/toutiao-90.html +44 -44
  34. package/web/trending-monthly.html +131 -127
  35. package/web/trending-weekly.html +143 -143
  36. package/web/trending.html +152 -144
  37. package/web/users.china.html +507 -507
@@ -1,11 +1,38 @@
1
1
  [
2
2
  {
3
- "title": "喜获 Code for Better _ Hackathon 二等奖,简单复盘 & 礼物返图",
4
- "description": "2022 9 月 16 日,以 CODE FOR BETTER_ 为主题,以 2022 Google 开发者大会为契机举办的 Hackathon 大赛进行了线上颁奖仪式。多支优秀参赛队伍在赛程中展示了出色的开发能力,为心中所期待的美好生活,挑战开...",
5
- "url": "https://segmentfault.com/a/1190000042627779",
6
- "author": "Meathill",
7
- "home_url": "https://segmentfault.com/u/meathill",
3
+ "title": "ReactQuery系列文章- 1. React Query 实践",
4
+ "description": "当2018GraphQL特别是Apolllo Client开始流行之后,很多人开始认为它将替代Redux,关于Redux是否已经落伍的问题经常被问到。我很清晰地记得我当时对这些观点的不理解。为什么一些数据请求的库会替代全局状态管理...",
5
+ "url": "https://segmentfault.com/a/1190000042629569",
6
+ "author": "lakb248",
7
+ "home_url": "https://segmentfault.com/u/kk_470661",
8
8
  "votes": "1",
9
9
  "rank": 1
10
+ },
11
+ {
12
+ "title": "《数据密集型应用系统设计》 - 数据模型和查询语言",
13
+ "description": "sjmj 《数据密集型应用系统设计》 - 数据模型和查询语言概览现实世界的API和相关程序作用于某个特定领域解决现实生活的某些问题。存储数据的模型可以使JSON也可以是XML类型。如何展示以及表示JSON,以及如何操作...",
14
+ "url": "https://segmentfault.com/a/1190000042629937",
15
+ "author": "Xander",
16
+ "home_url": "https://segmentfault.com/u/lazytimes",
17
+ "votes": "1",
18
+ "rank": 2
19
+ },
20
+ {
21
+ "title": "【docker】文档 [不断补充中...]",
22
+ "description": "全栈技术分享,API文档动态更新,技术点简明易懂,快速入门有帮助的话点个赞吧,感兴趣的关注加书签获得更多文档,方便随时查阅,有问题欢迎留言讨论",
23
+ "url": "https://segmentfault.com/a/1190000042629924",
24
+ "author": "eveforest",
25
+ "home_url": "https://segmentfault.com/u/eveforest",
26
+ "votes": "1",
27
+ "rank": 3
28
+ },
29
+ {
30
+ "title": "Docker | 发布镜像到镜像仓库",
31
+ "description": "本文记录发布镜像到 DockerHub 和 阿里云镜像仓库。工作中使用的是JFrog Artifactory 和 Harbor,没有太大差别。",
32
+ "url": "https://segmentfault.com/a/1190000042628920",
33
+ "author": "甜点cc",
34
+ "home_url": "https://segmentfault.com/u/xiaojt",
35
+ "votes": "1",
36
+ "rank": 4
10
37
  }
11
38
  ]
@@ -152,15 +152,6 @@
152
152
  "votes": "7",
153
153
  "rank": 17
154
154
  },
155
- {
156
- "title": "图解JS中的事件循环",
157
- "description": "1、js单线程,并非指js只有一个线程,而是同一时刻只能有一个线程在工作。2、js中,主线程之外,还有其他线程,比如事件循环线程,定时器触发线程,http异步线程, 浏览器事件线程。3、在js主线程中,分为两个子...",
158
- "url": "https://segmentfault.com/a/1190000042485178",
159
- "author": "寒水寺一禅",
160
- "home_url": "https://segmentfault.com/u/xiaolizideyitian",
161
- "votes": "6",
162
- "rank": 18
163
- },
164
155
  {
165
156
  "title": "技术征文中奖名单公布 | 浅谈 Java 进阶之路",
166
157
  "description": "哈喽各位社区的小伙伴!SegmentFault 思否技术征文丨浅谈 Java 进阶之路 如约开奖啦~话不多说,我们直接来揭晓获奖名单!强势插播一条预告:技术征文活动每月都有哦,大家多多关注「SegmentFault思否」参与技术征...",
@@ -168,7 +159,7 @@
168
159
  "author": "SegmentFault思否",
169
160
  "home_url": "https://segmentfault.com/u/segmentfault",
170
161
  "votes": "5",
171
- "rank": 19
162
+ "rank": 18
172
163
  },
173
164
  {
174
165
  "title": "特约专访 | 思否 CEO 高阳带你了解 Code For Better _ Hackathon 冠军团队背后的故事",
@@ -177,7 +168,7 @@
177
168
  "author": "SegmentFault思否",
178
169
  "home_url": "https://segmentfault.com/u/segmentfault",
179
170
  "votes": "4",
180
- "rank": 20
171
+ "rank": 19
181
172
  },
182
173
  {
183
174
  "title": "用Colab免费部署自己的AI绘画云平台—— Stable Diffusion",
@@ -186,7 +177,7 @@
186
177
  "author": "程序员秋风",
187
178
  "home_url": "https://segmentfault.com/u/qiufeng_5a07f6cb96ee0",
188
179
  "votes": "6",
189
- "rank": 21
180
+ "rank": 20
190
181
  },
191
182
  {
192
183
  "title": "Segmentfault 思否首届「猫猫杯」线上代码共创大赛正式启动,快来 DIY 你的专属表情包!",
@@ -195,7 +186,7 @@
195
186
  "author": "SegmentFault思否",
196
187
  "home_url": "https://segmentfault.com/u/segmentfault",
197
188
  "votes": "5",
198
- "rank": 22
189
+ "rank": 21
199
190
  },
200
191
  {
201
192
  "title": "面试说:聊聊JavaScript中的数据类型",
@@ -204,7 +195,7 @@
204
195
  "author": "Gopal",
205
196
  "home_url": "https://segmentfault.com/u/fengguangping",
206
197
  "votes": "9",
207
- "rank": 23
198
+ "rank": 22
208
199
  },
209
200
  {
210
201
  "title": "2022 SegmentFault 思否程序员大调查",
@@ -213,7 +204,7 @@
213
204
  "author": "SegmentFault思否",
214
205
  "home_url": "https://segmentfault.com/u/segmentfault",
215
206
  "votes": "5",
216
- "rank": 24
207
+ "rank": 23
217
208
  },
218
209
  {
219
210
  "title": "与小程序的 2M 空间斗智斗勇之图片优化",
@@ -222,7 +213,7 @@
222
213
  "author": "林小志",
223
214
  "home_url": "https://segmentfault.com/u/linxz",
224
215
  "votes": "4",
225
- "rank": 25
216
+ "rank": 24
226
217
  },
227
218
  {
228
219
  "title": "[极致用户体验] 为什么建议2022年不用\"等比设计稿\"+rem,而用\"灵活设计稿\"+px",
@@ -231,7 +222,7 @@
231
222
  "author": "HullQin",
232
223
  "home_url": "https://segmentfault.com/u/hullqin",
233
224
  "votes": "6",
234
- "rank": 26
225
+ "rank": 25
235
226
  },
236
227
  {
237
228
  "title": "微信小程序转为App并上架应用市场",
@@ -240,7 +231,7 @@
240
231
  "author": "xiangzhihong",
241
232
  "home_url": "https://segmentfault.com/u/xiangzhihong",
242
233
  "votes": "4",
243
- "rank": 27
234
+ "rank": 26
244
235
  },
245
236
  {
246
237
  "title": "「🌟技术探索🌟」借助 CI / CD 实现前端应用的快速回滚",
@@ -249,7 +240,7 @@
249
240
  "author": "皮小蛋",
250
241
  "home_url": "https://segmentfault.com/u/scaukk",
251
242
  "votes": "3",
252
- "rank": 28
243
+ "rank": 27
253
244
  },
254
245
  {
255
246
  "title": "从前端到全栈 -- 最全面向对象总结",
@@ -258,7 +249,7 @@
258
249
  "author": "程序员海军",
259
250
  "home_url": "https://segmentfault.com/u/haijun_5e7e16c909f52",
260
251
  "votes": "6",
261
- "rank": 29
252
+ "rank": 28
262
253
  },
263
254
  {
264
255
  "title": "华为王泽锋:协作创新、开源的魅力所在",
@@ -267,6 +258,15 @@
267
258
  "author": "思否编辑部",
268
259
  "home_url": "https://segmentfault.com/u/writers",
269
260
  "votes": "2",
261
+ "rank": 29
262
+ },
263
+ {
264
+ "title": "「数字无限人生」:技术人的精彩时代",
265
+ "description": "18世纪,蒸汽机的发明,引发第一次科技革命19世纪,电力的发明, 引发第二次科技革命20世纪,电脑、能源、新材料、空间、生物等新兴技术,引发第三次科技革命21世纪,电子和信息技术,引发第四次科技革命2022,数...",
266
+ "url": "https://segmentfault.com/a/1190000042582695",
267
+ "author": "思否编辑部",
268
+ "home_url": "https://segmentfault.com/u/writers",
269
+ "votes": "3",
270
270
  "rank": 30
271
271
  }
272
272
  ]
@@ -1,13 +1,4 @@
1
1
  [
2
- {
3
- "title": "一个被忽略的前端细分领域",
4
- "description": "大家好,我卡颂。回想下你学新技术的主要途径是什么?看书?看技术文档?看博文?看视频?归纳起来,无外乎文字、视频两种形式。从纸媒时代到互联网时代,再到移动互联网时代,虽然信息的载体发生变化,但信息的...",
5
- "url": "https://segmentfault.com/a/1190000042584599",
6
- "author": "卡颂",
7
- "home_url": "https://segmentfault.com/u/kasong",
8
- "votes": "15",
9
- "rank": 1
10
- },
11
2
  {
12
3
  "title": "超强的纯 CSS 鼠标点击拖拽效果",
13
4
  "description": "背景鼠标拖拽元素移动,算是一个稍微有点点复杂的交互。而在本文,我们就将打破常规,向大家介绍一种超强的仅仅使用纯 CSS 就能够实现的鼠标点击拖拽效果。在之前的这篇文章中 -- 不可思议的纯 CSS 实现鼠标跟随...",
@@ -15,7 +6,7 @@
15
6
  "author": "chokcoco",
16
7
  "home_url": "https://segmentfault.com/u/chokcoco",
17
8
  "votes": "13",
18
- "rank": 2
9
+ "rank": 1
19
10
  },
20
11
  {
21
12
  "title": "华为王泽锋:协作创新、开源的魅力所在",
@@ -24,7 +15,7 @@
24
15
  "author": "思否编辑部",
25
16
  "home_url": "https://segmentfault.com/u/writers",
26
17
  "votes": "2",
27
- "rank": 3
18
+ "rank": 2
28
19
  },
29
20
  {
30
21
  "title": "前端框架:性能与灵活性的取舍",
@@ -33,7 +24,7 @@
33
24
  "author": "卡颂",
34
25
  "home_url": "https://segmentfault.com/u/kasong",
35
26
  "votes": "4",
36
- "rank": 4
27
+ "rank": 3
37
28
  },
38
29
  {
39
30
  "title": "致「独一无二」的你|1024 程序员节系列活动启动",
@@ -41,8 +32,8 @@
41
32
  "url": "https://segmentfault.com/a/1190000042598682",
42
33
  "author": "SegmentFault思否",
43
34
  "home_url": "https://segmentfault.com/u/segmentfault",
44
- "votes": "4",
45
- "rank": 5
35
+ "votes": "5",
36
+ "rank": 4
46
37
  },
47
38
  {
48
39
  "title": "快速了解 inert 属性",
@@ -51,6 +42,15 @@
51
42
  "author": "XboxYan",
52
43
  "home_url": "https://segmentfault.com/u/xboxyan",
53
44
  "votes": "4",
45
+ "rank": 5
46
+ },
47
+ {
48
+ "title": "电子表格也能做购物车?简单三步就能实现",
49
+ "description": "在我们的项目当中,经常需要添加一些选择界面,让用户直观地进行交互,比如耗材、办公用品、设计稿或者其它可以选择的内容。在线商城的商品目录和购物车无疑是一种大家都很熟悉的交互方式,但是在实际开发中,我...",
50
+ "url": "https://segmentfault.com/a/1190000042624221",
51
+ "author": "葡萄城技术团队",
52
+ "home_url": "https://segmentfault.com/u/grapecity",
53
+ "votes": "1",
54
54
  "rank": 6
55
55
  },
56
56
  {
@@ -63,23 +63,14 @@
63
63
  "rank": 7
64
64
  },
65
65
  {
66
- "title": "电子表格也能做购物车?简单三步就能实现",
67
- "description": "在我们的项目当中,经常需要添加一些选择界面,让用户直观地进行交互,比如耗材、办公用品、设计稿或者其它可以选择的内容。在线商城的商品目录和购物车无疑是一种大家都很熟悉的交互方式,但是在实际开发中,我...",
68
- "url": "https://segmentfault.com/a/1190000042624221",
69
- "author": "葡萄城技术团队",
70
- "home_url": "https://segmentfault.com/u/grapecity",
66
+ "title": "云 + AI = More|微软智能云矩阵加速数字化转型“ Do more with Less”",
67
+ "description": "11 月 13 日,微软年度技术大会 Ignite 2022 及 Ignite China 中国技术峰会同步开启线上直播。在 13 日的 Ignite China 北京(微软大厦)现场,众多来自业界的技术专家、嘉宾大咖以及 IT 开发者们欢聚一堂,共同...",
68
+ "url": "https://segmentfault.com/a/1190000042624820",
69
+ "author": "思否编辑部",
70
+ "home_url": "https://segmentfault.com/u/writers",
71
71
  "votes": "1",
72
72
  "rank": 8
73
73
  },
74
- {
75
- "title": "想要字体图标设计师却给了SVG?没关系,自己转",
76
- "description": "本文为Varlet组件库源码主题阅读系列第三篇,读完本篇,你可以了解到如何将svg图标转换成字体图标文件,以及如何设计一个简洁的Vue图标组件。",
77
- "url": "https://segmentfault.com/a/1190000042588745",
78
- "author": "街角小林",
79
- "home_url": "https://segmentfault.com/u/jiejiaoxiaolin",
80
- "votes": "2",
81
- "rank": 9
82
- },
83
74
  {
84
75
  "title": "10分钟教你写一个数据库",
85
76
  "description": "今天教大家借助一款框架快速实现一个数据库,这个框架就是Calcite,下面会带大家通过两个例子快速教会大家怎么实现,一个是可以通过 SQL 语句的方式可以直接查询文件内容,第二个是模拟 Mysql 查询功能,以及最后...",
@@ -87,7 +78,7 @@
87
78
  "author": "艾小仙",
88
79
  "home_url": "https://segmentfault.com/u/goudantiezhuerzi",
89
80
  "votes": "3",
90
- "rank": 10
81
+ "rank": 9
91
82
  },
92
83
  {
93
84
  "title": "5个常见的JavaScript内存错误",
@@ -96,6 +87,15 @@
96
87
  "author": "前端小智",
97
88
  "home_url": "https://segmentfault.com/u/minnanitkong",
98
89
  "votes": "3",
90
+ "rank": 10
91
+ },
92
+ {
93
+ "title": "字节跳动后端面经五",
94
+ "description": "b+树底层是双向链表还是单向TCP为什么要第四次挥手对称加密和非对称加密介绍ARP协议工作原理?ARP攻击?如何解决?token过期机制MySQL索引使用的什么数据结构,B+树和B树的区别mysql主备分离的作用?mysql采用主...",
95
+ "url": "https://segmentfault.com/a/1190000042622277",
96
+ "author": "zydybaby",
97
+ "home_url": "https://segmentfault.com/u/zydybaby",
98
+ "votes": "2",
99
99
  "rank": 11
100
100
  },
101
101
  {
@@ -107,15 +107,6 @@
107
107
  "votes": "2",
108
108
  "rank": 12
109
109
  },
110
- {
111
- "title": "字节跳动后端面经五",
112
- "description": "b+树底层是双向链表还是单向TCP为什么要第四次挥手对称加密和非对称加密介绍ARP协议工作原理?ARP攻击?如何解决?token过期机制MySQL索引使用的什么数据结构,B+树和B树的区别mysql主备分离的作用?mysql采用主...",
113
- "url": "https://segmentfault.com/a/1190000042622277",
114
- "author": "zydybaby",
115
- "home_url": "https://segmentfault.com/u/zydybaby",
116
- "votes": "2",
117
- "rank": 13
118
- },
119
110
  {
120
111
  "title": "spring boot 文件上传和下载",
121
112
  "description": "学习了老师写的文件上传和下载,这里学习一下。文件上传controller层从controller层开始,接受前台传的数据。1.前台调用后台接口: {代码...} 2.controller层接收数据: {代码...} 可以看到,后台接受文件是以 Mult...",
@@ -123,7 +114,7 @@
123
114
  "author": "weiewiyi",
124
115
  "home_url": "https://segmentfault.com/u/chenchu_6110ed583800c",
125
116
  "votes": "4",
126
- "rank": 14
117
+ "rank": 13
127
118
  },
128
119
  {
129
120
  "title": "Go语言学习笔记:Http请求--Gorequest使用",
@@ -132,7 +123,7 @@
132
123
  "author": "ipidea",
133
124
  "home_url": "https://segmentfault.com/u/ipidea",
134
125
  "votes": "1",
135
- "rank": 15
126
+ "rank": 14
136
127
  },
137
128
  {
138
129
  "title": "浅谈移动端单屏解决方案",
@@ -141,16 +132,7 @@
141
132
  "author": "深红",
142
133
  "home_url": "https://segmentfault.com/u/deepred5",
143
134
  "votes": "2",
144
- "rank": 16
145
- },
146
- {
147
- "title": "如何快速学习Go的struct数据类型",
148
- "description": "结构是表示字段集合的用户定义类型。它可以用于将数据分组为单个单元而不是将每个数据作为单独的值的地方。例如,员工有firstName、lastName和age。将这三个属性分组到一个名为Employee。",
149
- "url": "https://segmentfault.com/a/1190000042589069",
150
- "author": "7small7",
151
- "home_url": "https://segmentfault.com/u/7small7",
152
- "votes": "1",
153
- "rank": 17
135
+ "rank": 15
154
136
  },
155
137
  {
156
138
  "title": "新一波 JavaScript 框架",
@@ -159,7 +141,16 @@
159
141
  "author": "前端小智",
160
142
  "home_url": "https://segmentfault.com/u/minnanitkong",
161
143
  "votes": "1",
162
- "rank": 18
144
+ "rank": 16
145
+ },
146
+ {
147
+ "title": "Python多进程——进程池的开启和多进程操作同一个List",
148
+ "description": "为什么要使用多进程目标网站数据量多,想赶时间多获取点东西?数据库大批量的数据需要操作?单纯的想要节省时间,早早下班?............肯定会有人说【多线程】。Python的多线程为了数据安全设置了GIL全局解释器...",
149
+ "url": "https://segmentfault.com/a/1190000042616103",
150
+ "author": "ipidea",
151
+ "home_url": "https://segmentfault.com/u/ipidea",
152
+ "votes": "1",
153
+ "rank": 17
163
154
  },
164
155
  {
165
156
  "title": "用 javascript 写 SQL",
@@ -168,6 +159,15 @@
168
159
  "author": "donggg",
169
160
  "home_url": "https://segmentfault.com/u/donggg1942",
170
161
  "votes": "1",
162
+ "rank": 18
163
+ },
164
+ {
165
+ "title": "JSON对象转换TypeScript声明",
166
+ "description": "TS使开发人员能够掌握各种组件的交互方式,并使代码重构变得更加容易;但对于需要准确定义的类型,在使用时会比较麻烦。特别是涉及数个及数十个后端接口数据的类型定义,会有大量的转换和的时间成本。通过VSCode...",
167
+ "url": "https://segmentfault.com/a/1190000042617645",
168
+ "author": "兰俊秋雨",
169
+ "home_url": "https://segmentfault.com/u/qianxiaqingkong",
170
+ "votes": "2",
171
171
  "rank": 19
172
172
  },
173
173
  {
@@ -180,11 +180,11 @@
180
180
  "rank": 20
181
181
  },
182
182
  {
183
- "title": "JSON对象转换TypeScript声明",
184
- "description": "TS使开发人员能够掌握各种组件的交互方式,并使代码重构变得更加容易;但对于需要准确定义的类型,在使用时会比较麻烦。特别是涉及数个及数十个后端接口数据的类型定义,会有大量的转换和的时间成本。通过VSCode...",
185
- "url": "https://segmentfault.com/a/1190000042617645",
186
- "author": "兰俊秋雨",
187
- "home_url": "https://segmentfault.com/u/qianxiaqingkong",
183
+ "title": "一款纯 JS 实现的轻量化图片编辑器",
184
+ "description": "刚开始使用 PPT 来处理, 一张张复制过去, 做一些边框阴影处理, 再加一些图形, 然后再导出来复制到需要的地方, 而且导出后的图片之后可能不会再使用了还要清理.",
185
+ "url": "https://segmentfault.com/a/1190000042612529",
186
+ "author": "行知万门",
187
+ "home_url": "https://segmentfault.com/u/xingzhiwanmen",
188
188
  "votes": "2",
189
189
  "rank": 21
190
190
  },
@@ -198,31 +198,13 @@
198
198
  "rank": 22
199
199
  },
200
200
  {
201
- "title": "Python多进程——进程池的开启和多进程操作同一个List",
202
- "description": "为什么要使用多进程目标网站数据量多,想赶时间多获取点东西?数据库大批量的数据需要操作?单纯的想要节省时间,早早下班?............肯定会有人说【多线程】。Python的多线程为了数据安全设置了GIL全局解释器...",
203
- "url": "https://segmentfault.com/a/1190000042616103",
204
- "author": "ipidea",
205
- "home_url": "https://segmentfault.com/u/ipidea",
206
- "votes": "1",
207
- "rank": 23
208
- },
209
- {
210
- "title": "🤖️ 如何逐步关闭 MIUI 无处不在的广告",
211
- "description": "在 2022 年,Android 系统对手机权限的进一步限制,一些过往的卡顿问题都得到了一定的解决。但是在国内的定制版 Android 机上,和原生 Android 系统还是多了一些特色的东西:",
212
- "url": "https://segmentfault.com/a/1190000042583953",
213
- "author": "卤代烃",
214
- "home_url": "https://segmentfault.com/u/skychx",
215
- "votes": "1",
216
- "rank": 24
217
- },
218
- {
219
- "title": "一款纯 JS 实现的轻量化图片编辑器",
220
- "description": "刚开始使用 PPT 来处理, 一张张复制过去, 做一些边框阴影处理, 再加一些图形, 然后再导出来复制到需要的地方, 而且导出后的图片之后可能不会再使用了还要清理.",
221
- "url": "https://segmentfault.com/a/1190000042612529",
222
- "author": "行知万门",
223
- "home_url": "https://segmentfault.com/u/xingzhiwanmen",
201
+ "title": "深入理解JavaScript——词法环境",
202
+ "description": "第一步:V8 引擎刚拿到 执行上下文 的时候,会把代码从上到下一行一行的先做分词/词法分析(Tokenizing/Lexing)。分词是指:比如 var a = 2; 这段代码,会被分词为:var a 2和;这样的原子符号(atomic token);词法...",
203
+ "url": "https://segmentfault.com/a/1190000042621269",
204
+ "author": "山头人汉波",
205
+ "home_url": "https://segmentfault.com/u/johanazhu",
224
206
  "votes": "2",
225
- "rank": 25
207
+ "rank": 23
226
208
  },
227
209
  {
228
210
  "title": "vue3封装一个带动画的关闭按钮",
@@ -231,16 +213,7 @@
231
213
  "author": "jsoncode",
232
214
  "home_url": "https://segmentfault.com/u/jsoncode",
233
215
  "votes": "1",
234
- "rank": 26
235
- },
236
- {
237
- "title": "h5中使用javascript在客户端对图片进行压缩和尺寸处理,附ts代码",
238
- "description": "有时候我们有这样的需求,就是对前端选中的图片进行压缩处理。这样处理的原因可能是。减少带宽占用率,提高效率。对图片进行裁剪符合上传需求。(现在手机拍照分辨率很高,直接拿来用比较大。)前端对图片进行压缩...",
239
- "url": "https://segmentfault.com/a/1190000042587161",
240
- "author": "farmerz",
241
- "home_url": "https://segmentfault.com/u/farmerz",
242
- "votes": "2",
243
- "rank": 27
216
+ "rank": 24
244
217
  },
245
218
  {
246
219
  "title": "基于 Impala 的高性能数仓实践之物化视图服务",
@@ -249,7 +222,16 @@
249
222
  "author": "网易数帆",
250
223
  "home_url": "https://segmentfault.com/u/163yun",
251
224
  "votes": "1",
252
- "rank": 28
225
+ "rank": 25
226
+ },
227
+ {
228
+ "title": "【YOLOv5】LabVIEW+YOLOv5快速实现实时物体识别(Object Detection)含源码",
229
+ "description": "前面我们给大家介绍了基于LabVIEW+YOLOv3/YOLOv4的物体识别(对象检测),今天接着上次的内容再来看看YOLOv5。本次主要是和大家分享使用LabVIEW快速实现yolov5的物体识别,本博客中使用的智能工具包可到主页置顶...",
230
+ "url": "https://segmentfault.com/a/1190000042617569",
231
+ "author": "wangstoudamire",
232
+ "home_url": "https://segmentfault.com/u/wangstoudamire_62b438915bf66",
233
+ "votes": "1",
234
+ "rank": 26
253
235
  },
254
236
  {
255
237
  "title": "详解webpack构建优化",
@@ -258,14 +240,32 @@
258
240
  "author": "gogo2027",
259
241
  "home_url": "https://segmentfault.com/u/bakuaifujideguantou",
260
242
  "votes": "1",
243
+ "rank": 27
244
+ },
245
+ {
246
+ "title": "IM跨平台技术学习(四):蘑菇街基于Electron开发IM客户端的技术实践",
247
+ "description": "1、引言本系列文章的前面几篇主要是从Electron技术本身进行了讨论(包括:第1篇初步了解Electron、第2篇进行了快速开始和技术体验、第3篇基于实际开发考虑的技术栈选型等),各位读者也应该对Electron的开发有了...",
248
+ "url": "https://segmentfault.com/a/1190000042615946",
249
+ "author": "JackJiang",
250
+ "home_url": "https://segmentfault.com/u/jackjiang",
251
+ "votes": "1",
252
+ "rank": 28
253
+ },
254
+ {
255
+ "title": "从零手写react-router",
256
+ "description": "蛮多同学可能会觉得react-router很复杂, 说用都还没用明白, 还从0实现一个react-router, 其实router并不复杂哈, 甚至说你看了这篇博客以后, 你都会觉得router的核心原理也就那么回事",
257
+ "url": "https://segmentfault.com/a/1190000042615932",
258
+ "author": "hello_world_1024",
259
+ "home_url": "https://segmentfault.com/u/zhishiyuanbodexiaoyanyao",
260
+ "votes": "1",
261
261
  "rank": 29
262
262
  },
263
263
  {
264
- "title": "【YOLOv5】LabVIEW+YOLOv5快速实现实时物体识别(Object Detection)含源码",
265
- "description": "前面我们给大家介绍了基于LabVIEW+YOLOv3/YOLOv4的物体识别(对象检测),今天接着上次的内容再来看看YOLOv5。本次主要是和大家分享使用LabVIEW快速实现yolov5的物体识别,本博客中使用的智能工具包可到主页置顶...",
266
- "url": "https://segmentfault.com/a/1190000042617569",
267
- "author": "wangstoudamire",
268
- "home_url": "https://segmentfault.com/u/wangstoudamire_62b438915bf66",
264
+ "title": "铜九银十react考察点梳理",
265
+ "description": "React中可以在render访问refs吗?为什么? {代码...} 不可以,render 阶段 DOM 还没有生成,无法获取 DOM。DOM 的获取需要在 pre-commit 阶段和 commit 阶段:setState 是同步异步?为什么?实现原理?1. setStat...",
266
+ "url": "https://segmentfault.com/a/1190000042607031",
267
+ "author": "紧张的大葱",
268
+ "home_url": "https://segmentfault.com/u/jinzhangdedacong",
269
269
  "votes": "1",
270
270
  "rank": 30
271
271
  }