@wcj/github-rank 22.3.17 → 22.3.20

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 (38) hide show
  1. package/dist/repos.json +31159 -31154
  2. package/dist/sifou-daily.json +33 -87
  3. package/dist/sifou-monthly.json +116 -116
  4. package/dist/sifou-weekly.json +165 -165
  5. package/dist/toutiao-30.json +74 -74
  6. package/dist/toutiao-7.json +111 -111
  7. package/dist/toutiao-90.json +50 -50
  8. package/dist/trending-daily.json +173 -173
  9. package/dist/trending-monthly.json +166 -166
  10. package/dist/trending-weekly.json +164 -164
  11. package/dist/users.china.json +2342 -2343
  12. package/dist/users.json +3531 -3531
  13. package/package.json +1 -1
  14. package/web/36kr.html +35 -13
  15. package/web/data/repos.json +31159 -31154
  16. package/web/data/sifou-daily.json +33 -87
  17. package/web/data/sifou-monthly.json +116 -116
  18. package/web/data/sifou-weekly.json +165 -165
  19. package/web/data/toutiao-30.json +74 -74
  20. package/web/data/toutiao-7.json +111 -111
  21. package/web/data/toutiao-90.json +50 -50
  22. package/web/data/trending-daily.json +173 -173
  23. package/web/data/trending-monthly.json +166 -166
  24. package/web/data/trending-weekly.json +164 -164
  25. package/web/data/users.china.json +2342 -2343
  26. package/web/data/users.json +3531 -3531
  27. package/web/index.html +1791 -1769
  28. package/web/repos.html +3961 -3939
  29. package/web/sifou-daily.html +62 -208
  30. package/web/sifou-monthly.html +176 -154
  31. package/web/sifou-weekly.html +176 -154
  32. package/web/toutiao-30.html +121 -99
  33. package/web/toutiao-7.html +111 -89
  34. package/web/toutiao-90.html +98 -76
  35. package/web/trending-monthly.html +185 -159
  36. package/web/trending-weekly.html +185 -151
  37. package/web/trending.html +189 -163
  38. package/web/users.china.html +1245 -1223
@@ -7,41 +7,63 @@
7
7
  <link rel="icon" type="image/x-icon" href="https://github.githubassets.com/favicon.ico">
8
8
  <title> GitHub Repositories Trending </title>
9
9
  <meta name="description" content="GitHub Repositories Trending">
10
+ <style>
11
+ [data-color-mode*='dark'] {
12
+ --color-fg-default: #c9d1d9;
13
+ --color-fg-muted: #8b949e;
14
+ --color-fg-subtle: #484f58;
15
+ --color-accent-fg: #58a6ff;
16
+ --color-accent-emphasis: #1f6feb;
17
+ --color-link-hover: #58a6ff;
18
+ --color-tab-fg: #494949;
19
+ --color-border: #e2e2e2;
20
+ --color-neutral-muted: rgba(110,118,129,0.4);
21
+ }
22
+ [data-color-mode*='light'] {
23
+ --color-fg-default: #24292f;
24
+ --color-fg-muted: #57606a;
25
+ --color-fg-subtle: #6e7781;
26
+ --color-accent-fg: #0969da;
27
+ --color-accent-emphasis: #0969da;
28
+ --color-link-hover: #58a6ff;
29
+ --color-tab-fg: #e2e2e2;
30
+ --color-border: #000;
31
+ --color-neutral-muted: rgba(175,184,193,0.2);
32
+ }
33
+ </style>
10
34
  <style>
11
35
  * { box-sizing: border-box; }
12
36
  html, body, ul, li, h1 { margin: 0; padding: 0 }
13
37
  html, body { font-size: 16px; font-family: -apple-system,"Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","WenQuanYi Micro Hei","Microsoft Yahei",sans-serif; }
14
38
  ul { list-style: none; }
15
39
 
16
- a { color: #333; text-decoration: none; transition: all .2s ease-in; }
17
- a:hover { color: #1600ff; }
40
+ a { color: var(--color-accent-fg); text-decoration: none; transition: all .2s ease-in; }
41
+ a:hover { color: var(--color-link-hover); text-decoration: underline; }
18
42
  a.github-corner:hover .octo-arm { animation: octocat-wave 560ms infinite linear; }
19
43
  a.github-corner svg { fill: #f1f1f1; color: #000; position: absolute; top: 0; border: 0; right: 0; z-index: 99; width: 70px; height: 70px; }
20
44
  a.github-corner { position: fixed; z-index: 9999; top: 0; right: 0; }
21
45
 
22
46
  .title { padding: 32px 20px 10px 20px; font-size: 32px; display: flex; }
23
47
  .title a svg { display: block; }
24
- .title a { color: #0059ff; display: inline-block; margin-left: 10px; }
48
+ .title a { color: var(--color-accent-fg); display: inline-block; margin-left: 10px; }
25
49
  .time, .footer { padding: 5px 20px 2px 20px; font-size: 12px; color: #adadad; }
26
50
  .tabs { padding: 0 20px 5px 20px;}
27
- .tabs a { background: #e2e2e2; display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: #0366d6; }
51
+ .tabs a { background: var(--color-tab-fg); display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: var(--color-accent-fg); }
28
52
  .tabs a.active { background: #333; color: #efefef; }
29
53
  .tabs a:hover:not(.active) { background: #efefef; }
30
54
  .footer { padding: 0 20px 30px 20px; font-size: 12px; color: #adadad; }
31
55
  .footer .time { padding: 0; }
32
56
  .list { text-align: left; padding-bottom: 10px; margin: 0 15px; }
33
57
  .list img { width: 36px; height: 36px; border-radius: 3px; display: block; margin: 0 auto; background-color: #e2e2e2; border: 0; overflow: hidden; }
34
- .list a { color: #0366d6; }
35
- .list a:hover { color: #1600ff; }
36
58
  .list li { padding: 10px; transition: all .3s; }
37
59
  .list li.rank-title { margin: 0; padding: 3px 0 0 7px; margin-bottom: 10px; border-radius: 5px; font-size: 12px; line-height: 16px; }
38
60
  .list li.rank-title > a { margin-right: 10px; }
39
61
  .list li.rank-title:hover { background: transparent; }
40
62
  .list li:last-child, .list li.rank-title { border-bottom: 0; }
41
- .list li:hover { background: #efefef8f; }
63
+ .list li:hover { background: var(--color-neutral-muted); }
42
64
  .list li > div { display: table-cell; vertical-align: top; font-size: 14px; }
43
65
  .list li div.rank span { font-weight: bold; }
44
- .list li div.details { padding: 2px 0 0 0; font-size: 12px; float: left; color: #b9b9b9; }
66
+ .list li div.details { padding: 2px 0 0 0; font-size: 12px; float: left; color: var(--color-fg-muted); }
45
67
  .list li div.details a { color: #b9b9b9; transition: all .3s; }
46
68
  .list li div.details a:hover { color: #1600ff; }
47
69
  .list li div.details a:hover svg { fill: #1600ff; }
@@ -51,19 +73,19 @@
51
73
  .list li > div.info { width: 100%; }
52
74
  .list li > div.info i { color: #717171; }
53
75
  .list li > div.info a:hover i { color: #333; }
54
- .list li div.sub-title { color: #333; margin: 4px 0 0 0; }
76
+ .list li div.sub-title { color: var(--color-theme-text); margin: 4px 0 0 0; }
55
77
  .list li div.avatar { padding-right: 10px; }
56
78
 
57
79
  .list li a.language,
58
- .list li span.star { height: 18px; background: #e2e2e2; display: inline-block; padding: 2px 4px; border-radius: 3px; }
80
+ .list li span.star { height: 18px; background: var(--color-neutral-muted); display: inline-block; padding: 2px 4px; border-radius: 3px; }
59
81
 
60
82
 
61
83
  .list .select { }
62
- .list .select .active { color: #333; font-weight: bold; border-bottom: 1px dotted #000;}
84
+ .list .select .active { color: var(--color-theme-text); font-weight: bold; border-bottom: 1px dotted var(--color-border);}
63
85
 
64
86
 
65
- .list li div.followers { font-size: 12px; color: #7d7d7d; white-space:nowrap; padding-top: 2px; border-radius: 3px; }
66
- .list li div.followers a { color: #545454; }
87
+ .list li div.followers { font-size: 12px; color: var(--color-fg-muted); white-space:nowrap; padding-top: 2px; border-radius: 3px; }
88
+ .list li div.followers a { color: var(--color-fg-muted); }
67
89
  .list li div.followers * { vertical-align: middle; }
68
90
  .list li div.followers svg { vertical-align: text-top; display: inline-block; fill: #9E9E9E; width: 14px; height: 14px; }
69
91
 
@@ -78,8 +100,7 @@
78
100
  .title { padding-top: 16px; font-size: 21px; }
79
101
  }
80
102
  </style>
81
- <style>
82
- </style>
103
+ <script src="https://unpkg.com/@wcj/dark-mode"></script>
83
104
  </head>
84
105
  <body>
85
106
  <a href="https://github.com/jaywcjlove/github-rank" target="_blank" class="github-corner">
@@ -90,6 +111,7 @@
90
111
  </svg>
91
112
  </a>
92
113
  <h1 class="title">
114
+ <dark-mode permanent></dark-mode>
93
115
  GitHub Repositories Trending
94
116
 
95
117
 
@@ -102,7 +124,7 @@
102
124
 
103
125
 
104
126
  </h1>
105
- <div class="time">Last cache created on 2022/3/17 by
127
+ <div class="time">Last cache created on 2022/3/20 by
106
128
 
107
129
 
108
130
 
@@ -133,32 +155,32 @@
133
155
  <div class="info">
134
156
  <div class="rank">
135
157
  <span title="Ranking 1">1</span>
136
- <a href="https://github.com/microsoft/Web-Dev-For-Beginners" target="_blank" title="microsoft/Web-Dev-For-Beginners">microsoft/Web-Dev-For-Beginners</a>
158
+ <a href="https://github.com/peng-zhihui/Dummy-Robot" target="_blank" title="peng-zhihui/Dummy-Robot">peng-zhihui/Dummy-Robot</a>
137
159
  </div>
138
160
  <div class="sub-title followers">
139
161
 
140
- <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
141
- <span style="background-color: #f1e05a;"></span>JavaScript
162
+ <a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
163
+ <span style="background-color: #555555;"></span>C
142
164
  </a>
143
165
 
144
166
  <span class="star" title="Stargazers Count">
145
167
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
146
168
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
147
169
  </svg>
148
- <span>44332</span>
170
+ <span>6711</span>
149
171
  </span>
150
172
  <span class="star" title="Repo Forked">
151
173
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
152
174
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
153
175
  </path>
154
176
  </svg>
155
- <span>6389</span>
177
+ <span>1308</span>
156
178
  </span>
157
179
  <span class="star">
158
180
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
159
181
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
160
182
  </svg>
161
- <span>1131 stars this week</span>
183
+ <span>579 stars this week</span>
162
184
  </span>
163
185
  </div>
164
186
  <div class="details">
@@ -171,19 +193,19 @@
171
193
  <div class="info">
172
194
  <div class="rank">
173
195
  <span title="Ranking 2">2</span>
174
- <a href="https://github.com/sunface/rust-by-practice" target="_blank" title="sunface/rust-by-practice">sunface/rust-by-practice</a>
196
+ <a href="https://github.com/nkallen/plasticity" target="_blank" title="nkallen/plasticity">nkallen/plasticity</a>
175
197
  </div>
176
198
  <div class="sub-title followers">
177
199
 
178
- <a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
179
- <span style="background-color: #dea584;"></span>Rust
200
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
201
+ <span style="background-color: #2b7489;"></span>TypeScript
180
202
  </a>
181
203
 
182
204
  <span class="star" title="Stargazers Count">
183
205
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
184
206
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
185
207
  </svg>
186
- <span>2287</span>
208
+ <span>1451</span>
187
209
  </span>
188
210
  <span class="star" title="Repo Forked">
189
211
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
@@ -196,7 +218,7 @@
196
218
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
197
219
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
198
220
  </svg>
199
- <span>607 stars this week</span>
221
+ <span>744 stars this week</span>
200
222
  </span>
201
223
  </div>
202
224
  <div class="details">
@@ -209,32 +231,32 @@
209
231
  <div class="info">
210
232
  <div class="rank">
211
233
  <span title="Ranking 3">3</span>
212
- <a href="https://github.com/peng-zhihui/Dummy-Robot" target="_blank" title="peng-zhihui/Dummy-Robot">peng-zhihui/Dummy-Robot</a>
234
+ <a href="https://github.com/TeamNewPipe/NewPipe" target="_blank" title="TeamNewPipe/NewPipe">TeamNewPipe/NewPipe</a>
213
235
  </div>
214
236
  <div class="sub-title followers">
215
237
 
216
- <a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
217
- <span style="background-color: #555555;"></span>C
238
+ <a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
239
+ <span style="background-color: #b07219;"></span>Java
218
240
  </a>
219
241
 
220
242
  <span class="star" title="Stargazers Count">
221
243
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
222
244
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
223
245
  </svg>
224
- <span>6548</span>
246
+ <span>18104</span>
225
247
  </span>
226
248
  <span class="star" title="Repo Forked">
227
249
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
228
250
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
229
251
  </path>
230
252
  </svg>
231
- <span>1266</span>
253
+ <span>2202</span>
232
254
  </span>
233
255
  <span class="star">
234
256
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
235
257
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
236
258
  </svg>
237
- <span>437 stars this week</span>
259
+ <span>858 stars this week</span>
238
260
  </span>
239
261
  </div>
240
262
  <div class="details">
@@ -247,7 +269,7 @@
247
269
  <div class="info">
248
270
  <div class="rank">
249
271
  <span title="Ranking 4">4</span>
250
- <a href="https://github.com/Rapptz/discord.py" target="_blank" title="Rapptz/discord.py">Rapptz/discord.py</a>
272
+ <a href="https://github.com/paperless-ngx/paperless-ngx" target="_blank" title="paperless-ngx/paperless-ngx">paperless-ngx/paperless-ngx</a>
251
273
  </div>
252
274
  <div class="sub-title followers">
253
275
 
@@ -259,20 +281,20 @@
259
281
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
260
282
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
261
283
  </svg>
262
- <span>9932</span>
284
+ <span>1008</span>
263
285
  </span>
264
286
  <span class="star" title="Repo Forked">
265
287
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
266
288
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
267
289
  </path>
268
290
  </svg>
269
- <span>3254</span>
291
+ <span>56</span>
270
292
  </span>
271
293
  <span class="star">
272
294
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
273
295
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
274
296
  </svg>
275
- <span>185 stars this week</span>
297
+ <span>300 stars this week</span>
276
298
  </span>
277
299
  </div>
278
300
  <div class="details">
@@ -285,32 +307,32 @@
285
307
  <div class="info">
286
308
  <div class="rank">
287
309
  <span title="Ranking 5">5</span>
288
- <a href="https://github.com/YaoApp/yao" target="_blank" title="YaoApp/yao">YaoApp/yao</a>
310
+ <a href="https://github.com/lapce/lapce" target="_blank" title="lapce/lapce">lapce/lapce</a>
289
311
  </div>
290
312
  <div class="sub-title followers">
291
313
 
292
- <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
293
- <span style="background-color: #00ADD8;"></span>Go
314
+ <a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
315
+ <span style="background-color: #dea584;"></span>Rust
294
316
  </a>
295
317
 
296
318
  <span class="star" title="Stargazers Count">
297
319
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
298
320
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
299
321
  </svg>
300
- <span>3005</span>
322
+ <span>7749</span>
301
323
  </span>
302
324
  <span class="star" title="Repo Forked">
303
325
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
304
326
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
305
327
  </path>
306
328
  </svg>
307
- <span>234</span>
329
+ <span>185</span>
308
330
  </span>
309
331
  <span class="star">
310
332
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
311
333
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
312
334
  </svg>
313
- <span>1024 stars this week</span>
335
+ <span>1838 stars this week</span>
314
336
  </span>
315
337
  </div>
316
338
  <div class="details">
@@ -323,32 +345,32 @@
323
345
  <div class="info">
324
346
  <div class="rank">
325
347
  <span title="Ranking 6">6</span>
326
- <a href="https://github.com/TeamNewPipe/NewPipe" target="_blank" title="TeamNewPipe/NewPipe">TeamNewPipe/NewPipe</a>
348
+ <a href="https://github.com/liamg/traitor" target="_blank" title="liamg/traitor">liamg/traitor</a>
327
349
  </div>
328
350
  <div class="sub-title followers">
329
351
 
330
- <a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
331
- <span style="background-color: #b07219;"></span>Java
352
+ <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
353
+ <span style="background-color: #00ADD8;"></span>Go
332
354
  </a>
333
355
 
334
356
  <span class="star" title="Stargazers Count">
335
357
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
336
358
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
337
359
  </svg>
338
- <span>17934</span>
360
+ <span>4711</span>
339
361
  </span>
340
362
  <span class="star" title="Repo Forked">
341
363
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
342
364
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
343
365
  </path>
344
366
  </svg>
345
- <span>2185</span>
367
+ <span>312</span>
346
368
  </span>
347
369
  <span class="star">
348
370
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
349
371
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
350
372
  </svg>
351
- <span>708 stars this week</span>
373
+ <span>498 stars this week</span>
352
374
  </span>
353
375
  </div>
354
376
  <div class="details">
@@ -361,28 +383,32 @@
361
383
  <div class="info">
362
384
  <div class="rank">
363
385
  <span title="Ranking 7">7</span>
364
- <a href="https://github.com/Ebazhanov/linkedin-skill-assessments-quizzes" target="_blank" title="Ebazhanov/linkedin-skill-assessments-quizzes">Ebazhanov/linkedin-skill-assessments-quizzes</a>
386
+ <a href="https://github.com/TencentARC/GFPGAN" target="_blank" title="TencentARC/GFPGAN">TencentARC/GFPGAN</a>
365
387
  </div>
366
388
  <div class="sub-title followers">
367
389
 
390
+ <a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
391
+ <span style="background-color: #3572A5;"></span>Python
392
+ </a>
393
+
368
394
  <span class="star" title="Stargazers Count">
369
395
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
370
396
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
371
397
  </svg>
372
- <span>11663</span>
398
+ <span>18609</span>
373
399
  </span>
374
400
  <span class="star" title="Repo Forked">
375
401
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
376
402
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
377
403
  </path>
378
404
  </svg>
379
- <span>6602</span>
405
+ <span>2859</span>
380
406
  </span>
381
407
  <span class="star">
382
408
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
383
409
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
384
410
  </svg>
385
- <span>1061 stars this week</span>
411
+ <span>471 stars this week</span>
386
412
  </span>
387
413
  </div>
388
414
  <div class="details">
@@ -395,32 +421,32 @@
395
421
  <div class="info">
396
422
  <div class="rank">
397
423
  <span title="Ranking 8">8</span>
398
- <a href="https://github.com/type-challenges/type-challenges" target="_blank" title="type-challenges/type-challenges">type-challenges/type-challenges</a>
424
+ <a href="https://github.com/hwdsl2/setup-ipsec-vpn" target="_blank" title="hwdsl2/setup-ipsec-vpn">hwdsl2/setup-ipsec-vpn</a>
399
425
  </div>
400
426
  <div class="sub-title followers">
401
427
 
402
- <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
403
- <span style="background-color: #2b7489;"></span>TypeScript
428
+ <a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
429
+ <span style="background-color: #89e051;"></span>Shell
404
430
  </a>
405
431
 
406
432
  <span class="star" title="Stargazers Count">
407
433
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
408
434
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
409
435
  </svg>
410
- <span>14365</span>
436
+ <span>18164</span>
411
437
  </span>
412
438
  <span class="star" title="Repo Forked">
413
439
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
414
440
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
415
441
  </path>
416
442
  </svg>
417
- <span>1079</span>
443
+ <span>4976</span>
418
444
  </span>
419
445
  <span class="star">
420
446
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
421
447
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
422
448
  </svg>
423
- <span>514 stars this week</span>
449
+ <span>357 stars this week</span>
424
450
  </span>
425
451
  </div>
426
452
  <div class="details">
@@ -433,32 +459,32 @@
433
459
  <div class="info">
434
460
  <div class="rank">
435
461
  <span title="Ranking 9">9</span>
436
- <a href="https://github.com/cypress-io/cypress" target="_blank" title="cypress-io/cypress">cypress-io/cypress</a>
462
+ <a href="https://github.com/wbkd/react-flow" target="_blank" title="wbkd/react-flow">wbkd/react-flow</a>
437
463
  </div>
438
464
  <div class="sub-title followers">
439
465
 
440
- <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
441
- <span style="background-color: #f1e05a;"></span>JavaScript
466
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
467
+ <span style="background-color: #2b7489;"></span>TypeScript
442
468
  </a>
443
469
 
444
470
  <span class="star" title="Stargazers Count">
445
471
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
446
472
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
447
473
  </svg>
448
- <span>37353</span>
474
+ <span>9663</span>
449
475
  </span>
450
476
  <span class="star" title="Repo Forked">
451
477
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
452
478
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
453
479
  </path>
454
480
  </svg>
455
- <span>2243</span>
481
+ <span>612</span>
456
482
  </span>
457
483
  <span class="star">
458
484
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
459
485
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
460
486
  </svg>
461
- <span>480 stars this week</span>
487
+ <span>212 stars this week</span>
462
488
  </span>
463
489
  </div>
464
490
  <div class="details">
@@ -471,32 +497,32 @@
471
497
  <div class="info">
472
498
  <div class="rank">
473
499
  <span title="Ranking 10">10</span>
474
- <a href="https://github.com/hwdsl2/setup-ipsec-vpn" target="_blank" title="hwdsl2/setup-ipsec-vpn">hwdsl2/setup-ipsec-vpn</a>
500
+ <a href="https://github.com/Rapptz/discord.py" target="_blank" title="Rapptz/discord.py">Rapptz/discord.py</a>
475
501
  </div>
476
502
  <div class="sub-title followers">
477
503
 
478
- <a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
479
- <span style="background-color: #89e051;"></span>Shell
504
+ <a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
505
+ <span style="background-color: #3572A5;"></span>Python
480
506
  </a>
481
507
 
482
508
  <span class="star" title="Stargazers Count">
483
509
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
484
510
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
485
511
  </svg>
486
- <span>18103</span>
512
+ <span>9973</span>
487
513
  </span>
488
514
  <span class="star" title="Repo Forked">
489
515
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
490
516
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
491
517
  </path>
492
518
  </svg>
493
- <span>4960</span>
519
+ <span>3251</span>
494
520
  </span>
495
521
  <span class="star">
496
522
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
497
523
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
498
524
  </svg>
499
- <span>364 stars this week</span>
525
+ <span>138 stars this week</span>
500
526
  </span>
501
527
  </div>
502
528
  <div class="details">
@@ -509,32 +535,32 @@
509
535
  <div class="info">
510
536
  <div class="rank">
511
537
  <span title="Ranking 11">11</span>
512
- <a href="https://github.com/huggingface/transformers" target="_blank" title="huggingface/transformers">huggingface/transformers</a>
538
+ <a href="https://github.com/gothinkster/realworld" target="_blank" title="gothinkster/realworld">gothinkster/realworld</a>
513
539
  </div>
514
540
  <div class="sub-title followers">
515
541
 
516
- <a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
517
- <span style="background-color: #3572A5;"></span>Python
542
+ <a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
543
+ <span style="background-color: #89e051;"></span>Shell
518
544
  </a>
519
545
 
520
546
  <span class="star" title="Stargazers Count">
521
547
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
522
548
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
523
549
  </svg>
524
- <span>59460</span>
550
+ <span>64759</span>
525
551
  </span>
526
552
  <span class="star" title="Repo Forked">
527
553
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
528
554
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
529
555
  </path>
530
556
  </svg>
531
- <span>14087</span>
557
+ <span>5962</span>
532
558
  </span>
533
559
  <span class="star">
534
560
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
535
561
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
536
562
  </svg>
537
- <span>398 stars this week</span>
563
+ <span>330 stars this week</span>
538
564
  </span>
539
565
  </div>
540
566
  <div class="details">
@@ -547,32 +573,32 @@
547
573
  <div class="info">
548
574
  <div class="rank">
549
575
  <span title="Ranking 12">12</span>
550
- <a href="https://github.com/gin-gonic/gin" target="_blank" title="gin-gonic/gin">gin-gonic/gin</a>
576
+ <a href="https://github.com/SergioBenitez/Rocket" target="_blank" title="SergioBenitez/Rocket">SergioBenitez/Rocket</a>
551
577
  </div>
552
578
  <div class="sub-title followers">
553
579
 
554
- <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
555
- <span style="background-color: #00ADD8;"></span>Go
580
+ <a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
581
+ <span style="background-color: #dea584;"></span>Rust
556
582
  </a>
557
583
 
558
584
  <span class="star" title="Stargazers Count">
559
585
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
560
586
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
561
587
  </svg>
562
- <span>56532</span>
588
+ <span>16748</span>
563
589
  </span>
564
590
  <span class="star" title="Repo Forked">
565
591
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
566
592
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
567
593
  </path>
568
594
  </svg>
569
- <span>6399</span>
595
+ <span>1176</span>
570
596
  </span>
571
597
  <span class="star">
572
598
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
573
599
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
574
600
  </svg>
575
- <span>283 stars this week</span>
601
+ <span>267 stars this week</span>
576
602
  </span>
577
603
  </div>
578
604
  <div class="details">
@@ -585,32 +611,32 @@
585
611
  <div class="info">
586
612
  <div class="rank">
587
613
  <span title="Ranking 13">13</span>
588
- <a href="https://github.com/ValdikSS/GoodbyeDPI" target="_blank" title="ValdikSS/GoodbyeDPI">ValdikSS/GoodbyeDPI</a>
614
+ <a href="https://github.com/jackfrued/Python-100-Days" target="_blank" title="jackfrued/Python-100-Days">jackfrued/Python-100-Days</a>
589
615
  </div>
590
616
  <div class="sub-title followers">
591
617
 
592
- <a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
593
- <span style="background-color: #555555;"></span>C
618
+ <a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
619
+ <span style="background-color: #3572A5;"></span>Python
594
620
  </a>
595
621
 
596
622
  <span class="star" title="Stargazers Count">
597
623
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
598
624
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
599
625
  </svg>
600
- <span>5820</span>
626
+ <span>116062</span>
601
627
  </span>
602
628
  <span class="star" title="Repo Forked">
603
629
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
604
630
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
605
631
  </path>
606
632
  </svg>
607
- <span>633</span>
633
+ <span>44885</span>
608
634
  </span>
609
635
  <span class="star">
610
636
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
611
637
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
612
638
  </svg>
613
- <span>142 stars this week</span>
639
+ <span>480 stars this week</span>
614
640
  </span>
615
641
  </div>
616
642
  <div class="details">
@@ -623,32 +649,32 @@
623
649
  <div class="info">
624
650
  <div class="rank">
625
651
  <span title="Ranking 14">14</span>
626
- <a href="https://github.com/telegramdesktop/tdesktop" target="_blank" title="telegramdesktop/tdesktop">telegramdesktop/tdesktop</a>
652
+ <a href="https://github.com/samber/lo" target="_blank" title="samber/lo">samber/lo</a>
627
653
  </div>
628
654
  <div class="sub-title followers">
629
655
 
630
- <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
631
- <span style="background-color: #f34b7d;"></span>C++
656
+ <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
657
+ <span style="background-color: #00ADD8;"></span>Go
632
658
  </a>
633
659
 
634
660
  <span class="star" title="Stargazers Count">
635
661
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
636
662
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
637
663
  </svg>
638
- <span>18276</span>
664
+ <span>3704</span>
639
665
  </span>
640
666
  <span class="star" title="Repo Forked">
641
667
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
642
668
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
643
669
  </path>
644
670
  </svg>
645
- <span>3942</span>
671
+ <span>94</span>
646
672
  </span>
647
673
  <span class="star">
648
674
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
649
675
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
650
676
  </svg>
651
- <span>95 stars this week</span>
677
+ <span>779 stars this week</span>
652
678
  </span>
653
679
  </div>
654
680
  <div class="details">
@@ -661,32 +687,32 @@
661
687
  <div class="info">
662
688
  <div class="rank">
663
689
  <span title="Ranking 15">15</span>
664
- <a href="https://github.com/samber/lo" target="_blank" title="samber/lo">samber/lo</a>
690
+ <a href="https://github.com/excalidraw/excalidraw" target="_blank" title="excalidraw/excalidraw">excalidraw/excalidraw</a>
665
691
  </div>
666
692
  <div class="sub-title followers">
667
693
 
668
- <a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
669
- <span style="background-color: #00ADD8;"></span>Go
694
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
695
+ <span style="background-color: #2b7489;"></span>TypeScript
670
696
  </a>
671
697
 
672
698
  <span class="star" title="Stargazers Count">
673
699
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
674
700
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
675
701
  </svg>
676
- <span>3275</span>
702
+ <span>27750</span>
677
703
  </span>
678
704
  <span class="star" title="Repo Forked">
679
705
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
680
706
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
681
707
  </path>
682
708
  </svg>
683
- <span>80</span>
709
+ <span>2174</span>
684
710
  </span>
685
711
  <span class="star">
686
712
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
687
713
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
688
714
  </svg>
689
- <span>602 stars this week</span>
715
+ <span>410 stars this week</span>
690
716
  </span>
691
717
  </div>
692
718
  <div class="details">
@@ -699,28 +725,32 @@
699
725
  <div class="info">
700
726
  <div class="rank">
701
727
  <span title="Ranking 16">16</span>
702
- <a href="https://github.com/GorvGoyl/Clone-Wars" target="_blank" title="GorvGoyl/Clone-Wars">GorvGoyl/Clone-Wars</a>
728
+ <a href="https://github.com/PowerShell/PowerShell" target="_blank" title="PowerShell/PowerShell">PowerShell/PowerShell</a>
703
729
  </div>
704
730
  <div class="sub-title followers">
705
731
 
732
+ <a class="language" target="_blank" href="https://github.com/topics/c#" title="Programming Language C#">
733
+ <span style="background-color: #178600;"></span>C#
734
+ </a>
735
+
706
736
  <span class="star" title="Stargazers Count">
707
737
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
708
738
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
709
739
  </svg>
710
- <span>14943</span>
740
+ <span>32484</span>
711
741
  </span>
712
742
  <span class="star" title="Repo Forked">
713
743
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
714
744
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
715
745
  </path>
716
746
  </svg>
717
- <span>1227</span>
747
+ <span>5343</span>
718
748
  </span>
719
749
  <span class="star">
720
750
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
721
751
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
722
752
  </svg>
723
- <span>1905 stars this week</span>
753
+ <span>298 stars this week</span>
724
754
  </span>
725
755
  </div>
726
756
  <div class="details">
@@ -733,32 +763,32 @@
733
763
  <div class="info">
734
764
  <div class="rank">
735
765
  <span title="Ranking 17">17</span>
736
- <a href="https://github.com/actions/virtual-environments" target="_blank" title="actions/virtual-environments">actions/virtual-environments</a>
766
+ <a href="https://github.com/tensorflow/tensorflow" target="_blank" title="tensorflow/tensorflow">tensorflow/tensorflow</a>
737
767
  </div>
738
768
  <div class="sub-title followers">
739
769
 
740
- <a class="language" target="_blank" href="https://github.com/topics/powershell" title="Programming Language PowerShell">
741
- <span style="background-color: #012456;"></span>PowerShell
770
+ <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
771
+ <span style="background-color: #f34b7d;"></span>C++
742
772
  </a>
743
773
 
744
774
  <span class="star" title="Stargazers Count">
745
775
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
746
776
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
747
777
  </svg>
748
- <span>5305</span>
778
+ <span>163696</span>
749
779
  </span>
750
780
  <span class="star" title="Repo Forked">
751
781
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
752
782
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
753
783
  </path>
754
784
  </svg>
755
- <span>1950</span>
785
+ <span>86504</span>
756
786
  </span>
757
787
  <span class="star">
758
788
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
759
789
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
760
790
  </svg>
761
- <span>81 stars this week</span>
791
+ <span>248 stars this week</span>
762
792
  </span>
763
793
  </div>
764
794
  <div class="details">
@@ -783,20 +813,20 @@
783
813
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
784
814
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
785
815
  </svg>
786
- <span>5043</span>
816
+ <span>5269</span>
787
817
  </span>
788
818
  <span class="star" title="Repo Forked">
789
819
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
790
820
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
791
821
  </path>
792
822
  </svg>
793
- <span>954</span>
823
+ <span>1005</span>
794
824
  </span>
795
825
  <span class="star">
796
826
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
797
827
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
798
828
  </svg>
799
- <span>597 stars this week</span>
829
+ <span>797 stars this week</span>
800
830
  </span>
801
831
  </div>
802
832
  <div class="details">
@@ -809,32 +839,32 @@
809
839
  <div class="info">
810
840
  <div class="rank">
811
841
  <span title="Ranking 19">19</span>
812
- <a href="https://github.com/Arinerron/CVE-2022-0847-DirtyPipe-Exploit" target="_blank" title="Arinerron/CVE-2022-0847-DirtyPipe-Exploit">Arinerron/CVE-2022-0847-DirtyPipe-Exploit</a>
842
+ <a href="https://github.com/YTVanced/VancedManager" target="_blank" title="YTVanced/VancedManager">YTVanced/VancedManager</a>
813
843
  </div>
814
844
  <div class="sub-title followers">
815
845
 
816
- <a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
817
- <span style="background-color: #555555;"></span>C
846
+ <a class="language" target="_blank" href="https://github.com/topics/kotlin" title="Programming Language Kotlin">
847
+ <span style="background-color: #A97BFF;"></span>Kotlin
818
848
  </a>
819
849
 
820
850
  <span class="star" title="Stargazers Count">
821
851
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
822
852
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
823
853
  </svg>
824
- <span>840</span>
854
+ <span>6943</span>
825
855
  </span>
826
856
  <span class="star" title="Repo Forked">
827
857
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
828
858
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
829
859
  </path>
830
860
  </svg>
831
- <span>168</span>
861
+ <span>1062</span>
832
862
  </span>
833
863
  <span class="star">
834
864
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
835
865
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
836
866
  </svg>
837
- <span>310 stars this week</span>
867
+ <span>624 stars this week</span>
838
868
  </span>
839
869
  </div>
840
870
  <div class="details">
@@ -847,7 +877,7 @@
847
877
  <div class="info">
848
878
  <div class="rank">
849
879
  <span title="Ranking 20">20</span>
850
- <a href="https://github.com/jwasham/coding-interview-university" target="_blank" title="jwasham/coding-interview-university">jwasham/coding-interview-university</a>
880
+ <a href="https://github.com/GorvGoyl/Clone-Wars" target="_blank" title="GorvGoyl/Clone-Wars">GorvGoyl/Clone-Wars</a>
851
881
  </div>
852
882
  <div class="sub-title followers">
853
883
 
@@ -855,20 +885,20 @@
855
885
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
856
886
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
857
887
  </svg>
858
- <span>214113</span>
888
+ <span>15062</span>
859
889
  </span>
860
890
  <span class="star" title="Repo Forked">
861
891
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
862
892
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
863
893
  </path>
864
894
  </svg>
865
- <span>58060</span>
895
+ <span>1235</span>
866
896
  </span>
867
897
  <span class="star">
868
898
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
869
899
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
870
900
  </svg>
871
- <span>1916 stars this week</span>
901
+ <span>1353 stars this week</span>
872
902
  </span>
873
903
  </div>
874
904
  <div class="details">
@@ -881,32 +911,32 @@
881
911
  <div class="info">
882
912
  <div class="rank">
883
913
  <span title="Ranking 21">21</span>
884
- <a href="https://github.com/YTVanced/VancedManager" target="_blank" title="YTVanced/VancedManager">YTVanced/VancedManager</a>
914
+ <a href="https://github.com/backstage/backstage" target="_blank" title="backstage/backstage">backstage/backstage</a>
885
915
  </div>
886
916
  <div class="sub-title followers">
887
917
 
888
- <a class="language" target="_blank" href="https://github.com/topics/kotlin" title="Programming Language Kotlin">
889
- <span style="background-color: #A97BFF;"></span>Kotlin
918
+ <a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
919
+ <span style="background-color: #2b7489;"></span>TypeScript
890
920
  </a>
891
921
 
892
922
  <span class="star" title="Stargazers Count">
893
923
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
894
924
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
895
925
  </svg>
896
- <span>6853</span>
926
+ <span>15587</span>
897
927
  </span>
898
928
  <span class="star" title="Repo Forked">
899
929
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
900
930
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
901
931
  </path>
902
932
  </svg>
903
- <span>1011</span>
933
+ <span>2270</span>
904
934
  </span>
905
935
  <span class="star">
906
936
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
907
937
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
908
938
  </svg>
909
- <span>547 stars this week</span>
939
+ <span>180 stars this week</span>
910
940
  </span>
911
941
  </div>
912
942
  <div class="details">
@@ -919,32 +949,32 @@
919
949
  <div class="info">
920
950
  <div class="rank">
921
951
  <span title="Ranking 22">22</span>
922
- <a href="https://github.com/skyline-emu/skyline" target="_blank" title="skyline-emu/skyline">skyline-emu/skyline</a>
952
+ <a href="https://github.com/Yin-Hongwei/music-website" target="_blank" title="Yin-Hongwei/music-website">Yin-Hongwei/music-website</a>
923
953
  </div>
924
954
  <div class="sub-title followers">
925
955
 
926
- <a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
927
- <span style="background-color: #f34b7d;"></span>C++
956
+ <a class="language" target="_blank" href="https://github.com/topics/vue" title="Programming Language Vue">
957
+ <span style="background-color: #41b883;"></span>Vue
928
958
  </a>
929
959
 
930
960
  <span class="star" title="Stargazers Count">
931
961
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
932
962
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
933
963
  </svg>
934
- <span>4410</span>
964
+ <span>2252</span>
935
965
  </span>
936
966
  <span class="star" title="Repo Forked">
937
967
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
938
968
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
939
969
  </path>
940
970
  </svg>
941
- <span>734</span>
971
+ <span>774</span>
942
972
  </span>
943
973
  <span class="star">
944
974
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
945
975
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
946
976
  </svg>
947
- <span>570 stars this week</span>
977
+ <span>221 stars this week</span>
948
978
  </span>
949
979
  </div>
950
980
  <div class="details">
@@ -957,28 +987,32 @@
957
987
  <div class="info">
958
988
  <div class="rank">
959
989
  <span title="Ranking 23">23</span>
960
- <a href="https://github.com/jlevy/the-art-of-command-line" target="_blank" title="jlevy/the-art-of-command-line">jlevy/the-art-of-command-line</a>
990
+ <a href="https://github.com/LukeSmithxyz/voidrice" target="_blank" title="LukeSmithxyz/voidrice">LukeSmithxyz/voidrice</a>
961
991
  </div>
962
992
  <div class="sub-title followers">
963
993
 
994
+ <a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
995
+ <span style="background-color: #89e051;"></span>Shell
996
+ </a>
997
+
964
998
  <span class="star" title="Stargazers Count">
965
999
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
966
1000
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
967
1001
  </svg>
968
- <span>104138</span>
1002
+ <span>3545</span>
969
1003
  </span>
970
1004
  <span class="star" title="Repo Forked">
971
1005
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
972
1006
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
973
1007
  </path>
974
1008
  </svg>
975
- <span>11121</span>
1009
+ <span>1131</span>
976
1010
  </span>
977
1011
  <span class="star">
978
1012
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
979
1013
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
980
1014
  </svg>
981
- <span>936 stars this week</span>
1015
+ <span>99 stars this week</span>
982
1016
  </span>
983
1017
  </div>
984
1018
  <div class="details">
@@ -991,32 +1025,32 @@
991
1025
  <div class="info">
992
1026
  <div class="rank">
993
1027
  <span title="Ranking 24">24</span>
994
- <a href="https://github.com/hpcaitech/ColossalAI" target="_blank" title="hpcaitech/ColossalAI">hpcaitech/ColossalAI</a>
1028
+ <a href="https://github.com/squad303/squad303app" target="_blank" title="squad303/squad303app">squad303/squad303app</a>
995
1029
  </div>
996
1030
  <div class="sub-title followers">
997
1031
 
998
- <a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
999
- <span style="background-color: #3572A5;"></span>Python
1032
+ <a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
1033
+ <span style="background-color: #f1e05a;"></span>JavaScript
1000
1034
  </a>
1001
1035
 
1002
1036
  <span class="star" title="Stargazers Count">
1003
1037
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1004
1038
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1005
1039
  </svg>
1006
- <span>1475</span>
1040
+ <span>193</span>
1007
1041
  </span>
1008
1042
  <span class="star" title="Repo Forked">
1009
1043
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
1010
1044
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
1011
1045
  </path>
1012
1046
  </svg>
1013
- <span>171</span>
1047
+ <span>32</span>
1014
1048
  </span>
1015
1049
  <span class="star">
1016
1050
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1017
1051
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1018
1052
  </svg>
1019
- <span>498 stars this week</span>
1053
+ <span>125 stars this week</span>
1020
1054
  </span>
1021
1055
  </div>
1022
1056
  <div class="details">
@@ -1029,7 +1063,7 @@
1029
1063
  <div class="info">
1030
1064
  <div class="rank">
1031
1065
  <span title="Ranking 25">25</span>
1032
- <a href="https://github.com/antfu/vscode-file-nesting-config" target="_blank" title="antfu/vscode-file-nesting-config">antfu/vscode-file-nesting-config</a>
1066
+ <a href="https://github.com/giltayar/proposal-types-as-comments" target="_blank" title="giltayar/proposal-types-as-comments">giltayar/proposal-types-as-comments</a>
1033
1067
  </div>
1034
1068
  <div class="sub-title followers">
1035
1069
 
@@ -1041,20 +1075,20 @@
1041
1075
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1042
1076
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1043
1077
  </svg>
1044
- <span>1170</span>
1078
+ <span>2104</span>
1045
1079
  </span>
1046
1080
  <span class="star" title="Repo Forked">
1047
1081
  <svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
1048
1082
  <path fill-rule="evenodd" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z">
1049
1083
  </path>
1050
1084
  </svg>
1051
- <span>66</span>
1085
+ <span>22</span>
1052
1086
  </span>
1053
1087
  <span class="star">
1054
1088
  <svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
1055
1089
  <path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
1056
1090
  </svg>
1057
- <span>417 stars this week</span>
1091
+ <span>501 stars this week</span>
1058
1092
  </span>
1059
1093
  </div>
1060
1094
  <div class="details">
@@ -1079,7 +1113,7 @@
1079
1113
  <img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
1080
1114
  </a>
1081
1115
  </div>
1082
- <div class="time">Last cache created on 2022/3/17 by Github API v3.</div>
1116
+ <div class="time">Last cache created on 2022/3/20 by Github API v3.</div>
1083
1117
  Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
1084
1118
  </div>
1085
1119
  </body>