@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.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/WhaleFell/SMSBoom" target="_blank" title="WhaleFell/SMSBoom">WhaleFell/SMSBoom</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/python" title="Programming Language Python">
|
|
168
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>2811</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>649</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>698 stars today</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/searxng/searxng" target="_blank" title="searxng/searxng">searxng/searxng</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>1788</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>229</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>164 stars today</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/TheAlgorithms/Python" target="_blank" title="TheAlgorithms/Python">TheAlgorithms/Python</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>139674</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>36106</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>127 stars today</span>
|
|
260
265
|
</span>
|
|
261
266
|
</div>
|
|
262
267
|
<div class="details">
|
|
@@ -269,32 +274,28 @@
|
|
|
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/mtdvio/every-programmer-should-know" target="_blank" title="mtdvio/every-programmer-should-know">mtdvio/every-programmer-should-know</a>
|
|
273
278
|
</div>
|
|
274
279
|
<div class="sub-title followers">
|
|
275
280
|
|
|
276
|
-
<a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
|
|
277
|
-
<span style="background-color: #f34b7d;"></span>C++
|
|
278
|
-
</a>
|
|
279
|
-
|
|
280
281
|
<span class="star" title="Stargazers Count">
|
|
281
282
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
282
283
|
<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
284
|
</svg>
|
|
284
|
-
<span>
|
|
285
|
+
<span>55634</span>
|
|
285
286
|
</span>
|
|
286
287
|
<span class="star" title="Repo Forked">
|
|
287
288
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
288
289
|
<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
290
|
</path>
|
|
290
291
|
</svg>
|
|
291
|
-
<span>
|
|
292
|
+
<span>5454</span>
|
|
292
293
|
</span>
|
|
293
294
|
<span class="star">
|
|
294
295
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
295
296
|
<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
297
|
</svg>
|
|
297
|
-
<span>
|
|
298
|
+
<span>441 stars today</span>
|
|
298
299
|
</span>
|
|
299
300
|
</div>
|
|
300
301
|
<div class="details">
|
|
@@ -307,32 +308,32 @@
|
|
|
307
308
|
<div class="info">
|
|
308
309
|
<div class="rank">
|
|
309
310
|
<span title="Ranking 5">5</span>
|
|
310
|
-
<a href="https://github.com/
|
|
311
|
+
<a href="https://github.com/webhdx/PicoBoot" target="_blank" title="webhdx/PicoBoot">webhdx/PicoBoot</a>
|
|
311
312
|
</div>
|
|
312
313
|
<div class="sub-title followers">
|
|
313
314
|
|
|
314
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
315
|
-
<span style="background-color: #
|
|
315
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
316
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
316
317
|
</a>
|
|
317
318
|
|
|
318
319
|
<span class="star" title="Stargazers Count">
|
|
319
320
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
320
321
|
<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
322
|
</svg>
|
|
322
|
-
<span>
|
|
323
|
+
<span>442</span>
|
|
323
324
|
</span>
|
|
324
325
|
<span class="star" title="Repo Forked">
|
|
325
326
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
326
327
|
<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
328
|
</path>
|
|
328
329
|
</svg>
|
|
329
|
-
<span>
|
|
330
|
+
<span>31</span>
|
|
330
331
|
</span>
|
|
331
332
|
<span class="star">
|
|
332
333
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
333
334
|
<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
335
|
</svg>
|
|
335
|
-
<span>
|
|
336
|
+
<span>89 stars today</span>
|
|
336
337
|
</span>
|
|
337
338
|
</div>
|
|
338
339
|
<div class="details">
|
|
@@ -345,32 +346,32 @@
|
|
|
345
346
|
<div class="info">
|
|
346
347
|
<div class="rank">
|
|
347
348
|
<span title="Ranking 6">6</span>
|
|
348
|
-
<a href="https://github.com/
|
|
349
|
+
<a href="https://github.com/soimort/you-get" target="_blank" title="soimort/you-get">soimort/you-get</a>
|
|
349
350
|
</div>
|
|
350
351
|
<div class="sub-title followers">
|
|
351
352
|
|
|
352
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
353
|
-
<span style="background-color: #
|
|
353
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
354
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
354
355
|
</a>
|
|
355
356
|
|
|
356
357
|
<span class="star" title="Stargazers Count">
|
|
357
358
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
358
359
|
<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
360
|
</svg>
|
|
360
|
-
<span>
|
|
361
|
+
<span>44641</span>
|
|
361
362
|
</span>
|
|
362
363
|
<span class="star" title="Repo Forked">
|
|
363
364
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
364
365
|
<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
366
|
</path>
|
|
366
367
|
</svg>
|
|
367
|
-
<span>
|
|
368
|
+
<span>8966</span>
|
|
368
369
|
</span>
|
|
369
370
|
<span class="star">
|
|
370
371
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
371
372
|
<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
373
|
</svg>
|
|
373
|
-
<span>
|
|
374
|
+
<span>189 stars today</span>
|
|
374
375
|
</span>
|
|
375
376
|
</div>
|
|
376
377
|
<div class="details">
|
|
@@ -383,32 +384,32 @@
|
|
|
383
384
|
<div class="info">
|
|
384
385
|
<div class="rank">
|
|
385
386
|
<span title="Ranking 7">7</span>
|
|
386
|
-
<a href="https://github.com/
|
|
387
|
+
<a href="https://github.com/t3-oss/create-t3-app" target="_blank" title="t3-oss/create-t3-app">t3-oss/create-t3-app</a>
|
|
387
388
|
</div>
|
|
388
389
|
<div class="sub-title followers">
|
|
389
390
|
|
|
390
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
391
|
-
<span style="background-color: #
|
|
391
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
392
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
392
393
|
</a>
|
|
393
394
|
|
|
394
395
|
<span class="star" title="Stargazers Count">
|
|
395
396
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
396
397
|
<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
398
|
</svg>
|
|
398
|
-
<span>
|
|
399
|
+
<span>1850</span>
|
|
399
400
|
</span>
|
|
400
401
|
<span class="star" title="Repo Forked">
|
|
401
402
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
402
403
|
<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
404
|
</path>
|
|
404
405
|
</svg>
|
|
405
|
-
<span>
|
|
406
|
+
<span>62</span>
|
|
406
407
|
</span>
|
|
407
408
|
<span class="star">
|
|
408
409
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
409
410
|
<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
411
|
</svg>
|
|
411
|
-
<span>
|
|
412
|
+
<span>293 stars today</span>
|
|
412
413
|
</span>
|
|
413
414
|
</div>
|
|
414
415
|
<div class="details">
|
|
@@ -421,28 +422,32 @@
|
|
|
421
422
|
<div class="info">
|
|
422
423
|
<div class="rank">
|
|
423
424
|
<span title="Ranking 8">8</span>
|
|
424
|
-
<a href="https://github.com/
|
|
425
|
+
<a href="https://github.com/jaywcjlove/awesome-mac" target="_blank" title="jaywcjlove/awesome-mac">jaywcjlove/awesome-mac</a>
|
|
425
426
|
</div>
|
|
426
427
|
<div class="sub-title followers">
|
|
427
428
|
|
|
429
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
430
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
431
|
+
</a>
|
|
432
|
+
|
|
428
433
|
<span class="star" title="Stargazers Count">
|
|
429
434
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
430
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>
|
|
431
436
|
</svg>
|
|
432
|
-
<span>
|
|
437
|
+
<span>50431</span>
|
|
433
438
|
</span>
|
|
434
439
|
<span class="star" title="Repo Forked">
|
|
435
440
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
436
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">
|
|
437
442
|
</path>
|
|
438
443
|
</svg>
|
|
439
|
-
<span>
|
|
444
|
+
<span>5388</span>
|
|
440
445
|
</span>
|
|
441
446
|
<span class="star">
|
|
442
447
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
443
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>
|
|
444
449
|
</svg>
|
|
445
|
-
<span>
|
|
450
|
+
<span>175 stars today</span>
|
|
446
451
|
</span>
|
|
447
452
|
</div>
|
|
448
453
|
<div class="details">
|
|
@@ -455,32 +460,32 @@
|
|
|
455
460
|
<div class="info">
|
|
456
461
|
<div class="rank">
|
|
457
462
|
<span title="Ranking 9">9</span>
|
|
458
|
-
<a href="https://github.com/
|
|
463
|
+
<a href="https://github.com/searxng/searxng-docker" target="_blank" title="searxng/searxng-docker">searxng/searxng-docker</a>
|
|
459
464
|
</div>
|
|
460
465
|
<div class="sub-title followers">
|
|
461
466
|
|
|
462
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
463
|
-
<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
|
|
464
469
|
</a>
|
|
465
470
|
|
|
466
471
|
<span class="star" title="Stargazers Count">
|
|
467
472
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
468
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>
|
|
469
474
|
</svg>
|
|
470
|
-
<span>
|
|
475
|
+
<span>141</span>
|
|
471
476
|
</span>
|
|
472
477
|
<span class="star" title="Repo Forked">
|
|
473
478
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
474
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">
|
|
475
480
|
</path>
|
|
476
481
|
</svg>
|
|
477
|
-
<span>
|
|
482
|
+
<span>41</span>
|
|
478
483
|
</span>
|
|
479
484
|
<span class="star">
|
|
480
485
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
481
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>
|
|
482
487
|
</svg>
|
|
483
|
-
<span>
|
|
488
|
+
<span>25 stars today</span>
|
|
484
489
|
</span>
|
|
485
490
|
</div>
|
|
486
491
|
<div class="details">
|
|
@@ -493,32 +498,32 @@
|
|
|
493
498
|
<div class="info">
|
|
494
499
|
<div class="rank">
|
|
495
500
|
<span title="Ranking 10">10</span>
|
|
496
|
-
<a href="https://github.com/
|
|
501
|
+
<a href="https://github.com/sherlock-project/sherlock" target="_blank" title="sherlock-project/sherlock">sherlock-project/sherlock</a>
|
|
497
502
|
</div>
|
|
498
503
|
<div class="sub-title followers">
|
|
499
504
|
|
|
500
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
501
|
-
<span style="background-color: #
|
|
505
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
506
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
502
507
|
</a>
|
|
503
508
|
|
|
504
509
|
<span class="star" title="Stargazers Count">
|
|
505
510
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
506
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>
|
|
507
512
|
</svg>
|
|
508
|
-
<span>
|
|
513
|
+
<span>32966</span>
|
|
509
514
|
</span>
|
|
510
515
|
<span class="star" title="Repo Forked">
|
|
511
516
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
512
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">
|
|
513
518
|
</path>
|
|
514
519
|
</svg>
|
|
515
|
-
<span>
|
|
520
|
+
<span>3829</span>
|
|
516
521
|
</span>
|
|
517
522
|
<span class="star">
|
|
518
523
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
519
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>
|
|
520
525
|
</svg>
|
|
521
|
-
<span>
|
|
526
|
+
<span>170 stars today</span>
|
|
522
527
|
</span>
|
|
523
528
|
</div>
|
|
524
529
|
<div class="details">
|
|
@@ -531,32 +536,32 @@
|
|
|
531
536
|
<div class="info">
|
|
532
537
|
<div class="rank">
|
|
533
538
|
<span title="Ranking 11">11</span>
|
|
534
|
-
<a href="https://github.com/
|
|
539
|
+
<a href="https://github.com/chatwoot/chatwoot" target="_blank" title="chatwoot/chatwoot">chatwoot/chatwoot</a>
|
|
535
540
|
</div>
|
|
536
541
|
<div class="sub-title followers">
|
|
537
542
|
|
|
538
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
539
|
-
<span style="background-color: #
|
|
543
|
+
<a class="language" target="_blank" href="https://github.com/topics/ruby" title="Programming Language Ruby">
|
|
544
|
+
<span style="background-color: #701516;"></span>Ruby
|
|
540
545
|
</a>
|
|
541
546
|
|
|
542
547
|
<span class="star" title="Stargazers Count">
|
|
543
548
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
544
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>
|
|
545
550
|
</svg>
|
|
546
|
-
<span>
|
|
551
|
+
<span>12906</span>
|
|
547
552
|
</span>
|
|
548
553
|
<span class="star" title="Repo Forked">
|
|
549
554
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
550
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">
|
|
551
556
|
</path>
|
|
552
557
|
</svg>
|
|
553
|
-
<span>
|
|
558
|
+
<span>1637</span>
|
|
554
559
|
</span>
|
|
555
560
|
<span class="star">
|
|
556
561
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
557
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>
|
|
558
563
|
</svg>
|
|
559
|
-
<span>
|
|
564
|
+
<span>103 stars today</span>
|
|
560
565
|
</span>
|
|
561
566
|
</div>
|
|
562
567
|
<div class="details">
|
|
@@ -569,32 +574,32 @@
|
|
|
569
574
|
<div class="info">
|
|
570
575
|
<div class="rank">
|
|
571
576
|
<span title="Ranking 12">12</span>
|
|
572
|
-
<a href="https://github.com/
|
|
577
|
+
<a href="https://github.com/solidjs/solid" target="_blank" title="solidjs/solid">solidjs/solid</a>
|
|
573
578
|
</div>
|
|
574
579
|
<div class="sub-title followers">
|
|
575
580
|
|
|
576
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
577
|
-
<span style="background-color: #
|
|
581
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
582
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
578
583
|
</a>
|
|
579
584
|
|
|
580
585
|
<span class="star" title="Stargazers Count">
|
|
581
586
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
582
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>
|
|
583
588
|
</svg>
|
|
584
|
-
<span>
|
|
589
|
+
<span>20045</span>
|
|
585
590
|
</span>
|
|
586
591
|
<span class="star" title="Repo Forked">
|
|
587
592
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
588
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">
|
|
589
594
|
</path>
|
|
590
595
|
</svg>
|
|
591
|
-
<span>
|
|
596
|
+
<span>501</span>
|
|
592
597
|
</span>
|
|
593
598
|
<span class="star">
|
|
594
599
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
595
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>
|
|
596
601
|
</svg>
|
|
597
|
-
<span>
|
|
602
|
+
<span>158 stars today</span>
|
|
598
603
|
</span>
|
|
599
604
|
</div>
|
|
600
605
|
<div class="details">
|
|
@@ -607,32 +612,32 @@
|
|
|
607
612
|
<div class="info">
|
|
608
613
|
<div class="rank">
|
|
609
614
|
<span title="Ranking 13">13</span>
|
|
610
|
-
<a href="https://github.com/
|
|
615
|
+
<a href="https://github.com/kwea123/ngp_pl" target="_blank" title="kwea123/ngp_pl">kwea123/ngp_pl</a>
|
|
611
616
|
</div>
|
|
612
617
|
<div class="sub-title followers">
|
|
613
618
|
|
|
614
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
615
|
-
<span style="background-color: #
|
|
619
|
+
<a class="language" target="_blank" href="https://github.com/topics/jupyternotebook" title="Programming Language JupyterNotebook">
|
|
620
|
+
<span style="background-color: #DA5B0B;"></span>JupyterNotebook
|
|
616
621
|
</a>
|
|
617
622
|
|
|
618
623
|
<span class="star" title="Stargazers Count">
|
|
619
624
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
620
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>
|
|
621
626
|
</svg>
|
|
622
|
-
<span>
|
|
627
|
+
<span>193</span>
|
|
623
628
|
</span>
|
|
624
629
|
<span class="star" title="Repo Forked">
|
|
625
630
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
626
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">
|
|
627
632
|
</path>
|
|
628
633
|
</svg>
|
|
629
|
-
<span>
|
|
634
|
+
<span>8</span>
|
|
630
635
|
</span>
|
|
631
636
|
<span class="star">
|
|
632
637
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
633
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>
|
|
634
639
|
</svg>
|
|
635
|
-
<span>
|
|
640
|
+
<span>42 stars today</span>
|
|
636
641
|
</span>
|
|
637
642
|
</div>
|
|
638
643
|
<div class="details">
|
|
@@ -645,32 +650,32 @@
|
|
|
645
650
|
<div class="info">
|
|
646
651
|
<div class="rank">
|
|
647
652
|
<span title="Ranking 14">14</span>
|
|
648
|
-
<a href="https://github.com/
|
|
653
|
+
<a href="https://github.com/LearningOS/rust-based-os-comp2022" target="_blank" title="LearningOS/rust-based-os-comp2022">LearningOS/rust-based-os-comp2022</a>
|
|
649
654
|
</div>
|
|
650
655
|
<div class="sub-title followers">
|
|
651
656
|
|
|
652
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
653
|
-
<span style="background-color: #
|
|
657
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
658
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
654
659
|
</a>
|
|
655
660
|
|
|
656
661
|
<span class="star" title="Stargazers Count">
|
|
657
662
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
658
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>
|
|
659
664
|
</svg>
|
|
660
|
-
<span>
|
|
665
|
+
<span>594</span>
|
|
661
666
|
</span>
|
|
662
667
|
<span class="star" title="Repo Forked">
|
|
663
668
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
664
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">
|
|
665
670
|
</path>
|
|
666
671
|
</svg>
|
|
667
|
-
<span>
|
|
672
|
+
<span>39</span>
|
|
668
673
|
</span>
|
|
669
674
|
<span class="star">
|
|
670
675
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
671
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>
|
|
672
677
|
</svg>
|
|
673
|
-
<span>
|
|
678
|
+
<span>86 stars today</span>
|
|
674
679
|
</span>
|
|
675
680
|
</div>
|
|
676
681
|
<div class="details">
|
|
@@ -683,32 +688,32 @@
|
|
|
683
688
|
<div class="info">
|
|
684
689
|
<div class="rank">
|
|
685
690
|
<span title="Ranking 15">15</span>
|
|
686
|
-
<a href="https://github.com/
|
|
691
|
+
<a href="https://github.com/30-seconds/30-seconds-of-code" target="_blank" title="30-seconds/30-seconds-of-code">30-seconds/30-seconds-of-code</a>
|
|
687
692
|
</div>
|
|
688
693
|
<div class="sub-title followers">
|
|
689
694
|
|
|
690
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
691
|
-
<span style="background-color: #
|
|
695
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
696
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
692
697
|
</a>
|
|
693
698
|
|
|
694
699
|
<span class="star" title="Stargazers Count">
|
|
695
700
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
696
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>
|
|
697
702
|
</svg>
|
|
698
|
-
<span>
|
|
703
|
+
<span>98363</span>
|
|
699
704
|
</span>
|
|
700
705
|
<span class="star" title="Repo Forked">
|
|
701
706
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
702
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">
|
|
703
708
|
</path>
|
|
704
709
|
</svg>
|
|
705
|
-
<span>
|
|
710
|
+
<span>10341</span>
|
|
706
711
|
</span>
|
|
707
712
|
<span class="star">
|
|
708
713
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
709
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>
|
|
710
715
|
</svg>
|
|
711
|
-
<span>
|
|
716
|
+
<span>230 stars today</span>
|
|
712
717
|
</span>
|
|
713
718
|
</div>
|
|
714
719
|
<div class="details">
|
|
@@ -721,32 +726,32 @@
|
|
|
721
726
|
<div class="info">
|
|
722
727
|
<div class="rank">
|
|
723
728
|
<span title="Ranking 16">16</span>
|
|
724
|
-
<a href="https://github.com/
|
|
729
|
+
<a href="https://github.com/SerenityOS/serenity" target="_blank" title="SerenityOS/serenity">SerenityOS/serenity</a>
|
|
725
730
|
</div>
|
|
726
731
|
<div class="sub-title followers">
|
|
727
732
|
|
|
728
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
729
|
-
<span style="background-color: #
|
|
733
|
+
<a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
|
|
734
|
+
<span style="background-color: #f34b7d;"></span>C++
|
|
730
735
|
</a>
|
|
731
736
|
|
|
732
737
|
<span class="star" title="Stargazers Count">
|
|
733
738
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
734
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>
|
|
735
740
|
</svg>
|
|
736
|
-
<span>
|
|
741
|
+
<span>20333</span>
|
|
737
742
|
</span>
|
|
738
743
|
<span class="star" title="Repo Forked">
|
|
739
744
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
740
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">
|
|
741
746
|
</path>
|
|
742
747
|
</svg>
|
|
743
|
-
<span>
|
|
748
|
+
<span>2196</span>
|
|
744
749
|
</span>
|
|
745
750
|
<span class="star">
|
|
746
751
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
747
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>
|
|
748
753
|
</svg>
|
|
749
|
-
<span>
|
|
754
|
+
<span>45 stars today</span>
|
|
750
755
|
</span>
|
|
751
756
|
</div>
|
|
752
757
|
<div class="details">
|
|
@@ -759,32 +764,28 @@
|
|
|
759
764
|
<div class="info">
|
|
760
765
|
<div class="rank">
|
|
761
766
|
<span title="Ranking 17">17</span>
|
|
762
|
-
<a href="https://github.com/
|
|
767
|
+
<a href="https://github.com/codecrafters-io/build-your-own-x" target="_blank" title="codecrafters-io/build-your-own-x">codecrafters-io/build-your-own-x</a>
|
|
763
768
|
</div>
|
|
764
769
|
<div class="sub-title followers">
|
|
765
770
|
|
|
766
|
-
<a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
|
|
767
|
-
<span style="background-color: #b07219;"></span>Java
|
|
768
|
-
</a>
|
|
769
|
-
|
|
770
771
|
<span class="star" title="Stargazers Count">
|
|
771
772
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
772
773
|
<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>
|
|
773
774
|
</svg>
|
|
774
|
-
<span>
|
|
775
|
+
<span>147395</span>
|
|
775
776
|
</span>
|
|
776
777
|
<span class="star" title="Repo Forked">
|
|
777
778
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
778
779
|
<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">
|
|
779
780
|
</path>
|
|
780
781
|
</svg>
|
|
781
|
-
<span>
|
|
782
|
+
<span>14037</span>
|
|
782
783
|
</span>
|
|
783
784
|
<span class="star">
|
|
784
785
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
785
786
|
<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>
|
|
786
787
|
</svg>
|
|
787
|
-
<span>
|
|
788
|
+
<span>206 stars today</span>
|
|
788
789
|
</span>
|
|
789
790
|
</div>
|
|
790
791
|
<div class="details">
|
|
@@ -797,32 +798,32 @@
|
|
|
797
798
|
<div class="info">
|
|
798
799
|
<div class="rank">
|
|
799
800
|
<span title="Ranking 18">18</span>
|
|
800
|
-
<a href="https://github.com/
|
|
801
|
+
<a href="https://github.com/Megvii-BaseDetection/YOLOX" target="_blank" title="Megvii-BaseDetection/YOLOX">Megvii-BaseDetection/YOLOX</a>
|
|
801
802
|
</div>
|
|
802
803
|
<div class="sub-title followers">
|
|
803
804
|
|
|
804
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
805
|
-
<span style="background-color: #
|
|
805
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
806
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
806
807
|
</a>
|
|
807
808
|
|
|
808
809
|
<span class="star" title="Stargazers Count">
|
|
809
810
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
810
811
|
<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>
|
|
811
812
|
</svg>
|
|
812
|
-
<span>
|
|
813
|
+
<span>6879</span>
|
|
813
814
|
</span>
|
|
814
815
|
<span class="star" title="Repo Forked">
|
|
815
816
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
816
817
|
<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">
|
|
817
818
|
</path>
|
|
818
819
|
</svg>
|
|
819
|
-
<span>
|
|
820
|
+
<span>1606</span>
|
|
820
821
|
</span>
|
|
821
822
|
<span class="star">
|
|
822
823
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
823
824
|
<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>
|
|
824
825
|
</svg>
|
|
825
|
-
<span>
|
|
826
|
+
<span>67 stars today</span>
|
|
826
827
|
</span>
|
|
827
828
|
</div>
|
|
828
829
|
<div class="details">
|
|
@@ -835,28 +836,32 @@
|
|
|
835
836
|
<div class="info">
|
|
836
837
|
<div class="rank">
|
|
837
838
|
<span title="Ranking 19">19</span>
|
|
838
|
-
<a href="https://github.com/
|
|
839
|
+
<a href="https://github.com/4ian/GDevelop" target="_blank" title="4ian/GDevelop">4ian/GDevelop</a>
|
|
839
840
|
</div>
|
|
840
841
|
<div class="sub-title followers">
|
|
841
842
|
|
|
843
|
+
<a class="language" target="_blank" href="https://github.com/topics/javascript" title="Programming Language JavaScript">
|
|
844
|
+
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
845
|
+
</a>
|
|
846
|
+
|
|
842
847
|
<span class="star" title="Stargazers Count">
|
|
843
848
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
844
849
|
<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>
|
|
845
850
|
</svg>
|
|
846
|
-
<span>
|
|
851
|
+
<span>3823</span>
|
|
847
852
|
</span>
|
|
848
853
|
<span class="star" title="Repo Forked">
|
|
849
854
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
850
855
|
<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">
|
|
851
856
|
</path>
|
|
852
857
|
</svg>
|
|
853
|
-
<span>
|
|
858
|
+
<span>536</span>
|
|
854
859
|
</span>
|
|
855
860
|
<span class="star">
|
|
856
861
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
857
862
|
<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>
|
|
858
863
|
</svg>
|
|
859
|
-
<span>
|
|
864
|
+
<span>77 stars today</span>
|
|
860
865
|
</span>
|
|
861
866
|
</div>
|
|
862
867
|
<div class="details">
|
|
@@ -869,22 +874,26 @@
|
|
|
869
874
|
<div class="info">
|
|
870
875
|
<div class="rank">
|
|
871
876
|
<span title="Ranking 20">20</span>
|
|
872
|
-
<a href="https://github.com/
|
|
877
|
+
<a href="https://github.com/eugenp/tutorials" target="_blank" title="eugenp/tutorials">eugenp/tutorials</a>
|
|
873
878
|
</div>
|
|
874
879
|
<div class="sub-title followers">
|
|
875
880
|
|
|
881
|
+
<a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
|
|
882
|
+
<span style="background-color: #b07219;"></span>Java
|
|
883
|
+
</a>
|
|
884
|
+
|
|
876
885
|
<span class="star" title="Stargazers Count">
|
|
877
886
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
878
887
|
<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>
|
|
879
888
|
</svg>
|
|
880
|
-
<span>
|
|
889
|
+
<span>31107</span>
|
|
881
890
|
</span>
|
|
882
891
|
<span class="star" title="Repo Forked">
|
|
883
892
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
884
893
|
<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">
|
|
885
894
|
</path>
|
|
886
895
|
</svg>
|
|
887
|
-
<span>
|
|
896
|
+
<span>49572</span>
|
|
888
897
|
</span>
|
|
889
898
|
<span class="star">
|
|
890
899
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
@@ -903,32 +912,32 @@
|
|
|
903
912
|
<div class="info">
|
|
904
913
|
<div class="rank">
|
|
905
914
|
<span title="Ranking 21">21</span>
|
|
906
|
-
<a href="https://github.com/
|
|
915
|
+
<a href="https://github.com/torvalds/linux" target="_blank" title="torvalds/linux">torvalds/linux</a>
|
|
907
916
|
</div>
|
|
908
917
|
<div class="sub-title followers">
|
|
909
918
|
|
|
910
|
-
<a class="language" target="_blank" href="https://github.com/topics/c
|
|
911
|
-
<span style="background-color: #
|
|
919
|
+
<a class="language" target="_blank" href="https://github.com/topics/c" title="Programming Language C">
|
|
920
|
+
<span style="background-color: #555555;"></span>C
|
|
912
921
|
</a>
|
|
913
922
|
|
|
914
923
|
<span class="star" title="Stargazers Count">
|
|
915
924
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
916
925
|
<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>
|
|
917
926
|
</svg>
|
|
918
|
-
<span>
|
|
927
|
+
<span>134239</span>
|
|
919
928
|
</span>
|
|
920
929
|
<span class="star" title="Repo Forked">
|
|
921
930
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
922
931
|
<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">
|
|
923
932
|
</path>
|
|
924
933
|
</svg>
|
|
925
|
-
<span>
|
|
934
|
+
<span>43608</span>
|
|
926
935
|
</span>
|
|
927
936
|
<span class="star">
|
|
928
937
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
929
938
|
<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>
|
|
930
939
|
</svg>
|
|
931
|
-
<span>
|
|
940
|
+
<span>95 stars today</span>
|
|
932
941
|
</span>
|
|
933
942
|
</div>
|
|
934
943
|
<div class="details">
|
|
@@ -941,32 +950,32 @@
|
|
|
941
950
|
<div class="info">
|
|
942
951
|
<div class="rank">
|
|
943
952
|
<span title="Ranking 22">22</span>
|
|
944
|
-
<a href="https://github.com/
|
|
953
|
+
<a href="https://github.com/catchorg/Catch2" target="_blank" title="catchorg/Catch2">catchorg/Catch2</a>
|
|
945
954
|
</div>
|
|
946
955
|
<div class="sub-title followers">
|
|
947
956
|
|
|
948
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
949
|
-
<span style="background-color: #
|
|
957
|
+
<a class="language" target="_blank" href="https://github.com/topics/c++" title="Programming Language C++">
|
|
958
|
+
<span style="background-color: #f34b7d;"></span>C++
|
|
950
959
|
</a>
|
|
951
960
|
|
|
952
961
|
<span class="star" title="Stargazers Count">
|
|
953
962
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
954
963
|
<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>
|
|
955
964
|
</svg>
|
|
956
|
-
<span>
|
|
965
|
+
<span>15266</span>
|
|
957
966
|
</span>
|
|
958
967
|
<span class="star" title="Repo Forked">
|
|
959
968
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
960
969
|
<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">
|
|
961
970
|
</path>
|
|
962
971
|
</svg>
|
|
963
|
-
<span>
|
|
972
|
+
<span>2610</span>
|
|
964
973
|
</span>
|
|
965
974
|
<span class="star">
|
|
966
975
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
967
976
|
<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>
|
|
968
977
|
</svg>
|
|
969
|
-
<span>
|
|
978
|
+
<span>15 stars today</span>
|
|
970
979
|
</span>
|
|
971
980
|
</div>
|
|
972
981
|
<div class="details">
|
|
@@ -979,32 +988,32 @@
|
|
|
979
988
|
<div class="info">
|
|
980
989
|
<div class="rank">
|
|
981
990
|
<span title="Ranking 23">23</span>
|
|
982
|
-
<a href="https://github.com/
|
|
991
|
+
<a href="https://github.com/nvm-sh/nvm" target="_blank" title="nvm-sh/nvm">nvm-sh/nvm</a>
|
|
983
992
|
</div>
|
|
984
993
|
<div class="sub-title followers">
|
|
985
994
|
|
|
986
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
987
|
-
<span style="background-color: #
|
|
995
|
+
<a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
|
|
996
|
+
<span style="background-color: #89e051;"></span>Shell
|
|
988
997
|
</a>
|
|
989
998
|
|
|
990
999
|
<span class="star" title="Stargazers Count">
|
|
991
1000
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
992
1001
|
<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
1002
|
</svg>
|
|
994
|
-
<span>
|
|
1003
|
+
<span>59113</span>
|
|
995
1004
|
</span>
|
|
996
1005
|
<span class="star" title="Repo Forked">
|
|
997
1006
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
998
1007
|
<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
1008
|
</path>
|
|
1000
1009
|
</svg>
|
|
1001
|
-
<span>
|
|
1010
|
+
<span>6275</span>
|
|
1002
1011
|
</span>
|
|
1003
1012
|
<span class="star">
|
|
1004
1013
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1005
1014
|
<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
1015
|
</svg>
|
|
1007
|
-
<span>
|
|
1016
|
+
<span>49 stars today</span>
|
|
1008
1017
|
</span>
|
|
1009
1018
|
</div>
|
|
1010
1019
|
<div class="details">
|
|
@@ -1017,26 +1026,26 @@
|
|
|
1017
1026
|
<div class="info">
|
|
1018
1027
|
<div class="rank">
|
|
1019
1028
|
<span title="Ranking 24">24</span>
|
|
1020
|
-
<a href="https://github.com/
|
|
1029
|
+
<a href="https://github.com/babysor/MockingBird" target="_blank" title="babysor/MockingBird">babysor/MockingBird</a>
|
|
1021
1030
|
</div>
|
|
1022
1031
|
<div class="sub-title followers">
|
|
1023
1032
|
|
|
1024
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
1025
|
-
<span style="background-color: #
|
|
1033
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
1034
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
1026
1035
|
</a>
|
|
1027
1036
|
|
|
1028
1037
|
<span class="star" title="Stargazers Count">
|
|
1029
1038
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1030
1039
|
<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
1040
|
</svg>
|
|
1032
|
-
<span>
|
|
1041
|
+
<span>22300</span>
|
|
1033
1042
|
</span>
|
|
1034
1043
|
<span class="star" title="Repo Forked">
|
|
1035
1044
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
1036
1045
|
<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
1046
|
</path>
|
|
1038
1047
|
</svg>
|
|
1039
|
-
<span>
|
|
1048
|
+
<span>3259</span>
|
|
1040
1049
|
</span>
|
|
1041
1050
|
<span class="star">
|
|
1042
1051
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
@@ -1055,32 +1064,28 @@
|
|
|
1055
1064
|
<div class="info">
|
|
1056
1065
|
<div class="rank">
|
|
1057
1066
|
<span title="Ranking 25">25</span>
|
|
1058
|
-
<a href="https://github.com/
|
|
1067
|
+
<a href="https://github.com/qianguyihao/Web" target="_blank" title="qianguyihao/Web">qianguyihao/Web</a>
|
|
1059
1068
|
</div>
|
|
1060
1069
|
<div class="sub-title followers">
|
|
1061
1070
|
|
|
1062
|
-
<a class="language" target="_blank" href="https://github.com/topics/java" title="Programming Language Java">
|
|
1063
|
-
<span style="background-color: #b07219;"></span>Java
|
|
1064
|
-
</a>
|
|
1065
|
-
|
|
1066
1071
|
<span class="star" title="Stargazers Count">
|
|
1067
1072
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1068
1073
|
<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
1074
|
</svg>
|
|
1070
|
-
<span>
|
|
1075
|
+
<span>20614</span>
|
|
1071
1076
|
</span>
|
|
1072
1077
|
<span class="star" title="Repo Forked">
|
|
1073
1078
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
1074
1079
|
<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
1080
|
</path>
|
|
1076
1081
|
</svg>
|
|
1077
|
-
<span>
|
|
1082
|
+
<span>5479</span>
|
|
1078
1083
|
</span>
|
|
1079
1084
|
<span class="star">
|
|
1080
1085
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
1081
1086
|
<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
1087
|
</svg>
|
|
1083
|
-
<span>
|
|
1088
|
+
<span>59 stars today</span>
|
|
1084
1089
|
</span>
|
|
1085
1090
|
</div>
|
|
1086
1091
|
<div class="details">
|
|
@@ -1105,7 +1110,7 @@
|
|
|
1105
1110
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
1106
1111
|
</a>
|
|
1107
1112
|
</div>
|
|
1108
|
-
<div class="time">Last cache created on 2022/7/
|
|
1113
|
+
<div class="time">Last cache created on 2022/7/6 by Github API v3.</div>
|
|
1109
1114
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
1110
1115
|
</div>
|
|
1111
1116
|
</body>
|