@wcj/github-rank 22.7.3 → 22.7.6
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/dist/repos.json +35825 -35837
- package/dist/sifou-daily.json +96 -6
- package/dist/sifou-monthly.json +109 -109
- package/dist/sifou-weekly.json +153 -144
- package/dist/toutiao-30.json +84 -84
- package/dist/toutiao-7.json +131 -131
- package/dist/toutiao-90.json +60 -60
- package/dist/trending-daily.json +173 -173
- package/dist/trending-monthly.json +155 -155
- package/dist/trending-weekly.json +167 -167
- package/dist/users.china.json +2558 -2558
- package/dist/users.json +3646 -3646
- package/package.json +1 -1
- package/web/36kr.html +7 -7
- package/web/data/repos.json +35825 -35837
- package/web/data/sifou-daily.json +96 -6
- package/web/data/sifou-monthly.json +109 -109
- package/web/data/sifou-weekly.json +153 -144
- package/web/data/toutiao-30.json +84 -84
- package/web/data/toutiao-7.json +131 -131
- package/web/data/toutiao-90.json +60 -60
- package/web/data/trending-daily.json +173 -173
- package/web/data/trending-monthly.json +155 -155
- package/web/data/trending-weekly.json +167 -167
- package/web/data/users.china.json +2558 -2558
- package/web/data/users.json +3646 -3646
- package/web/index.html +2238 -2234
- package/web/repos.html +4329 -4319
- package/web/sifou-daily.html +295 -14
- package/web/sifou-monthly.html +137 -136
- package/web/sifou-weekly.html +161 -132
- package/web/toutiao-30.html +107 -104
- package/web/toutiao-7.html +100 -97
- package/web/toutiao-90.html +94 -91
- package/web/trending-monthly.html +156 -151
- package/web/trending-weekly.html +172 -159
- package/web/trending.html +171 -166
- package/web/users.china.html +1855 -1851
package/web/trending-weekly.html
CHANGED
|
@@ -75,22 +75,6 @@
|
|
|
75
75
|
.list li > div.info a:hover i { color: #333; }
|
|
76
76
|
.list li div.sub-title { color: var(--color-theme-text); margin: 4px 0 0 0; }
|
|
77
77
|
.list li div.avatar { padding-right: 10px; }
|
|
78
|
-
|
|
79
|
-
.list li a.language,
|
|
80
|
-
.list li span.star { height: 18px; background: var(--color-neutral-muted); display: inline-block; padding: 2px 4px; border-radius: 3px; }
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
.list .select { }
|
|
84
|
-
.list .select .active { color: var(--color-theme-text); font-weight: bold; border-bottom: 1px dotted var(--color-border);}
|
|
85
|
-
|
|
86
|
-
|
|
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); }
|
|
89
|
-
.list li div.followers * { vertical-align: middle; }
|
|
90
|
-
.list li div.followers svg { vertical-align: text-top; display: inline-block; fill: #9E9E9E; width: 14px; height: 14px; }
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
78
|
@keyframes octocat-wave {
|
|
95
79
|
0%,100%{-webkit-transform:rotate(0); transform:rotate(0);}
|
|
96
80
|
20%,60%{-webkit-transform:rotate(-25deg); transform:rotate(-25deg);}
|
|
@@ -100,6 +84,27 @@
|
|
|
100
84
|
.title { padding-top: 16px; font-size: 21px; }
|
|
101
85
|
}
|
|
102
86
|
</style>
|
|
87
|
+
|
|
88
|
+
<style>
|
|
89
|
+
.list li a.language,
|
|
90
|
+
.list li span.star { height: 18px; background: var(--color-neutral-muted); display: inline-block; padding: 2px 4px; border-radius: 3px; }
|
|
91
|
+
</style>
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
<style>
|
|
95
|
+
.list .select .active { color: var(--color-theme-text); font-weight: bold; border-bottom: 1px dotted var(--color-border);}
|
|
96
|
+
</style>
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<style>
|
|
100
|
+
.list li div.followers { font-size: 12px; color: var(--color-fg-muted); white-space:nowrap; padding-top: 2px; border-radius: 3px; }
|
|
101
|
+
.list li div.followers a { color: var(--color-fg-muted); }
|
|
102
|
+
.list li div.followers * { vertical-align: middle; }
|
|
103
|
+
.list li div.followers svg { vertical-align: text-top; display: inline-block; fill: #9E9E9E; width: 14px; height: 14px; }
|
|
104
|
+
</style>
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
103
108
|
<script src="https://unpkg.com/@wcj/dark-mode"></script>
|
|
104
109
|
</head>
|
|
105
110
|
<body>
|
|
@@ -124,7 +129,7 @@
|
|
|
124
129
|
|
|
125
130
|
|
|
126
131
|
</h1>
|
|
127
|
-
<div class="time">Last cache created on 2022/7/
|
|
132
|
+
<div class="time">Last cache created on 2022/7/6 by
|
|
128
133
|
|
|
129
134
|
|
|
130
135
|
|
|
@@ -155,32 +160,32 @@
|
|
|
155
160
|
<div class="info">
|
|
156
161
|
<div class="rank">
|
|
157
162
|
<span title="Ranking 1">1</span>
|
|
158
|
-
<a href="https://github.com/
|
|
163
|
+
<a href="https://github.com/denoland/fresh" target="_blank" title="denoland/fresh">denoland/fresh</a>
|
|
159
164
|
</div>
|
|
160
165
|
<div class="sub-title followers">
|
|
161
166
|
|
|
162
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
163
|
-
<span style="background-color: #
|
|
167
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
168
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
164
169
|
</a>
|
|
165
170
|
|
|
166
171
|
<span class="star" title="Stargazers Count">
|
|
167
172
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
168
173
|
<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>
|
|
169
174
|
</svg>
|
|
170
|
-
<span>
|
|
175
|
+
<span>6751</span>
|
|
171
176
|
</span>
|
|
172
177
|
<span class="star" title="Repo Forked">
|
|
173
178
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
174
179
|
<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">
|
|
175
180
|
</path>
|
|
176
181
|
</svg>
|
|
177
|
-
<span>
|
|
182
|
+
<span>212</span>
|
|
178
183
|
</span>
|
|
179
184
|
<span class="star">
|
|
180
185
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
181
186
|
<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>
|
|
182
187
|
</svg>
|
|
183
|
-
<span>
|
|
188
|
+
<span>3892 stars this week</span>
|
|
184
189
|
</span>
|
|
185
190
|
</div>
|
|
186
191
|
<div class="details">
|
|
@@ -193,32 +198,32 @@
|
|
|
193
198
|
<div class="info">
|
|
194
199
|
<div class="rank">
|
|
195
200
|
<span title="Ranking 2">2</span>
|
|
196
|
-
<a href="https://github.com/
|
|
201
|
+
<a href="https://github.com/WhaleFell/SMSBoom" target="_blank" title="WhaleFell/SMSBoom">WhaleFell/SMSBoom</a>
|
|
197
202
|
</div>
|
|
198
203
|
<div class="sub-title followers">
|
|
199
204
|
|
|
200
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
201
|
-
<span style="background-color: #
|
|
205
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
206
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
202
207
|
</a>
|
|
203
208
|
|
|
204
209
|
<span class="star" title="Stargazers Count">
|
|
205
210
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
206
211
|
<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>
|
|
207
212
|
</svg>
|
|
208
|
-
<span>
|
|
213
|
+
<span>2811</span>
|
|
209
214
|
</span>
|
|
210
215
|
<span class="star" title="Repo Forked">
|
|
211
216
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
212
217
|
<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">
|
|
213
218
|
</path>
|
|
214
219
|
</svg>
|
|
215
|
-
<span>
|
|
220
|
+
<span>649</span>
|
|
216
221
|
</span>
|
|
217
222
|
<span class="star">
|
|
218
223
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
219
224
|
<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>
|
|
220
225
|
</svg>
|
|
221
|
-
<span>
|
|
226
|
+
<span>1803 stars this week</span>
|
|
222
227
|
</span>
|
|
223
228
|
</div>
|
|
224
229
|
<div class="details">
|
|
@@ -231,32 +236,32 @@
|
|
|
231
236
|
<div class="info">
|
|
232
237
|
<div class="rank">
|
|
233
238
|
<span title="Ranking 3">3</span>
|
|
234
|
-
<a href="https://github.com/
|
|
239
|
+
<a href="https://github.com/meituan/YOLOv6" target="_blank" title="meituan/YOLOv6">meituan/YOLOv6</a>
|
|
235
240
|
</div>
|
|
236
241
|
<div class="sub-title followers">
|
|
237
242
|
|
|
238
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
239
|
-
<span style="background-color: #
|
|
243
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
244
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
240
245
|
</a>
|
|
241
246
|
|
|
242
247
|
<span class="star" title="Stargazers Count">
|
|
243
248
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
244
249
|
<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>
|
|
245
250
|
</svg>
|
|
246
|
-
<span>
|
|
251
|
+
<span>3123</span>
|
|
247
252
|
</span>
|
|
248
253
|
<span class="star" title="Repo Forked">
|
|
249
254
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
250
255
|
<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">
|
|
251
256
|
</path>
|
|
252
257
|
</svg>
|
|
253
|
-
<span>
|
|
258
|
+
<span>392</span>
|
|
254
259
|
</span>
|
|
255
260
|
<span class="star">
|
|
256
261
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
257
262
|
<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>
|
|
258
263
|
</svg>
|
|
259
|
-
<span>
|
|
264
|
+
<span>904 stars this week</span>
|
|
260
265
|
</span>
|
|
261
266
|
</div>
|
|
262
267
|
<div class="details">
|
|
@@ -269,32 +274,32 @@
|
|
|
269
274
|
<div class="info">
|
|
270
275
|
<div class="rank">
|
|
271
276
|
<span title="Ranking 4">4</span>
|
|
272
|
-
<a href="https://github.com/
|
|
277
|
+
<a href="https://github.com/delta-io/delta" target="_blank" title="delta-io/delta">delta-io/delta</a>
|
|
273
278
|
</div>
|
|
274
279
|
<div class="sub-title followers">
|
|
275
280
|
|
|
276
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
277
|
-
<span style="background-color: #
|
|
281
|
+
<a class="language" target="_blank" href="https://github.com/topics/scala" title="Programming Language Scala">
|
|
282
|
+
<span style="background-color: #c22d40;"></span>Scala
|
|
278
283
|
</a>
|
|
279
284
|
|
|
280
285
|
<span class="star" title="Stargazers Count">
|
|
281
286
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
282
287
|
<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>
|
|
283
288
|
</svg>
|
|
284
|
-
<span>
|
|
289
|
+
<span>4853</span>
|
|
285
290
|
</span>
|
|
286
291
|
<span class="star" title="Repo Forked">
|
|
287
292
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
288
293
|
<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">
|
|
289
294
|
</path>
|
|
290
295
|
</svg>
|
|
291
|
-
<span>
|
|
296
|
+
<span>1098</span>
|
|
292
297
|
</span>
|
|
293
298
|
<span class="star">
|
|
294
299
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
295
300
|
<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>
|
|
296
301
|
</svg>
|
|
297
|
-
<span>
|
|
302
|
+
<span>369 stars this week</span>
|
|
298
303
|
</span>
|
|
299
304
|
</div>
|
|
300
305
|
<div class="details">
|
|
@@ -307,32 +312,32 @@
|
|
|
307
312
|
<div class="info">
|
|
308
313
|
<div class="rank">
|
|
309
314
|
<span title="Ranking 5">5</span>
|
|
310
|
-
<a href="https://github.com/
|
|
315
|
+
<a href="https://github.com/insidegui/VirtualBuddy" target="_blank" title="insidegui/VirtualBuddy">insidegui/VirtualBuddy</a>
|
|
311
316
|
</div>
|
|
312
317
|
<div class="sub-title followers">
|
|
313
318
|
|
|
314
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
315
|
-
<span style="background-color: #
|
|
319
|
+
<a class="language" target="_blank" href="https://github.com/topics/swift" title="Programming Language Swift">
|
|
320
|
+
<span style="background-color: #F05138;"></span>Swift
|
|
316
321
|
</a>
|
|
317
322
|
|
|
318
323
|
<span class="star" title="Stargazers Count">
|
|
319
324
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
320
325
|
<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>
|
|
321
326
|
</svg>
|
|
322
|
-
<span>
|
|
327
|
+
<span>2037</span>
|
|
323
328
|
</span>
|
|
324
329
|
<span class="star" title="Repo Forked">
|
|
325
330
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
326
331
|
<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">
|
|
327
332
|
</path>
|
|
328
333
|
</svg>
|
|
329
|
-
<span>
|
|
334
|
+
<span>35</span>
|
|
330
335
|
</span>
|
|
331
336
|
<span class="star">
|
|
332
337
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
333
338
|
<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>
|
|
334
339
|
</svg>
|
|
335
|
-
<span>
|
|
340
|
+
<span>499 stars this week</span>
|
|
336
341
|
</span>
|
|
337
342
|
</div>
|
|
338
343
|
<div class="details">
|
|
@@ -345,32 +350,32 @@
|
|
|
345
350
|
<div class="info">
|
|
346
351
|
<div class="rank">
|
|
347
352
|
<span title="Ranking 6">6</span>
|
|
348
|
-
<a href="https://github.com/
|
|
353
|
+
<a href="https://github.com/vim/vim" target="_blank" title="vim/vim">vim/vim</a>
|
|
349
354
|
</div>
|
|
350
355
|
<div class="sub-title followers">
|
|
351
356
|
|
|
352
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
353
|
-
<span style="background-color: #
|
|
357
|
+
<a class="language" target="_blank" href="https://github.com/topics/vimscript" title="Programming Language Vimscript">
|
|
358
|
+
<span style="background-color: #199f4b;"></span>Vimscript
|
|
354
359
|
</a>
|
|
355
360
|
|
|
356
361
|
<span class="star" title="Stargazers Count">
|
|
357
362
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
358
363
|
<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>
|
|
359
364
|
</svg>
|
|
360
|
-
<span>
|
|
365
|
+
<span>27760</span>
|
|
361
366
|
</span>
|
|
362
367
|
<span class="star" title="Repo Forked">
|
|
363
368
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
364
369
|
<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">
|
|
365
370
|
</path>
|
|
366
371
|
</svg>
|
|
367
|
-
<span>
|
|
372
|
+
<span>4262</span>
|
|
368
373
|
</span>
|
|
369
374
|
<span class="star">
|
|
370
375
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
371
376
|
<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>
|
|
372
377
|
</svg>
|
|
373
|
-
<span>
|
|
378
|
+
<span>352 stars this week</span>
|
|
374
379
|
</span>
|
|
375
380
|
</div>
|
|
376
381
|
<div class="details">
|
|
@@ -383,32 +388,32 @@
|
|
|
383
388
|
<div class="info">
|
|
384
389
|
<div class="rank">
|
|
385
390
|
<span title="Ranking 7">7</span>
|
|
386
|
-
<a href="https://github.com/
|
|
391
|
+
<a href="https://github.com/bregman-arie/devops-exercises" target="_blank" title="bregman-arie/devops-exercises">bregman-arie/devops-exercises</a>
|
|
387
392
|
</div>
|
|
388
393
|
<div class="sub-title followers">
|
|
389
394
|
|
|
390
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
391
|
-
<span style="background-color: #
|
|
395
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
396
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
392
397
|
</a>
|
|
393
398
|
|
|
394
399
|
<span class="star" title="Stargazers Count">
|
|
395
400
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
396
401
|
<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>
|
|
397
402
|
</svg>
|
|
398
|
-
<span>
|
|
403
|
+
<span>27587</span>
|
|
399
404
|
</span>
|
|
400
405
|
<span class="star" title="Repo Forked">
|
|
401
406
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
402
407
|
<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">
|
|
403
408
|
</path>
|
|
404
409
|
</svg>
|
|
405
|
-
<span>
|
|
410
|
+
<span>5761</span>
|
|
406
411
|
</span>
|
|
407
412
|
<span class="star">
|
|
408
413
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
409
414
|
<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>
|
|
410
415
|
</svg>
|
|
411
|
-
<span>
|
|
416
|
+
<span>1072 stars this week</span>
|
|
412
417
|
</span>
|
|
413
418
|
</div>
|
|
414
419
|
<div class="details">
|
|
@@ -421,32 +426,28 @@
|
|
|
421
426
|
<div class="info">
|
|
422
427
|
<div class="rank">
|
|
423
428
|
<span title="Ranking 8">8</span>
|
|
424
|
-
<a href="https://github.com/
|
|
429
|
+
<a href="https://github.com/EbookFoundation/free-programming-books" target="_blank" title="EbookFoundation/free-programming-books">EbookFoundation/free-programming-books</a>
|
|
425
430
|
</div>
|
|
426
431
|
<div class="sub-title followers">
|
|
427
432
|
|
|
428
|
-
<a class="language" target="_blank" href="https://github.com/topics/vimscript" title="Programming Language Vimscript">
|
|
429
|
-
<span style="background-color: #199f4b;"></span>Vimscript
|
|
430
|
-
</a>
|
|
431
|
-
|
|
432
433
|
<span class="star" title="Stargazers Count">
|
|
433
434
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
434
435
|
<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>
|
|
435
436
|
</svg>
|
|
436
|
-
<span>
|
|
437
|
+
<span>238408</span>
|
|
437
438
|
</span>
|
|
438
439
|
<span class="star" title="Repo Forked">
|
|
439
440
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
440
441
|
<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">
|
|
441
442
|
</path>
|
|
442
443
|
</svg>
|
|
443
|
-
<span>
|
|
444
|
+
<span>49423</span>
|
|
444
445
|
</span>
|
|
445
446
|
<span class="star">
|
|
446
447
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
447
448
|
<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>
|
|
448
449
|
</svg>
|
|
449
|
-
<span>
|
|
450
|
+
<span>1399 stars this week</span>
|
|
450
451
|
</span>
|
|
451
452
|
</div>
|
|
452
453
|
<div class="details">
|
|
@@ -459,32 +460,32 @@
|
|
|
459
460
|
<div class="info">
|
|
460
461
|
<div class="rank">
|
|
461
462
|
<span title="Ranking 9">9</span>
|
|
462
|
-
<a href="https://github.com/
|
|
463
|
+
<a href="https://github.com/autowarefoundation/autoware" target="_blank" title="autowarefoundation/autoware">autowarefoundation/autoware</a>
|
|
463
464
|
</div>
|
|
464
465
|
<div class="sub-title followers">
|
|
465
466
|
|
|
466
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
467
|
-
<span style="background-color: #
|
|
467
|
+
<a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
|
|
468
|
+
<span style="background-color: #89e051;"></span>Shell
|
|
468
469
|
</a>
|
|
469
470
|
|
|
470
471
|
<span class="star" title="Stargazers Count">
|
|
471
472
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
472
473
|
<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>
|
|
473
474
|
</svg>
|
|
474
|
-
<span>
|
|
475
|
+
<span>5612</span>
|
|
475
476
|
</span>
|
|
476
477
|
<span class="star" title="Repo Forked">
|
|
477
478
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
478
479
|
<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">
|
|
479
480
|
</path>
|
|
480
481
|
</svg>
|
|
481
|
-
<span>
|
|
482
|
+
<span>2164</span>
|
|
482
483
|
</span>
|
|
483
484
|
<span class="star">
|
|
484
485
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
485
486
|
<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>
|
|
486
487
|
</svg>
|
|
487
|
-
<span>
|
|
488
|
+
<span>72 stars this week</span>
|
|
488
489
|
</span>
|
|
489
490
|
</div>
|
|
490
491
|
<div class="details">
|
|
@@ -497,32 +498,32 @@
|
|
|
497
498
|
<div class="info">
|
|
498
499
|
<div class="rank">
|
|
499
500
|
<span title="Ranking 10">10</span>
|
|
500
|
-
<a href="https://github.com/
|
|
501
|
+
<a href="https://github.com/Azure/azureml-examples" target="_blank" title="Azure/azureml-examples">Azure/azureml-examples</a>
|
|
501
502
|
</div>
|
|
502
503
|
<div class="sub-title followers">
|
|
503
504
|
|
|
504
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
505
|
-
<span style="background-color: #
|
|
505
|
+
<a class="language" target="_blank" href="https://github.com/topics/jupyternotebook" title="Programming Language JupyterNotebook">
|
|
506
|
+
<span style="background-color: #DA5B0B;"></span>JupyterNotebook
|
|
506
507
|
</a>
|
|
507
508
|
|
|
508
509
|
<span class="star" title="Stargazers Count">
|
|
509
510
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
510
511
|
<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>
|
|
511
512
|
</svg>
|
|
512
|
-
<span>
|
|
513
|
+
<span>676</span>
|
|
513
514
|
</span>
|
|
514
515
|
<span class="star" title="Repo Forked">
|
|
515
516
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
516
517
|
<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">
|
|
517
518
|
</path>
|
|
518
519
|
</svg>
|
|
519
|
-
<span>
|
|
520
|
+
<span>429</span>
|
|
520
521
|
</span>
|
|
521
522
|
<span class="star">
|
|
522
523
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
523
524
|
<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>
|
|
524
525
|
</svg>
|
|
525
|
-
<span>
|
|
526
|
+
<span>218 stars this week</span>
|
|
526
527
|
</span>
|
|
527
528
|
</div>
|
|
528
529
|
<div class="details">
|
|
@@ -535,7 +536,7 @@
|
|
|
535
536
|
<div class="info">
|
|
536
537
|
<div class="rank">
|
|
537
538
|
<span title="Ranking 11">11</span>
|
|
538
|
-
<a href="https://github.com/
|
|
539
|
+
<a href="https://github.com/Z4nzu/hackingtool" target="_blank" title="Z4nzu/hackingtool">Z4nzu/hackingtool</a>
|
|
539
540
|
</div>
|
|
540
541
|
<div class="sub-title followers">
|
|
541
542
|
|
|
@@ -547,20 +548,20 @@
|
|
|
547
548
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
548
549
|
<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>
|
|
549
550
|
</svg>
|
|
550
|
-
<span>
|
|
551
|
+
<span>19489</span>
|
|
551
552
|
</span>
|
|
552
553
|
<span class="star" title="Repo Forked">
|
|
553
554
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
554
555
|
<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">
|
|
555
556
|
</path>
|
|
556
557
|
</svg>
|
|
557
|
-
<span>
|
|
558
|
+
<span>2391</span>
|
|
558
559
|
</span>
|
|
559
560
|
<span class="star">
|
|
560
561
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
561
562
|
<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>
|
|
562
563
|
</svg>
|
|
563
|
-
<span>
|
|
564
|
+
<span>514 stars this week</span>
|
|
564
565
|
</span>
|
|
565
566
|
</div>
|
|
566
567
|
<div class="details">
|
|
@@ -585,20 +586,20 @@
|
|
|
585
586
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
586
587
|
<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>
|
|
587
588
|
</svg>
|
|
588
|
-
<span>
|
|
589
|
+
<span>3897</span>
|
|
589
590
|
</span>
|
|
590
591
|
<span class="star" title="Repo Forked">
|
|
591
592
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
592
593
|
<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">
|
|
593
594
|
</path>
|
|
594
595
|
</svg>
|
|
595
|
-
<span>
|
|
596
|
+
<span>1022</span>
|
|
596
597
|
</span>
|
|
597
598
|
<span class="star">
|
|
598
599
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
599
600
|
<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>
|
|
600
601
|
</svg>
|
|
601
|
-
<span>
|
|
602
|
+
<span>235 stars this week</span>
|
|
602
603
|
</span>
|
|
603
604
|
</div>
|
|
604
605
|
<div class="details">
|
|
@@ -611,32 +612,32 @@
|
|
|
611
612
|
<div class="info">
|
|
612
613
|
<div class="rank">
|
|
613
614
|
<span title="Ranking 13">13</span>
|
|
614
|
-
<a href="https://github.com/
|
|
615
|
+
<a href="https://github.com/tuyoogame/huatuo" target="_blank" title="tuyoogame/huatuo">tuyoogame/huatuo</a>
|
|
615
616
|
</div>
|
|
616
617
|
<div class="sub-title followers">
|
|
617
618
|
|
|
618
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
619
|
-
<span style="background-color: #
|
|
619
|
+
<a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
|
|
620
|
+
<span style="background-color: #f34b7d;"></span>C++
|
|
620
621
|
</a>
|
|
621
622
|
|
|
622
623
|
<span class="star" title="Stargazers Count">
|
|
623
624
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
624
625
|
<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>
|
|
625
626
|
</svg>
|
|
626
|
-
<span>
|
|
627
|
+
<span>1991</span>
|
|
627
628
|
</span>
|
|
628
629
|
<span class="star" title="Repo Forked">
|
|
629
630
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
630
631
|
<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">
|
|
631
632
|
</path>
|
|
632
633
|
</svg>
|
|
633
|
-
<span>
|
|
634
|
+
<span>355</span>
|
|
634
635
|
</span>
|
|
635
636
|
<span class="star">
|
|
636
637
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
637
638
|
<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>
|
|
638
639
|
</svg>
|
|
639
|
-
<span>
|
|
640
|
+
<span>210 stars this week</span>
|
|
640
641
|
</span>
|
|
641
642
|
</div>
|
|
642
643
|
<div class="details">
|
|
@@ -649,32 +650,32 @@
|
|
|
649
650
|
<div class="info">
|
|
650
651
|
<div class="rank">
|
|
651
652
|
<span title="Ranking 14">14</span>
|
|
652
|
-
<a href="https://github.com/
|
|
653
|
+
<a href="https://github.com/CatVodTVOfficial/TVBoxOSC" target="_blank" title="CatVodTVOfficial/TVBoxOSC">CatVodTVOfficial/TVBoxOSC</a>
|
|
653
654
|
</div>
|
|
654
655
|
<div class="sub-title followers">
|
|
655
656
|
|
|
656
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
657
|
-
<span style="background-color: #
|
|
657
|
+
<a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
|
|
658
|
+
<span style="background-color: #b07219;"></span>Java
|
|
658
659
|
</a>
|
|
659
660
|
|
|
660
661
|
<span class="star" title="Stargazers Count">
|
|
661
662
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
662
663
|
<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>
|
|
663
664
|
</svg>
|
|
664
|
-
<span>
|
|
665
|
+
<span>1004</span>
|
|
665
666
|
</span>
|
|
666
667
|
<span class="star" title="Repo Forked">
|
|
667
668
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
668
669
|
<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">
|
|
669
670
|
</path>
|
|
670
671
|
</svg>
|
|
671
|
-
<span>
|
|
672
|
+
<span>1273</span>
|
|
672
673
|
</span>
|
|
673
674
|
<span class="star">
|
|
674
675
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
675
676
|
<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>
|
|
676
677
|
</svg>
|
|
677
|
-
<span>
|
|
678
|
+
<span>237 stars this week</span>
|
|
678
679
|
</span>
|
|
679
680
|
</div>
|
|
680
681
|
<div class="details">
|
|
@@ -687,32 +688,32 @@
|
|
|
687
688
|
<div class="info">
|
|
688
689
|
<div class="rank">
|
|
689
690
|
<span title="Ranking 15">15</span>
|
|
690
|
-
<a href="https://github.com/
|
|
691
|
+
<a href="https://github.com/neovim/neovim" target="_blank" title="neovim/neovim">neovim/neovim</a>
|
|
691
692
|
</div>
|
|
692
693
|
<div class="sub-title followers">
|
|
693
694
|
|
|
694
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
695
|
-
<span style="background-color: #
|
|
695
|
+
<a class="language" target="_blank" href="https://github.com/topics/vimscript" title="Programming Language Vimscript">
|
|
696
|
+
<span style="background-color: #199f4b;"></span>Vimscript
|
|
696
697
|
</a>
|
|
697
698
|
|
|
698
699
|
<span class="star" title="Stargazers Count">
|
|
699
700
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
700
701
|
<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>
|
|
701
702
|
</svg>
|
|
702
|
-
<span>
|
|
703
|
+
<span>55321</span>
|
|
703
704
|
</span>
|
|
704
705
|
<span class="star" title="Repo Forked">
|
|
705
706
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
706
707
|
<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">
|
|
707
708
|
</path>
|
|
708
709
|
</svg>
|
|
709
|
-
<span>
|
|
710
|
+
<span>3930</span>
|
|
710
711
|
</span>
|
|
711
712
|
<span class="star">
|
|
712
713
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
713
714
|
<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>
|
|
714
715
|
</svg>
|
|
715
|
-
<span>
|
|
716
|
+
<span>330 stars this week</span>
|
|
716
717
|
</span>
|
|
717
718
|
</div>
|
|
718
719
|
<div class="details">
|
|
@@ -725,32 +726,32 @@
|
|
|
725
726
|
<div class="info">
|
|
726
727
|
<div class="rank">
|
|
727
728
|
<span title="Ranking 16">16</span>
|
|
728
|
-
<a href="https://github.com/
|
|
729
|
+
<a href="https://github.com/TanStack/table" target="_blank" title="TanStack/table">TanStack/table</a>
|
|
729
730
|
</div>
|
|
730
731
|
<div class="sub-title followers">
|
|
731
732
|
|
|
732
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
733
|
-
<span style="background-color: #
|
|
733
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
734
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
734
735
|
</a>
|
|
735
736
|
|
|
736
737
|
<span class="star" title="Stargazers Count">
|
|
737
738
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
738
739
|
<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>
|
|
739
740
|
</svg>
|
|
740
|
-
<span>
|
|
741
|
+
<span>18173</span>
|
|
741
742
|
</span>
|
|
742
743
|
<span class="star" title="Repo Forked">
|
|
743
744
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
744
745
|
<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">
|
|
745
746
|
</path>
|
|
746
747
|
</svg>
|
|
747
|
-
<span>
|
|
748
|
+
<span>2472</span>
|
|
748
749
|
</span>
|
|
749
750
|
<span class="star">
|
|
750
751
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
751
752
|
<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>
|
|
752
753
|
</svg>
|
|
753
|
-
<span>
|
|
754
|
+
<span>265 stars this week</span>
|
|
754
755
|
</span>
|
|
755
756
|
</div>
|
|
756
757
|
<div class="details">
|
|
@@ -763,32 +764,32 @@
|
|
|
763
764
|
<div class="info">
|
|
764
765
|
<div class="rank">
|
|
765
766
|
<span title="Ranking 17">17</span>
|
|
766
|
-
<a href="https://github.com/
|
|
767
|
+
<a href="https://github.com/vlang/v" target="_blank" title="vlang/v">vlang/v</a>
|
|
767
768
|
</div>
|
|
768
769
|
<div class="sub-title followers">
|
|
769
770
|
|
|
770
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
771
|
-
<span style="background-color: #
|
|
771
|
+
<a class="language" target="_blank" href="https://github.com/topics/v" title="Programming Language V">
|
|
772
|
+
<span style="background-color: #4f87c4;"></span>V
|
|
772
773
|
</a>
|
|
773
774
|
|
|
774
775
|
<span class="star" title="Stargazers Count">
|
|
775
776
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
776
777
|
<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>
|
|
777
778
|
</svg>
|
|
778
|
-
<span>
|
|
779
|
+
<span>29791</span>
|
|
779
780
|
</span>
|
|
780
781
|
<span class="star" title="Repo Forked">
|
|
781
782
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
782
783
|
<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">
|
|
783
784
|
</path>
|
|
784
785
|
</svg>
|
|
785
|
-
<span>
|
|
786
|
+
<span>1821</span>
|
|
786
787
|
</span>
|
|
787
788
|
<span class="star">
|
|
788
789
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
789
790
|
<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>
|
|
790
791
|
</svg>
|
|
791
|
-
<span>
|
|
792
|
+
<span>402 stars this week</span>
|
|
792
793
|
</span>
|
|
793
794
|
</div>
|
|
794
795
|
<div class="details">
|
|
@@ -801,32 +802,32 @@
|
|
|
801
802
|
<div class="info">
|
|
802
803
|
<div class="rank">
|
|
803
804
|
<span title="Ranking 18">18</span>
|
|
804
|
-
<a href="https://github.com/
|
|
805
|
+
<a href="https://github.com/alibaba/DataX" target="_blank" title="alibaba/DataX">alibaba/DataX</a>
|
|
805
806
|
</div>
|
|
806
807
|
<div class="sub-title followers">
|
|
807
808
|
|
|
808
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
809
|
-
<span style="background-color: #
|
|
809
|
+
<a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
|
|
810
|
+
<span style="background-color: #b07219;"></span>Java
|
|
810
811
|
</a>
|
|
811
812
|
|
|
812
813
|
<span class="star" title="Stargazers Count">
|
|
813
814
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
814
815
|
<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>
|
|
815
816
|
</svg>
|
|
816
|
-
<span>
|
|
817
|
+
<span>11514</span>
|
|
817
818
|
</span>
|
|
818
819
|
<span class="star" title="Repo Forked">
|
|
819
820
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
820
821
|
<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">
|
|
821
822
|
</path>
|
|
822
823
|
</svg>
|
|
823
|
-
<span>
|
|
824
|
+
<span>4186</span>
|
|
824
825
|
</span>
|
|
825
826
|
<span class="star">
|
|
826
827
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
827
828
|
<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>
|
|
828
829
|
</svg>
|
|
829
|
-
<span>
|
|
830
|
+
<span>90 stars this week</span>
|
|
830
831
|
</span>
|
|
831
832
|
</div>
|
|
832
833
|
<div class="details">
|
|
@@ -839,28 +840,32 @@
|
|
|
839
840
|
<div class="info">
|
|
840
841
|
<div class="rank">
|
|
841
842
|
<span title="Ranking 19">19</span>
|
|
842
|
-
<a href="https://github.com/
|
|
843
|
+
<a href="https://github.com/gophish/gophish" target="_blank" title="gophish/gophish">gophish/gophish</a>
|
|
843
844
|
</div>
|
|
844
845
|
<div class="sub-title followers">
|
|
845
846
|
|
|
847
|
+
<a class="language" target="_blank" href="https://github.com/topics/go" title="Programming Language Go">
|
|
848
|
+
<span style="background-color: #00ADD8;"></span>Go
|
|
849
|
+
</a>
|
|
850
|
+
|
|
846
851
|
<span class="star" title="Stargazers Count">
|
|
847
852
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
848
853
|
<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>
|
|
849
854
|
</svg>
|
|
850
|
-
<span>
|
|
855
|
+
<span>7668</span>
|
|
851
856
|
</span>
|
|
852
857
|
<span class="star" title="Repo Forked">
|
|
853
858
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
854
859
|
<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">
|
|
855
860
|
</path>
|
|
856
861
|
</svg>
|
|
857
|
-
<span>
|
|
862
|
+
<span>1433</span>
|
|
858
863
|
</span>
|
|
859
864
|
<span class="star">
|
|
860
865
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
861
866
|
<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>
|
|
862
867
|
</svg>
|
|
863
|
-
<span>
|
|
868
|
+
<span>145 stars this week</span>
|
|
864
869
|
</span>
|
|
865
870
|
</div>
|
|
866
871
|
<div class="details">
|
|
@@ -873,32 +878,32 @@
|
|
|
873
878
|
<div class="info">
|
|
874
879
|
<div class="rank">
|
|
875
880
|
<span title="Ranking 20">20</span>
|
|
876
|
-
<a href="https://github.com/
|
|
881
|
+
<a href="https://github.com/datafold/data-diff" target="_blank" title="datafold/data-diff">datafold/data-diff</a>
|
|
877
882
|
</div>
|
|
878
883
|
<div class="sub-title followers">
|
|
879
884
|
|
|
880
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
881
|
-
<span style="background-color: #
|
|
885
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
886
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
882
887
|
</a>
|
|
883
888
|
|
|
884
889
|
<span class="star" title="Stargazers Count">
|
|
885
890
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
886
891
|
<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>
|
|
887
892
|
</svg>
|
|
888
|
-
<span>
|
|
893
|
+
<span>1185</span>
|
|
889
894
|
</span>
|
|
890
895
|
<span class="star" title="Repo Forked">
|
|
891
896
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
892
897
|
<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">
|
|
893
898
|
</path>
|
|
894
899
|
</svg>
|
|
895
|
-
<span>
|
|
900
|
+
<span>32</span>
|
|
896
901
|
</span>
|
|
897
902
|
<span class="star">
|
|
898
903
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
899
904
|
<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>
|
|
900
905
|
</svg>
|
|
901
|
-
<span>
|
|
906
|
+
<span>338 stars this week</span>
|
|
902
907
|
</span>
|
|
903
908
|
</div>
|
|
904
909
|
<div class="details">
|
|
@@ -911,32 +916,32 @@
|
|
|
911
916
|
<div class="info">
|
|
912
917
|
<div class="rank">
|
|
913
918
|
<span title="Ranking 21">21</span>
|
|
914
|
-
<a href="https://github.com/
|
|
919
|
+
<a href="https://github.com/still-scene/t3" target="_blank" title="still-scene/t3">still-scene/t3</a>
|
|
915
920
|
</div>
|
|
916
921
|
<div class="sub-title followers">
|
|
917
922
|
|
|
918
|
-
<a class="language" target="_blank" href="https://github.com/topics/c
|
|
919
|
-
<span style="background-color: #
|
|
923
|
+
<a class="language" target="_blank" href="https://github.com/topics/c#" title="Programming Language C#">
|
|
924
|
+
<span style="background-color: #178600;"></span>C#
|
|
920
925
|
</a>
|
|
921
926
|
|
|
922
927
|
<span class="star" title="Stargazers Count">
|
|
923
928
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
924
929
|
<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>
|
|
925
930
|
</svg>
|
|
926
|
-
<span>
|
|
931
|
+
<span>1537</span>
|
|
927
932
|
</span>
|
|
928
933
|
<span class="star" title="Repo Forked">
|
|
929
934
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
930
935
|
<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">
|
|
931
936
|
</path>
|
|
932
937
|
</svg>
|
|
933
|
-
<span>
|
|
938
|
+
<span>70</span>
|
|
934
939
|
</span>
|
|
935
940
|
<span class="star">
|
|
936
941
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
937
942
|
<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>
|
|
938
943
|
</svg>
|
|
939
|
-
<span>
|
|
944
|
+
<span>230 stars this week</span>
|
|
940
945
|
</span>
|
|
941
946
|
</div>
|
|
942
947
|
<div class="details">
|
|
@@ -949,28 +954,32 @@
|
|
|
949
954
|
<div class="info">
|
|
950
955
|
<div class="rank">
|
|
951
956
|
<span title="Ranking 22">22</span>
|
|
952
|
-
<a href="https://github.com/
|
|
957
|
+
<a href="https://github.com/opensumi/core" target="_blank" title="opensumi/core">opensumi/core</a>
|
|
953
958
|
</div>
|
|
954
959
|
<div class="sub-title followers">
|
|
955
960
|
|
|
961
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
962
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
963
|
+
</a>
|
|
964
|
+
|
|
956
965
|
<span class="star" title="Stargazers Count">
|
|
957
966
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
958
967
|
<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>
|
|
959
968
|
</svg>
|
|
960
|
-
<span>
|
|
969
|
+
<span>1868</span>
|
|
961
970
|
</span>
|
|
962
971
|
<span class="star" title="Repo Forked">
|
|
963
972
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
964
973
|
<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">
|
|
965
974
|
</path>
|
|
966
975
|
</svg>
|
|
967
|
-
<span>
|
|
976
|
+
<span>195</span>
|
|
968
977
|
</span>
|
|
969
978
|
<span class="star">
|
|
970
979
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
971
980
|
<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>
|
|
972
981
|
</svg>
|
|
973
|
-
<span>
|
|
982
|
+
<span>270 stars this week</span>
|
|
974
983
|
</span>
|
|
975
984
|
</div>
|
|
976
985
|
<div class="details">
|
|
@@ -983,28 +992,32 @@
|
|
|
983
992
|
<div class="info">
|
|
984
993
|
<div class="rank">
|
|
985
994
|
<span title="Ranking 23">23</span>
|
|
986
|
-
<a href="https://github.com/
|
|
995
|
+
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank" title="kamranahmedse/developer-roadmap">kamranahmedse/developer-roadmap</a>
|
|
987
996
|
</div>
|
|
988
997
|
<div class="sub-title followers">
|
|
989
998
|
|
|
999
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
1000
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
1001
|
+
</a>
|
|
1002
|
+
|
|
990
1003
|
<span class="star" title="Stargazers Count">
|
|
991
1004
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
992
1005
|
<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>
|
|
993
1006
|
</svg>
|
|
994
|
-
<span>
|
|
1007
|
+
<span>199356</span>
|
|
995
1008
|
</span>
|
|
996
1009
|
<span class="star" title="Repo Forked">
|
|
997
1010
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
998
1011
|
<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">
|
|
999
1012
|
</path>
|
|
1000
1013
|
</svg>
|
|
1001
|
-
<span>
|
|
1014
|
+
<span>28519</span>
|
|
1002
1015
|
</span>
|
|
1003
1016
|
<span class="star">
|
|
1004
1017
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1005
1018
|
<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>
|
|
1006
1019
|
</svg>
|
|
1007
|
-
<span>
|
|
1020
|
+
<span>1309 stars this week</span>
|
|
1008
1021
|
</span>
|
|
1009
1022
|
</div>
|
|
1010
1023
|
<div class="details">
|
|
@@ -1017,32 +1030,32 @@
|
|
|
1017
1030
|
<div class="info">
|
|
1018
1031
|
<div class="rank">
|
|
1019
1032
|
<span title="Ranking 24">24</span>
|
|
1020
|
-
<a href="https://github.com/
|
|
1033
|
+
<a href="https://github.com/trekhleb/javascript-algorithms" target="_blank" title="trekhleb/javascript-algorithms">trekhleb/javascript-algorithms</a>
|
|
1021
1034
|
</div>
|
|
1022
1035
|
<div class="sub-title followers">
|
|
1023
1036
|
|
|
1024
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
1025
|
-
<span style="background-color: #
|
|
1037
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
1038
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
1026
1039
|
</a>
|
|
1027
1040
|
|
|
1028
1041
|
<span class="star" title="Stargazers Count">
|
|
1029
1042
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1030
1043
|
<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>
|
|
1031
1044
|
</svg>
|
|
1032
|
-
<span>
|
|
1045
|
+
<span>145072</span>
|
|
1033
1046
|
</span>
|
|
1034
1047
|
<span class="star" title="Repo Forked">
|
|
1035
1048
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
1036
1049
|
<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">
|
|
1037
1050
|
</path>
|
|
1038
1051
|
</svg>
|
|
1039
|
-
<span>
|
|
1052
|
+
<span>24031</span>
|
|
1040
1053
|
</span>
|
|
1041
1054
|
<span class="star">
|
|
1042
1055
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1043
1056
|
<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>
|
|
1044
1057
|
</svg>
|
|
1045
|
-
<span>
|
|
1058
|
+
<span>916 stars this week</span>
|
|
1046
1059
|
</span>
|
|
1047
1060
|
</div>
|
|
1048
1061
|
<div class="details">
|
|
@@ -1055,32 +1068,32 @@
|
|
|
1055
1068
|
<div class="info">
|
|
1056
1069
|
<div class="rank">
|
|
1057
1070
|
<span title="Ranking 25">25</span>
|
|
1058
|
-
<a href="https://github.com/
|
|
1071
|
+
<a href="https://github.com/paritytech/polkadot" target="_blank" title="paritytech/polkadot">paritytech/polkadot</a>
|
|
1059
1072
|
</div>
|
|
1060
1073
|
<div class="sub-title followers">
|
|
1061
1074
|
|
|
1062
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
1063
|
-
<span style="background-color: #
|
|
1075
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
1076
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
1064
1077
|
</a>
|
|
1065
1078
|
|
|
1066
1079
|
<span class="star" title="Stargazers Count">
|
|
1067
1080
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1068
1081
|
<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>
|
|
1069
1082
|
</svg>
|
|
1070
|
-
<span>
|
|
1083
|
+
<span>6027</span>
|
|
1071
1084
|
</span>
|
|
1072
1085
|
<span class="star" title="Repo Forked">
|
|
1073
1086
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
1074
1087
|
<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">
|
|
1075
1088
|
</path>
|
|
1076
1089
|
</svg>
|
|
1077
|
-
<span>
|
|
1090
|
+
<span>1310</span>
|
|
1078
1091
|
</span>
|
|
1079
1092
|
<span class="star">
|
|
1080
1093
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1081
1094
|
<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>
|
|
1082
1095
|
</svg>
|
|
1083
|
-
<span>
|
|
1096
|
+
<span>68 stars this week</span>
|
|
1084
1097
|
</span>
|
|
1085
1098
|
</div>
|
|
1086
1099
|
<div class="details">
|
|
@@ -1105,7 +1118,7 @@
|
|
|
1105
1118
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
1106
1119
|
</a>
|
|
1107
1120
|
</div>
|
|
1108
|
-
<div class="time">Last cache created on 2022/7/
|
|
1121
|
+
<div class="time">Last cache created on 2022/7/6 by Github API v3.</div>
|
|
1109
1122
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
1110
1123
|
</div>
|
|
1111
1124
|
</body>
|