@wcj/github-rank 25.12.8 → 25.12.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/repos.json +63757 -63721
- package/dist/trending-daily.json +57 -123
- package/dist/trending-monthly.json +120 -131
- package/dist/trending-weekly.json +103 -158
- package/dist/users.china.json +6582 -6474
- package/dist/users.json +11379 -11451
- package/dist/users.org.json +2207 -2135
- package/package.json +1 -1
- package/web/data/repos.json +63757 -63721
- package/web/data/trending-daily.json +57 -123
- package/web/data/trending-monthly.json +120 -131
- package/web/data/trending-weekly.json +103 -158
- package/web/data/users.china.json +6582 -6474
- package/web/data/users.json +11379 -11451
- package/web/data/users.org.json +2207 -2135
- package/web/index.html +9964 -10062
- package/web/org.html +1989 -1858
- package/web/repos.html +5982 -5980
- package/web/trending-monthly.html +160 -156
- package/web/trending-weekly.html +137 -289
- package/web/trending.html +87 -285
- package/web/users.china.html +6058 -5897
package/web/trending-weekly.html
CHANGED
|
@@ -28,35 +28,42 @@
|
|
|
28
28
|
--color-link-hover: #58a6ff;
|
|
29
29
|
--color-tab-fg: #e2e2e2;
|
|
30
30
|
--color-border: #000;
|
|
31
|
-
--color-neutral-muted: rgba(
|
|
31
|
+
--color-neutral-muted: rgba(165,171,177,0.2);
|
|
32
32
|
}
|
|
33
33
|
</style>
|
|
34
34
|
<style>
|
|
35
35
|
* { box-sizing: border-box; }
|
|
36
36
|
html, body, ul, li, h1 { margin: 0; padding: 0 }
|
|
37
37
|
html, body { font-size: 16px; font-family: -apple-system,"Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","WenQuanYi Micro Hei","Microsoft Yahei",sans-serif; }
|
|
38
|
+
body { padding: 0 12px; }
|
|
39
|
+
main {
|
|
40
|
+
max-width: 1440px;
|
|
41
|
+
margin: 0 auto;
|
|
42
|
+
min-height: 100vh;
|
|
43
|
+
background-color: var(--bg-secondary);
|
|
44
|
+
border-radius: 12px;
|
|
45
|
+
border: 1px solid var(--color-neutral-muted);
|
|
46
|
+
}
|
|
38
47
|
ul { list-style: none; }
|
|
39
|
-
|
|
40
48
|
a { color: var(--color-accent-fg); text-decoration: none; transition: all .2s ease-in; }
|
|
41
49
|
a:hover { color: var(--color-link-hover); text-decoration: underline; }
|
|
42
50
|
a.github-corner:hover .octo-arm { animation: octocat-wave 560ms infinite linear; }
|
|
43
51
|
a.github-corner svg { fill: #f1f1f1; color: #000; position: absolute; top: 0; border: 0; right: 0; z-index: 99; width: 70px; height: 70px; }
|
|
44
52
|
a.github-corner { position: fixed; z-index: 9999; top: 0; right: 0; }
|
|
45
53
|
|
|
46
|
-
.title { padding:
|
|
54
|
+
.title { padding: 5rem 20px 10px 20px; font-size: 32px; text-align: center; }
|
|
47
55
|
.title a svg { display: block; }
|
|
48
56
|
.title a { color: var(--color-accent-fg); display: inline-block; margin-left: 10px; }
|
|
49
|
-
.title dark-mode {
|
|
50
|
-
|
|
51
|
-
}
|
|
57
|
+
.title dark-mode { margin-right: 8px; }
|
|
58
|
+
.time { text-align: center; }
|
|
52
59
|
.time, .footer { padding: 5px 20px 2px 20px; font-size: 12px; color: #adadad; }
|
|
53
|
-
.tabs { padding:
|
|
60
|
+
.tabs { padding: 1rem 20px 3rem 20px; text-align: center;}
|
|
54
61
|
.tabs a { background: var(--color-tab-fg); display: inline-block; border-radius: 2px; margin: 2px 0; padding: 2px 5px; font-size: 12px; line-height: 16px; color: var(--color-accent-fg); }
|
|
55
62
|
.tabs a.active { background: #333; color: #efefef; }
|
|
56
63
|
.tabs a:hover:not(.active) { background: #efefef; }
|
|
57
|
-
.footer { padding:
|
|
58
|
-
.footer .time { padding: 0; }
|
|
59
|
-
.list { text-align: left; padding
|
|
64
|
+
.footer { padding: 2rem 20px 6rem 20px; font-size: 12px; color: #adadad; text-align: center; }
|
|
65
|
+
.footer .time { padding: 0; text-align: center; }
|
|
66
|
+
.list { text-align: left; padding: 16px;}
|
|
60
67
|
.list img { width: 36px; height: 36px; border-radius: 3px; display: block; margin: 0 auto; background-color: #e2e2e2; border: 0; overflow: hidden; }
|
|
61
68
|
.list li { padding: 10px; transition: all .3s; }
|
|
62
69
|
.list li.rank-title { margin: 0; padding: 3px 0 0 7px; margin-bottom: 10px; border-radius: 5px; font-size: 12px; line-height: 16px; }
|
|
@@ -129,7 +136,7 @@
|
|
|
129
136
|
</a>
|
|
130
137
|
|
|
131
138
|
</h1>
|
|
132
|
-
<div class="time">Last cache created on 2025/12/
|
|
139
|
+
<div class="time">Last cache created on 2025/12/29 by
|
|
133
140
|
|
|
134
141
|
|
|
135
142
|
|
|
@@ -141,6 +148,7 @@
|
|
|
141
148
|
<a class="" href="repos.html">Repos</a>
|
|
142
149
|
<a class="active" href="trending.html">Trending</a>
|
|
143
150
|
</div>
|
|
151
|
+
<main>
|
|
144
152
|
<ul class="list repos trending">
|
|
145
153
|
<li class="rank-title">
|
|
146
154
|
<span class="select">
|
|
@@ -153,8 +161,10 @@
|
|
|
153
161
|
<li>
|
|
154
162
|
<div class="info">
|
|
155
163
|
<div class="rank">
|
|
156
|
-
|
|
157
|
-
<
|
|
164
|
+
|
|
165
|
+
<span title="Ranking 1">🥇</span>
|
|
166
|
+
|
|
167
|
+
<a href="https://github.com/exo-explore/exo" target="_blank" title="exo-explore/exo">exo-explore/exo</a>
|
|
158
168
|
</div>
|
|
159
169
|
<div class="sub-title followers">
|
|
160
170
|
|
|
@@ -166,24 +176,24 @@
|
|
|
166
176
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
167
177
|
<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>
|
|
168
178
|
</svg>
|
|
169
|
-
<span>
|
|
179
|
+
<span>38.696k</span>
|
|
170
180
|
</span>
|
|
171
181
|
<span class="star" title="Repo Forked">
|
|
172
182
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
173
183
|
<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">
|
|
174
184
|
</path>
|
|
175
185
|
</svg>
|
|
176
|
-
<span>
|
|
186
|
+
<span>2591</span>
|
|
177
187
|
</span>
|
|
178
188
|
<span class="star">
|
|
179
189
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
180
190
|
<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>
|
|
181
191
|
</svg>
|
|
182
|
-
<span>
|
|
192
|
+
<span>3545 stars this week</span>
|
|
183
193
|
</span>
|
|
184
194
|
</div>
|
|
185
195
|
<div class="details">
|
|
186
|
-
|
|
196
|
+
Run your own AI cluster at home with everyday devices 📱💻 🖥️⌚
|
|
187
197
|
</div>
|
|
188
198
|
</div>
|
|
189
199
|
</li>
|
|
@@ -191,37 +201,39 @@
|
|
|
191
201
|
<li>
|
|
192
202
|
<div class="info">
|
|
193
203
|
<div class="rank">
|
|
194
|
-
|
|
195
|
-
<
|
|
204
|
+
|
|
205
|
+
<span title="Ranking 2">🥈</span>
|
|
206
|
+
|
|
207
|
+
<a href="https://github.com/anthropics/skills" target="_blank" title="anthropics/skills">anthropics/skills</a>
|
|
196
208
|
</div>
|
|
197
209
|
<div class="sub-title followers">
|
|
198
210
|
|
|
199
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
200
|
-
<span style="background-color: #
|
|
211
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
212
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
201
213
|
</a>
|
|
202
214
|
|
|
203
215
|
<span class="star" title="Stargazers Count">
|
|
204
216
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
205
217
|
<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>
|
|
206
218
|
</svg>
|
|
207
|
-
<span>
|
|
219
|
+
<span>28.272k</span>
|
|
208
220
|
</span>
|
|
209
221
|
<span class="star" title="Repo Forked">
|
|
210
222
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
211
223
|
<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">
|
|
212
224
|
</path>
|
|
213
225
|
</svg>
|
|
214
|
-
<span>
|
|
226
|
+
<span>2598</span>
|
|
215
227
|
</span>
|
|
216
228
|
<span class="star">
|
|
217
229
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
218
230
|
<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>
|
|
219
231
|
</svg>
|
|
220
|
-
<span>
|
|
232
|
+
<span>4444 stars this week</span>
|
|
221
233
|
</span>
|
|
222
234
|
</div>
|
|
223
235
|
<div class="details">
|
|
224
|
-
|
|
236
|
+
Public repository for Agent Skills
|
|
225
237
|
</div>
|
|
226
238
|
</div>
|
|
227
239
|
</li>
|
|
@@ -229,37 +241,39 @@
|
|
|
229
241
|
<li>
|
|
230
242
|
<div class="info">
|
|
231
243
|
<div class="rank">
|
|
232
|
-
|
|
233
|
-
<
|
|
244
|
+
|
|
245
|
+
<span title="Ranking 3">🥉</span>
|
|
246
|
+
|
|
247
|
+
<a href="https://github.com/davila7/claude-code-templates" target="_blank" title="davila7/claude-code-templates">davila7/claude-code-templates</a>
|
|
234
248
|
</div>
|
|
235
249
|
<div class="sub-title followers">
|
|
236
250
|
|
|
237
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
238
|
-
<span style="background-color: #
|
|
251
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
252
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
239
253
|
</a>
|
|
240
254
|
|
|
241
255
|
<span class="star" title="Stargazers Count">
|
|
242
256
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
243
257
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
244
258
|
</svg>
|
|
245
|
-
<span>
|
|
259
|
+
<span>13.99k</span>
|
|
246
260
|
</span>
|
|
247
261
|
<span class="star" title="Repo Forked">
|
|
248
262
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
249
263
|
<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">
|
|
250
264
|
</path>
|
|
251
265
|
</svg>
|
|
252
|
-
<span>
|
|
266
|
+
<span>1209</span>
|
|
253
267
|
</span>
|
|
254
268
|
<span class="star">
|
|
255
269
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
256
270
|
<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>
|
|
257
271
|
</svg>
|
|
258
|
-
<span>
|
|
272
|
+
<span>1102 stars this week</span>
|
|
259
273
|
</span>
|
|
260
274
|
</div>
|
|
261
275
|
<div class="details">
|
|
262
|
-
|
|
276
|
+
CLI tool for configuring and monitoring Claude Code
|
|
263
277
|
</div>
|
|
264
278
|
</div>
|
|
265
279
|
</li>
|
|
@@ -267,8 +281,10 @@
|
|
|
267
281
|
<li>
|
|
268
282
|
<div class="info">
|
|
269
283
|
<div class="rank">
|
|
284
|
+
|
|
270
285
|
<span title="Ranking 4">4</span>
|
|
271
|
-
|
|
286
|
+
|
|
287
|
+
<a href="https://github.com/sgl-project/mini-sglang" target="_blank" title="sgl-project/mini-sglang">sgl-project/mini-sglang</a>
|
|
272
288
|
</div>
|
|
273
289
|
<div class="sub-title followers">
|
|
274
290
|
|
|
@@ -280,24 +296,24 @@
|
|
|
280
296
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
281
297
|
<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>
|
|
282
298
|
</svg>
|
|
283
|
-
<span>
|
|
299
|
+
<span>2.579k</span>
|
|
284
300
|
</span>
|
|
285
301
|
<span class="star" title="Repo Forked">
|
|
286
302
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
287
303
|
<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">
|
|
288
304
|
</path>
|
|
289
305
|
</svg>
|
|
290
|
-
<span>
|
|
306
|
+
<span>247</span>
|
|
291
307
|
</span>
|
|
292
308
|
<span class="star">
|
|
293
309
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
294
310
|
<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>
|
|
295
311
|
</svg>
|
|
296
|
-
<span>
|
|
312
|
+
<span>739 stars this week</span>
|
|
297
313
|
</span>
|
|
298
314
|
</div>
|
|
299
315
|
<div class="details">
|
|
300
|
-
A
|
|
316
|
+
A compact implementation of SGLang, designed to demystify the complexities of modern LLM serving systems.
|
|
301
317
|
</div>
|
|
302
318
|
</div>
|
|
303
319
|
</li>
|
|
@@ -305,37 +321,39 @@
|
|
|
305
321
|
<li>
|
|
306
322
|
<div class="info">
|
|
307
323
|
<div class="rank">
|
|
324
|
+
|
|
308
325
|
<span title="Ranking 5">5</span>
|
|
309
|
-
|
|
326
|
+
|
|
327
|
+
<a href="https://github.com/anthropics/claude-code" target="_blank" title="anthropics/claude-code">anthropics/claude-code</a>
|
|
310
328
|
</div>
|
|
311
329
|
<div class="sub-title followers">
|
|
312
330
|
|
|
313
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
314
|
-
<span style="background-color: #
|
|
331
|
+
<a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
|
|
332
|
+
<span style="background-color: #89e051;"></span>Shell
|
|
315
333
|
</a>
|
|
316
334
|
|
|
317
335
|
<span class="star" title="Stargazers Count">
|
|
318
336
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
319
337
|
<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>
|
|
320
338
|
</svg>
|
|
321
|
-
<span>
|
|
339
|
+
<span>49.299k</span>
|
|
322
340
|
</span>
|
|
323
341
|
<span class="star" title="Repo Forked">
|
|
324
342
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
325
343
|
<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">
|
|
326
344
|
</path>
|
|
327
345
|
</svg>
|
|
328
|
-
<span>
|
|
346
|
+
<span>3493</span>
|
|
329
347
|
</span>
|
|
330
348
|
<span class="star">
|
|
331
349
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
332
350
|
<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>
|
|
333
351
|
</svg>
|
|
334
|
-
<span>
|
|
352
|
+
<span>1644 stars this week</span>
|
|
335
353
|
</span>
|
|
336
354
|
</div>
|
|
337
355
|
<div class="details">
|
|
338
|
-
|
|
356
|
+
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
|
|
339
357
|
</div>
|
|
340
358
|
</div>
|
|
341
359
|
</li>
|
|
@@ -343,8 +361,10 @@
|
|
|
343
361
|
<li>
|
|
344
362
|
<div class="info">
|
|
345
363
|
<div class="rank">
|
|
364
|
+
|
|
346
365
|
<span title="Ranking 6">6</span>
|
|
347
|
-
|
|
366
|
+
|
|
367
|
+
<a href="https://github.com/danielmiessler/Fabric" target="_blank" title="danielmiessler/Fabric">danielmiessler/Fabric</a>
|
|
348
368
|
</div>
|
|
349
369
|
<div class="sub-title followers">
|
|
350
370
|
|
|
@@ -356,24 +376,24 @@
|
|
|
356
376
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
357
377
|
<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>
|
|
358
378
|
</svg>
|
|
359
|
-
<span>
|
|
379
|
+
<span>37.101k</span>
|
|
360
380
|
</span>
|
|
361
381
|
<span class="star" title="Repo Forked">
|
|
362
382
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
363
383
|
<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">
|
|
364
384
|
</path>
|
|
365
385
|
</svg>
|
|
366
|
-
<span>
|
|
386
|
+
<span>3718</span>
|
|
367
387
|
</span>
|
|
368
388
|
<span class="star">
|
|
369
389
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
370
390
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
371
391
|
</svg>
|
|
372
|
-
<span>
|
|
392
|
+
<span>1487 stars this week</span>
|
|
373
393
|
</span>
|
|
374
394
|
</div>
|
|
375
395
|
<div class="details">
|
|
376
|
-
|
|
396
|
+
Fabric is an open-source framework for augmenting humans using AI. It provides a modular system for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere.
|
|
377
397
|
</div>
|
|
378
398
|
</div>
|
|
379
399
|
</li>
|
|
@@ -381,37 +401,39 @@
|
|
|
381
401
|
<li>
|
|
382
402
|
<div class="info">
|
|
383
403
|
<div class="rank">
|
|
404
|
+
|
|
384
405
|
<span title="Ranking 7">7</span>
|
|
385
|
-
|
|
406
|
+
|
|
407
|
+
<a href="https://github.com/google/A2UI" target="_blank" title="google/A2UI">google/A2UI</a>
|
|
386
408
|
</div>
|
|
387
409
|
<div class="sub-title followers">
|
|
388
410
|
|
|
389
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
390
|
-
<span style="background-color: #
|
|
411
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
412
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
391
413
|
</a>
|
|
392
414
|
|
|
393
415
|
<span class="star" title="Stargazers Count">
|
|
394
416
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
395
417
|
<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>
|
|
396
418
|
</svg>
|
|
397
|
-
<span>
|
|
419
|
+
<span>7.962k</span>
|
|
398
420
|
</span>
|
|
399
421
|
<span class="star" title="Repo Forked">
|
|
400
422
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
401
423
|
<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">
|
|
402
424
|
</path>
|
|
403
425
|
</svg>
|
|
404
|
-
<span>
|
|
426
|
+
<span>528</span>
|
|
405
427
|
</span>
|
|
406
428
|
<span class="star">
|
|
407
429
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
408
430
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
409
431
|
</svg>
|
|
410
|
-
<span>
|
|
432
|
+
<span>2129 stars this week</span>
|
|
411
433
|
</span>
|
|
412
434
|
</div>
|
|
413
435
|
<div class="details">
|
|
414
|
-
|
|
436
|
+
|
|
415
437
|
</div>
|
|
416
438
|
</div>
|
|
417
439
|
</li>
|
|
@@ -419,37 +441,39 @@
|
|
|
419
441
|
<li>
|
|
420
442
|
<div class="info">
|
|
421
443
|
<div class="rank">
|
|
444
|
+
|
|
422
445
|
<span title="Ranking 8">8</span>
|
|
423
|
-
|
|
446
|
+
|
|
447
|
+
<a href="https://github.com/google/langextract" target="_blank" title="google/langextract">google/langextract</a>
|
|
424
448
|
</div>
|
|
425
449
|
<div class="sub-title followers">
|
|
426
450
|
|
|
427
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
428
|
-
<span style="background-color: #
|
|
451
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
452
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
429
453
|
</a>
|
|
430
454
|
|
|
431
455
|
<span class="star" title="Stargazers Count">
|
|
432
456
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
433
457
|
<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>
|
|
434
458
|
</svg>
|
|
435
|
-
<span>
|
|
459
|
+
<span>19.626k</span>
|
|
436
460
|
</span>
|
|
437
461
|
<span class="star" title="Repo Forked">
|
|
438
462
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
439
463
|
<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">
|
|
440
464
|
</path>
|
|
441
465
|
</svg>
|
|
442
|
-
<span>
|
|
466
|
+
<span>1373</span>
|
|
443
467
|
</span>
|
|
444
468
|
<span class="star">
|
|
445
469
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
446
470
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
447
471
|
</svg>
|
|
448
|
-
<span>
|
|
472
|
+
<span>1887 stars this week</span>
|
|
449
473
|
</span>
|
|
450
474
|
</div>
|
|
451
475
|
<div class="details">
|
|
452
|
-
|
|
476
|
+
A Python library for extracting structured information from unstructured text using LLMs with precise source grounding and interactive visualization.
|
|
453
477
|
</div>
|
|
454
478
|
</div>
|
|
455
479
|
</li>
|
|
@@ -457,75 +481,39 @@
|
|
|
457
481
|
<li>
|
|
458
482
|
<div class="info">
|
|
459
483
|
<div class="rank">
|
|
460
|
-
<span title="Ranking 9">9</span>
|
|
461
|
-
<a href="https://github.com/FortAwesome/Font-Awesome" target="_blank" title="FortAwesome/Font-Awesome">FortAwesome/Font-Awesome</a>
|
|
462
|
-
</div>
|
|
463
|
-
<div class="sub-title followers">
|
|
464
484
|
|
|
465
|
-
<
|
|
466
|
-
<span style="background-color: #f1e05a;"></span>JavaScript
|
|
467
|
-
</a>
|
|
485
|
+
<span title="Ranking 9">9</span>
|
|
468
486
|
|
|
469
|
-
<
|
|
470
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
471
|
-
<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>
|
|
472
|
-
</svg>
|
|
473
|
-
<span>75.941k</span>
|
|
474
|
-
</span>
|
|
475
|
-
<span class="star" title="Repo Forked">
|
|
476
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
477
|
-
<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">
|
|
478
|
-
</path>
|
|
479
|
-
</svg>
|
|
480
|
-
<span>12211</span>
|
|
481
|
-
</span>
|
|
482
|
-
<span class="star">
|
|
483
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
484
|
-
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
485
|
-
</svg>
|
|
486
|
-
<span>108 stars this week</span>
|
|
487
|
-
</span>
|
|
488
|
-
</div>
|
|
489
|
-
<div class="details">
|
|
490
|
-
The iconic SVG, font, and CSS toolkit
|
|
491
|
-
</div>
|
|
492
|
-
</div>
|
|
493
|
-
</li>
|
|
494
|
-
|
|
495
|
-
<li>
|
|
496
|
-
<div class="info">
|
|
497
|
-
<div class="rank">
|
|
498
|
-
<span title="Ranking 10">10</span>
|
|
499
|
-
<a href="https://github.com/gunnarmorling/1brc" target="_blank" title="gunnarmorling/1brc">gunnarmorling/1brc</a>
|
|
487
|
+
<a href="https://github.com/resemble-ai/chatterbox" target="_blank" title="resemble-ai/chatterbox">resemble-ai/chatterbox</a>
|
|
500
488
|
</div>
|
|
501
489
|
<div class="sub-title followers">
|
|
502
490
|
|
|
503
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
504
|
-
<span style="background-color: #
|
|
491
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
492
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
505
493
|
</a>
|
|
506
494
|
|
|
507
495
|
<span class="star" title="Stargazers Count">
|
|
508
496
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
509
497
|
<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>
|
|
510
498
|
</svg>
|
|
511
|
-
<span>
|
|
499
|
+
<span>18.532k</span>
|
|
512
500
|
</span>
|
|
513
501
|
<span class="star" title="Repo Forked">
|
|
514
502
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
515
503
|
<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">
|
|
516
504
|
</path>
|
|
517
505
|
</svg>
|
|
518
|
-
<span>
|
|
506
|
+
<span>2445</span>
|
|
519
507
|
</span>
|
|
520
508
|
<span class="star">
|
|
521
509
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
522
510
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
523
511
|
</svg>
|
|
524
|
-
<span>
|
|
512
|
+
<span>1699 stars this week</span>
|
|
525
513
|
</span>
|
|
526
514
|
</div>
|
|
527
515
|
<div class="details">
|
|
528
|
-
|
|
516
|
+
SoTA open-source TTS
|
|
529
517
|
</div>
|
|
530
518
|
</div>
|
|
531
519
|
</li>
|
|
@@ -533,46 +521,10 @@
|
|
|
533
521
|
<li>
|
|
534
522
|
<div class="info">
|
|
535
523
|
<div class="rank">
|
|
536
|
-
<span title="Ranking 11">11</span>
|
|
537
|
-
<a href="https://github.com/android/nav3-recipes" target="_blank" title="android/nav3-recipes">android/nav3-recipes</a>
|
|
538
|
-
</div>
|
|
539
|
-
<div class="sub-title followers">
|
|
540
524
|
|
|
541
|
-
<
|
|
542
|
-
<span style="background-color: #A97BFF;"></span>Kotlin
|
|
543
|
-
</a>
|
|
525
|
+
<span title="Ranking 10">10</span>
|
|
544
526
|
|
|
545
|
-
<
|
|
546
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
547
|
-
<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>
|
|
548
|
-
</svg>
|
|
549
|
-
<span>0.985k</span>
|
|
550
|
-
</span>
|
|
551
|
-
<span class="star" title="Repo Forked">
|
|
552
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
553
|
-
<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">
|
|
554
|
-
</path>
|
|
555
|
-
</svg>
|
|
556
|
-
<span>89</span>
|
|
557
|
-
</span>
|
|
558
|
-
<span class="star">
|
|
559
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
560
|
-
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
561
|
-
</svg>
|
|
562
|
-
<span>80 stars this week</span>
|
|
563
|
-
</span>
|
|
564
|
-
</div>
|
|
565
|
-
<div class="details">
|
|
566
|
-
Implement common use cases with Jetpack Navigation 3
|
|
567
|
-
</div>
|
|
568
|
-
</div>
|
|
569
|
-
</li>
|
|
570
|
-
|
|
571
|
-
<li>
|
|
572
|
-
<div class="info">
|
|
573
|
-
<div class="rank">
|
|
574
|
-
<span title="Ranking 12">12</span>
|
|
575
|
-
<a href="https://github.com/ostris/ai-toolkit" target="_blank" title="ostris/ai-toolkit">ostris/ai-toolkit</a>
|
|
527
|
+
<a href="https://github.com/pollen-robotics/reachy_mini" target="_blank" title="pollen-robotics/reachy_mini">pollen-robotics/reachy_mini</a>
|
|
576
528
|
</div>
|
|
577
529
|
<div class="sub-title followers">
|
|
578
530
|
|
|
@@ -584,24 +536,24 @@
|
|
|
584
536
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
585
537
|
<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>
|
|
586
538
|
</svg>
|
|
587
|
-
<span>
|
|
539
|
+
<span>0.626k</span>
|
|
588
540
|
</span>
|
|
589
541
|
<span class="star" title="Repo Forked">
|
|
590
542
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
591
543
|
<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">
|
|
592
544
|
</path>
|
|
593
545
|
</svg>
|
|
594
|
-
<span>
|
|
546
|
+
<span>90</span>
|
|
595
547
|
</span>
|
|
596
548
|
<span class="star">
|
|
597
549
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
598
550
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
599
551
|
</svg>
|
|
600
|
-
<span>
|
|
552
|
+
<span>176 stars this week</span>
|
|
601
553
|
</span>
|
|
602
554
|
</div>
|
|
603
555
|
<div class="details">
|
|
604
|
-
|
|
556
|
+
Reachy Mini's SDK
|
|
605
557
|
</div>
|
|
606
558
|
</div>
|
|
607
559
|
</li>
|
|
@@ -609,8 +561,10 @@
|
|
|
609
561
|
<li>
|
|
610
562
|
<div class="info">
|
|
611
563
|
<div class="rank">
|
|
612
|
-
|
|
613
|
-
<
|
|
564
|
+
|
|
565
|
+
<span title="Ranking 11">11</span>
|
|
566
|
+
|
|
567
|
+
<a href="https://github.com/danielmiessler/Personal_AI_Infrastructure" target="_blank" title="danielmiessler/Personal_AI_Infrastructure">danielmiessler/Personal_AI_Infrastructure</a>
|
|
614
568
|
</div>
|
|
615
569
|
<div class="sub-title followers">
|
|
616
570
|
|
|
@@ -622,24 +576,24 @@
|
|
|
622
576
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
623
577
|
<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>
|
|
624
578
|
</svg>
|
|
625
|
-
<span>
|
|
579
|
+
<span>2.407k</span>
|
|
626
580
|
</span>
|
|
627
581
|
<span class="star" title="Repo Forked">
|
|
628
582
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
629
583
|
<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">
|
|
630
584
|
</path>
|
|
631
585
|
</svg>
|
|
632
|
-
<span>
|
|
586
|
+
<span>459</span>
|
|
633
587
|
</span>
|
|
634
588
|
<span class="star">
|
|
635
589
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
636
590
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
637
591
|
</svg>
|
|
638
|
-
<span>
|
|
592
|
+
<span>718 stars this week</span>
|
|
639
593
|
</span>
|
|
640
594
|
</div>
|
|
641
595
|
<div class="details">
|
|
642
|
-
|
|
596
|
+
Personal AI Infrastructure for upgrading humans.
|
|
643
597
|
</div>
|
|
644
598
|
</div>
|
|
645
599
|
</li>
|
|
@@ -647,75 +601,39 @@
|
|
|
647
601
|
<li>
|
|
648
602
|
<div class="info">
|
|
649
603
|
<div class="rank">
|
|
650
|
-
<span title="Ranking 14">14</span>
|
|
651
|
-
<a href="https://github.com/anthropics/claude-code" target="_blank" title="anthropics/claude-code">anthropics/claude-code</a>
|
|
652
|
-
</div>
|
|
653
|
-
<div class="sub-title followers">
|
|
654
604
|
|
|
655
|
-
<
|
|
656
|
-
<span style="background-color: #89e051;"></span>Shell
|
|
657
|
-
</a>
|
|
605
|
+
<span title="Ranking 12">12</span>
|
|
658
606
|
|
|
659
|
-
<
|
|
660
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
661
|
-
<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>
|
|
662
|
-
</svg>
|
|
663
|
-
<span>44.951k</span>
|
|
664
|
-
</span>
|
|
665
|
-
<span class="star" title="Repo Forked">
|
|
666
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
667
|
-
<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">
|
|
668
|
-
</path>
|
|
669
|
-
</svg>
|
|
670
|
-
<span>3121</span>
|
|
671
|
-
</span>
|
|
672
|
-
<span class="star">
|
|
673
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
674
|
-
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
675
|
-
</svg>
|
|
676
|
-
<span>1016 stars this week</span>
|
|
677
|
-
</span>
|
|
678
|
-
</div>
|
|
679
|
-
<div class="details">
|
|
680
|
-
Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
|
|
681
|
-
</div>
|
|
682
|
-
</div>
|
|
683
|
-
</li>
|
|
684
|
-
|
|
685
|
-
<li>
|
|
686
|
-
<div class="info">
|
|
687
|
-
<div class="rank">
|
|
688
|
-
<span title="Ranking 15">15</span>
|
|
689
|
-
<a href="https://github.com/basecamp/once-campfire" target="_blank" title="basecamp/once-campfire">basecamp/once-campfire</a>
|
|
607
|
+
<a href="https://github.com/makeplane/plane" target="_blank" title="makeplane/plane">makeplane/plane</a>
|
|
690
608
|
</div>
|
|
691
609
|
<div class="sub-title followers">
|
|
692
610
|
|
|
693
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
694
|
-
<span style="background-color: #
|
|
611
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
612
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
695
613
|
</a>
|
|
696
614
|
|
|
697
615
|
<span class="star" title="Stargazers Count">
|
|
698
616
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
699
617
|
<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>
|
|
700
618
|
</svg>
|
|
701
|
-
<span>
|
|
619
|
+
<span>42.136k</span>
|
|
702
620
|
</span>
|
|
703
621
|
<span class="star" title="Repo Forked">
|
|
704
622
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
705
623
|
<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">
|
|
706
624
|
</path>
|
|
707
625
|
</svg>
|
|
708
|
-
<span>
|
|
626
|
+
<span>3099</span>
|
|
709
627
|
</span>
|
|
710
628
|
<span class="star">
|
|
711
629
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
712
630
|
<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>
|
|
713
631
|
</svg>
|
|
714
|
-
<span>
|
|
632
|
+
<span>1414 stars this week</span>
|
|
715
633
|
</span>
|
|
716
634
|
</div>
|
|
717
635
|
<div class="details">
|
|
718
|
-
|
|
636
|
+
🔥🔥🔥 Open-source Jira, Linear, Monday, and ClickUp alternative. Plane is a modern project management platform to manage tasks, sprints, docs, and triage.
|
|
719
637
|
</div>
|
|
720
638
|
</div>
|
|
721
639
|
</li>
|
|
@@ -723,75 +641,39 @@
|
|
|
723
641
|
<li>
|
|
724
642
|
<div class="info">
|
|
725
643
|
<div class="rank">
|
|
726
|
-
<span title="Ranking 16">16</span>
|
|
727
|
-
<a href="https://github.com/TelegramMessenger/Telegram-iOS" target="_blank" title="TelegramMessenger/Telegram-iOS">TelegramMessenger/Telegram-iOS</a>
|
|
728
|
-
</div>
|
|
729
|
-
<div class="sub-title followers">
|
|
730
644
|
|
|
731
|
-
<
|
|
732
|
-
<span style="background-color: #F05138;"></span>Swift
|
|
733
|
-
</a>
|
|
645
|
+
<span title="Ranking 13">13</span>
|
|
734
646
|
|
|
735
|
-
<
|
|
736
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
737
|
-
<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>
|
|
738
|
-
</svg>
|
|
739
|
-
<span>7.636k</span>
|
|
740
|
-
</span>
|
|
741
|
-
<span class="star" title="Repo Forked">
|
|
742
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
743
|
-
<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">
|
|
744
|
-
</path>
|
|
745
|
-
</svg>
|
|
746
|
-
<span>2199</span>
|
|
747
|
-
</span>
|
|
748
|
-
<span class="star">
|
|
749
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
750
|
-
<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>
|
|
751
|
-
</svg>
|
|
752
|
-
<span>127 stars this week</span>
|
|
753
|
-
</span>
|
|
754
|
-
</div>
|
|
755
|
-
<div class="details">
|
|
756
|
-
Telegram-iOS
|
|
757
|
-
</div>
|
|
758
|
-
</div>
|
|
759
|
-
</li>
|
|
760
|
-
|
|
761
|
-
<li>
|
|
762
|
-
<div class="info">
|
|
763
|
-
<div class="rank">
|
|
764
|
-
<span title="Ranking 17">17</span>
|
|
765
|
-
<a href="https://github.com/aliasrobotics/cai" target="_blank" title="aliasrobotics/cai">aliasrobotics/cai</a>
|
|
647
|
+
<a href="https://github.com/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
766
648
|
</div>
|
|
767
649
|
<div class="sub-title followers">
|
|
768
650
|
|
|
769
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
770
|
-
<span style="background-color: #
|
|
651
|
+
<a class="language" target="_blank" href="https://github.com/topics/typescript" title="Programming Language TypeScript">
|
|
652
|
+
<span style="background-color: #3178c6;"></span>TypeScript
|
|
771
653
|
</a>
|
|
772
654
|
|
|
773
655
|
<span class="star" title="Stargazers Count">
|
|
774
656
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
775
657
|
<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>
|
|
776
658
|
</svg>
|
|
777
|
-
<span>
|
|
659
|
+
<span>43.305k</span>
|
|
778
660
|
</span>
|
|
779
661
|
<span class="star" title="Repo Forked">
|
|
780
662
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
781
663
|
<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">
|
|
782
664
|
</path>
|
|
783
665
|
</svg>
|
|
784
|
-
<span>
|
|
666
|
+
<span>3713</span>
|
|
785
667
|
</span>
|
|
786
668
|
<span class="star">
|
|
787
669
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
788
670
|
<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>
|
|
789
671
|
</svg>
|
|
790
|
-
<span>
|
|
672
|
+
<span>2418 stars this week</span>
|
|
791
673
|
</span>
|
|
792
674
|
</div>
|
|
793
675
|
<div class="details">
|
|
794
|
-
|
|
676
|
+
The open source coding agent.
|
|
795
677
|
</div>
|
|
796
678
|
</div>
|
|
797
679
|
</li>
|
|
@@ -799,80 +681,46 @@
|
|
|
799
681
|
<li>
|
|
800
682
|
<div class="info">
|
|
801
683
|
<div class="rank">
|
|
802
|
-
<span title="Ranking 18">18</span>
|
|
803
|
-
<a href="https://github.com/comfyanonymous/ComfyUI" target="_blank" title="comfyanonymous/ComfyUI">comfyanonymous/ComfyUI</a>
|
|
804
|
-
</div>
|
|
805
|
-
<div class="sub-title followers">
|
|
806
684
|
|
|
807
|
-
<
|
|
808
|
-
<span style="background-color: #3572A5;"></span>Python
|
|
809
|
-
</a>
|
|
685
|
+
<span title="Ranking 14">14</span>
|
|
810
686
|
|
|
811
|
-
<
|
|
812
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
813
|
-
<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>
|
|
814
|
-
</svg>
|
|
815
|
-
<span>96.03k</span>
|
|
816
|
-
</span>
|
|
817
|
-
<span class="star" title="Repo Forked">
|
|
818
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
819
|
-
<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">
|
|
820
|
-
</path>
|
|
821
|
-
</svg>
|
|
822
|
-
<span>10864</span>
|
|
823
|
-
</span>
|
|
824
|
-
<span class="star">
|
|
825
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
826
|
-
<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>
|
|
827
|
-
</svg>
|
|
828
|
-
<span>1046 stars this week</span>
|
|
829
|
-
</span>
|
|
830
|
-
</div>
|
|
831
|
-
<div class="details">
|
|
832
|
-
The most powerful and modular diffusion model GUI, api and backend with a graph/nodes interface.
|
|
833
|
-
</div>
|
|
834
|
-
</div>
|
|
835
|
-
</li>
|
|
836
|
-
|
|
837
|
-
<li>
|
|
838
|
-
<div class="info">
|
|
839
|
-
<div class="rank">
|
|
840
|
-
<span title="Ranking 19">19</span>
|
|
841
|
-
<a href="https://github.com/minio/minio" target="_blank" title="minio/minio">minio/minio</a>
|
|
687
|
+
<a href="https://github.com/AUTOMATIC1111/stable-diffusion-webui" target="_blank" title="AUTOMATIC1111/stable-diffusion-webui">AUTOMATIC1111/stable-diffusion-webui</a>
|
|
842
688
|
</div>
|
|
843
689
|
<div class="sub-title followers">
|
|
844
690
|
|
|
845
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
846
|
-
<span style="background-color: #
|
|
691
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
692
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
847
693
|
</a>
|
|
848
694
|
|
|
849
695
|
<span class="star" title="Stargazers Count">
|
|
850
696
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
851
697
|
<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>
|
|
852
698
|
</svg>
|
|
853
|
-
<span>
|
|
699
|
+
<span>159.412k</span>
|
|
854
700
|
</span>
|
|
855
701
|
<span class="star" title="Repo Forked">
|
|
856
702
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
857
703
|
<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">
|
|
858
704
|
</path>
|
|
859
705
|
</svg>
|
|
860
|
-
<span>
|
|
706
|
+
<span>29651</span>
|
|
861
707
|
</span>
|
|
862
708
|
<span class="star">
|
|
863
709
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
864
710
|
<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>
|
|
865
711
|
</svg>
|
|
866
|
-
<span>
|
|
712
|
+
<span>327 stars this week</span>
|
|
867
713
|
</span>
|
|
868
714
|
</div>
|
|
869
715
|
<div class="details">
|
|
870
|
-
|
|
716
|
+
Stable Diffusion web UI
|
|
871
717
|
</div>
|
|
872
718
|
</div>
|
|
873
719
|
</li>
|
|
874
720
|
|
|
875
721
|
</ul>
|
|
722
|
+
|
|
723
|
+
</main>
|
|
876
724
|
<div class="footer">
|
|
877
725
|
<div>
|
|
878
726
|
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">
|
|
@@ -891,7 +739,7 @@
|
|
|
891
739
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
892
740
|
</a>
|
|
893
741
|
</div>
|
|
894
|
-
<div class="time">Last cache created on 2025/12/
|
|
742
|
+
<div class="time">Last cache created on 2025/12/29 by Github API v3.</div>
|
|
895
743
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
896
744
|
</div>
|
|
897
745
|
</body>
|