@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.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,37 +161,39 @@
|
|
|
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/Flowseal/zapret-discord-youtube" target="_blank" title="Flowseal/zapret-discord-youtube">Flowseal/zapret-discord-youtube</a>
|
|
158
168
|
</div>
|
|
159
169
|
<div class="sub-title followers">
|
|
160
170
|
|
|
161
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
162
|
-
<span style="background-color: #
|
|
171
|
+
<a class="language" target="_blank" href="https://github.com/topics/batchfile" title="Programming Language Batchfile">
|
|
172
|
+
<span style="background-color: #C1F12E;"></span>Batchfile
|
|
163
173
|
</a>
|
|
164
174
|
|
|
165
175
|
<span class="star" title="Stargazers Count">
|
|
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>20.147k</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>1667</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>196 stars today</span>
|
|
183
193
|
</span>
|
|
184
194
|
</div>
|
|
185
195
|
<div class="details">
|
|
186
|
-
|
|
196
|
+
|
|
187
197
|
</div>
|
|
188
198
|
</div>
|
|
189
199
|
</li>
|
|
@@ -191,8 +201,10 @@
|
|
|
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/TheAlgorithms/Python" target="_blank" title="TheAlgorithms/Python">TheAlgorithms/Python</a>
|
|
196
208
|
</div>
|
|
197
209
|
<div class="sub-title followers">
|
|
198
210
|
|
|
@@ -204,24 +216,24 @@
|
|
|
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>215.827k</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>49763</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>372 stars today</span>
|
|
221
233
|
</span>
|
|
222
234
|
</div>
|
|
223
235
|
<div class="details">
|
|
224
|
-
|
|
236
|
+
All Algorithms implemented in Python
|
|
225
237
|
</div>
|
|
226
238
|
</div>
|
|
227
239
|
</li>
|
|
@@ -229,75 +241,39 @@
|
|
|
229
241
|
<li>
|
|
230
242
|
<div class="info">
|
|
231
243
|
<div class="rank">
|
|
232
|
-
<span title="Ranking 3">3</span>
|
|
233
|
-
<a href="https://github.com/patchy631/ai-engineering-hub" target="_blank" title="patchy631/ai-engineering-hub">patchy631/ai-engineering-hub</a>
|
|
234
|
-
</div>
|
|
235
|
-
<div class="sub-title followers">
|
|
236
244
|
|
|
237
|
-
<
|
|
238
|
-
<span style="background-color: #DA5B0B;"></span>JupyterNotebook
|
|
239
|
-
</a>
|
|
245
|
+
<span title="Ranking 3">🥉</span>
|
|
240
246
|
|
|
241
|
-
<
|
|
242
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
243
|
-
<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
|
-
</svg>
|
|
245
|
-
<span>21.741k</span>
|
|
246
|
-
</span>
|
|
247
|
-
<span class="star" title="Repo Forked">
|
|
248
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
249
|
-
<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
|
-
</path>
|
|
251
|
-
</svg>
|
|
252
|
-
<span>3592</span>
|
|
253
|
-
</span>
|
|
254
|
-
<span class="star">
|
|
255
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
256
|
-
<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
|
-
</svg>
|
|
258
|
-
<span>268 stars today</span>
|
|
259
|
-
</span>
|
|
260
|
-
</div>
|
|
261
|
-
<div class="details">
|
|
262
|
-
In-depth tutorials on LLMs, RAGs and real-world AI agent applications.
|
|
263
|
-
</div>
|
|
264
|
-
</div>
|
|
265
|
-
</li>
|
|
266
|
-
|
|
267
|
-
<li>
|
|
268
|
-
<div class="info">
|
|
269
|
-
<div class="rank">
|
|
270
|
-
<span title="Ranking 4">4</span>
|
|
271
|
-
<a href="https://github.com/TelegramMessenger/Telegram-iOS" target="_blank" title="TelegramMessenger/Telegram-iOS">TelegramMessenger/Telegram-iOS</a>
|
|
247
|
+
<a href="https://github.com/Sergeydigl3/zapret-discord-youtube-linux" target="_blank" title="Sergeydigl3/zapret-discord-youtube-linux">Sergeydigl3/zapret-discord-youtube-linux</a>
|
|
272
248
|
</div>
|
|
273
249
|
<div class="sub-title followers">
|
|
274
250
|
|
|
275
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
276
|
-
<span style="background-color: #
|
|
251
|
+
<a class="language" target="_blank" href="https://github.com/topics/shell" title="Programming Language Shell">
|
|
252
|
+
<span style="background-color: #89e051;"></span>Shell
|
|
277
253
|
</a>
|
|
278
254
|
|
|
279
255
|
<span class="star" title="Stargazers Count">
|
|
280
256
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
281
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>
|
|
282
258
|
</svg>
|
|
283
|
-
<span>
|
|
259
|
+
<span>0.836k</span>
|
|
284
260
|
</span>
|
|
285
261
|
<span class="star" title="Repo Forked">
|
|
286
262
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
287
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">
|
|
288
264
|
</path>
|
|
289
265
|
</svg>
|
|
290
|
-
<span>
|
|
266
|
+
<span>39</span>
|
|
291
267
|
</span>
|
|
292
268
|
<span class="star">
|
|
293
269
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
294
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>
|
|
295
271
|
</svg>
|
|
296
|
-
<span>
|
|
272
|
+
<span>10 stars today</span>
|
|
297
273
|
</span>
|
|
298
274
|
</div>
|
|
299
275
|
<div class="details">
|
|
300
|
-
|
|
276
|
+
(NOW ONLY FOR NFTABLES) Port zapret-discord-youtube from Flowseal and bol-van for easy to use on linux
|
|
301
277
|
</div>
|
|
302
278
|
</div>
|
|
303
279
|
</li>
|
|
@@ -305,46 +281,10 @@
|
|
|
305
281
|
<li>
|
|
306
282
|
<div class="info">
|
|
307
283
|
<div class="rank">
|
|
308
|
-
<span title="Ranking 5">5</span>
|
|
309
|
-
<a href="https://github.com/anthropics/claude-quickstarts" target="_blank" title="anthropics/claude-quickstarts">anthropics/claude-quickstarts</a>
|
|
310
|
-
</div>
|
|
311
|
-
<div class="sub-title followers">
|
|
312
284
|
|
|
313
|
-
<
|
|
314
|
-
<span style="background-color: #3572A5;"></span>Python
|
|
315
|
-
</a>
|
|
285
|
+
<span title="Ranking 4">4</span>
|
|
316
286
|
|
|
317
|
-
<
|
|
318
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
319
|
-
<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
|
-
</svg>
|
|
321
|
-
<span>11.13k</span>
|
|
322
|
-
</span>
|
|
323
|
-
<span class="star" title="Repo Forked">
|
|
324
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
325
|
-
<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
|
-
</path>
|
|
327
|
-
</svg>
|
|
328
|
-
<span>1999</span>
|
|
329
|
-
</span>
|
|
330
|
-
<span class="star">
|
|
331
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
332
|
-
<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
|
-
</svg>
|
|
334
|
-
<span>278 stars today</span>
|
|
335
|
-
</span>
|
|
336
|
-
</div>
|
|
337
|
-
<div class="details">
|
|
338
|
-
A collection of projects designed to help developers quickly get started with building deployable applications using the Claude API
|
|
339
|
-
</div>
|
|
340
|
-
</div>
|
|
341
|
-
</li>
|
|
342
|
-
|
|
343
|
-
<li>
|
|
344
|
-
<div class="info">
|
|
345
|
-
<div class="rank">
|
|
346
|
-
<span title="Ranking 6">6</span>
|
|
347
|
-
<a href="https://github.com/rustfs/rustfs" target="_blank" title="rustfs/rustfs">rustfs/rustfs</a>
|
|
287
|
+
<a href="https://github.com/BloopAI/vibe-kanban" target="_blank" title="BloopAI/vibe-kanban">BloopAI/vibe-kanban</a>
|
|
348
288
|
</div>
|
|
349
289
|
<div class="sub-title followers">
|
|
350
290
|
|
|
@@ -356,24 +296,24 @@
|
|
|
356
296
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
357
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>
|
|
358
298
|
</svg>
|
|
359
|
-
<span>
|
|
299
|
+
<span>7.337k</span>
|
|
360
300
|
</span>
|
|
361
301
|
<span class="star" title="Repo Forked">
|
|
362
302
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
363
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">
|
|
364
304
|
</path>
|
|
365
305
|
</svg>
|
|
366
|
-
<span>
|
|
306
|
+
<span>735</span>
|
|
367
307
|
</span>
|
|
368
308
|
<span class="star">
|
|
369
309
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
370
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>
|
|
371
311
|
</svg>
|
|
372
|
-
<span>
|
|
312
|
+
<span>144 stars today</span>
|
|
373
313
|
</span>
|
|
374
314
|
</div>
|
|
375
315
|
<div class="details">
|
|
376
|
-
|
|
316
|
+
Get 10X more out of Claude Code, Codex or any coding agent
|
|
377
317
|
</div>
|
|
378
318
|
</div>
|
|
379
319
|
</li>
|
|
@@ -381,75 +321,39 @@
|
|
|
381
321
|
<li>
|
|
382
322
|
<div class="info">
|
|
383
323
|
<div class="rank">
|
|
384
|
-
<span title="Ranking 7">7</span>
|
|
385
|
-
<a href="https://github.com/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
386
|
-
</div>
|
|
387
|
-
<div class="sub-title followers">
|
|
388
324
|
|
|
389
|
-
<
|
|
390
|
-
<span style="background-color: #3178c6;"></span>TypeScript
|
|
391
|
-
</a>
|
|
325
|
+
<span title="Ranking 5">5</span>
|
|
392
326
|
|
|
393
|
-
<
|
|
394
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
395
|
-
<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
|
-
</svg>
|
|
397
|
-
<span>36.724k</span>
|
|
398
|
-
</span>
|
|
399
|
-
<span class="star" title="Repo Forked">
|
|
400
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
401
|
-
<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
|
-
</path>
|
|
403
|
-
</svg>
|
|
404
|
-
<span>3066</span>
|
|
405
|
-
</span>
|
|
406
|
-
<span class="star">
|
|
407
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
408
|
-
<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
|
-
</svg>
|
|
410
|
-
<span>153 stars today</span>
|
|
411
|
-
</span>
|
|
412
|
-
</div>
|
|
413
|
-
<div class="details">
|
|
414
|
-
The open source coding agent.
|
|
415
|
-
</div>
|
|
416
|
-
</div>
|
|
417
|
-
</li>
|
|
418
|
-
|
|
419
|
-
<li>
|
|
420
|
-
<div class="info">
|
|
421
|
-
<div class="rank">
|
|
422
|
-
<span title="Ranking 8">8</span>
|
|
423
|
-
<a href="https://github.com/BeehiveInnovations/pal-mcp-server" target="_blank" title="BeehiveInnovations/pal-mcp-server">BeehiveInnovations/pal-mcp-server</a>
|
|
327
|
+
<a href="https://github.com/RustPython/RustPython" target="_blank" title="RustPython/RustPython">RustPython/RustPython</a>
|
|
424
328
|
</div>
|
|
425
329
|
<div class="sub-title followers">
|
|
426
330
|
|
|
427
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
428
|
-
<span style="background-color: #
|
|
331
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
332
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
429
333
|
</a>
|
|
430
334
|
|
|
431
335
|
<span class="star" title="Stargazers Count">
|
|
432
336
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
433
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>
|
|
434
338
|
</svg>
|
|
435
|
-
<span>
|
|
339
|
+
<span>21.125k</span>
|
|
436
340
|
</span>
|
|
437
341
|
<span class="star" title="Repo Forked">
|
|
438
342
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
439
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">
|
|
440
344
|
</path>
|
|
441
345
|
</svg>
|
|
442
|
-
<span>
|
|
346
|
+
<span>1376</span>
|
|
443
347
|
</span>
|
|
444
348
|
<span class="star">
|
|
445
349
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
446
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>
|
|
447
351
|
</svg>
|
|
448
|
-
<span>
|
|
352
|
+
<span>58 stars today</span>
|
|
449
353
|
</span>
|
|
450
354
|
</div>
|
|
451
355
|
<div class="details">
|
|
452
|
-
|
|
356
|
+
A Python Interpreter written in Rust
|
|
453
357
|
</div>
|
|
454
358
|
</div>
|
|
455
359
|
</li>
|
|
@@ -457,75 +361,39 @@
|
|
|
457
361
|
<li>
|
|
458
362
|
<div class="info">
|
|
459
363
|
<div class="rank">
|
|
460
|
-
<span title="Ranking 9">9</span>
|
|
461
|
-
<a href="https://github.com/microsoft/Foundry-Local" target="_blank" title="microsoft/Foundry-Local">microsoft/Foundry-Local</a>
|
|
462
|
-
</div>
|
|
463
|
-
<div class="sub-title followers">
|
|
464
364
|
|
|
465
|
-
<
|
|
466
|
-
<span style="background-color: #ff3e00;"></span>Svelte
|
|
467
|
-
</a>
|
|
468
|
-
|
|
469
|
-
<span class="star" title="Stargazers Count">
|
|
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>1.39k</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>175</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>189 stars today</span>
|
|
487
|
-
</span>
|
|
488
|
-
</div>
|
|
489
|
-
<div class="details">
|
|
365
|
+
<span title="Ranking 6">6</span>
|
|
490
366
|
|
|
491
|
-
|
|
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/sinelaw/fresh" target="_blank" title="sinelaw/fresh">sinelaw/fresh</a>
|
|
367
|
+
<a href="https://github.com/QuantConnect/Lean" target="_blank" title="QuantConnect/Lean">QuantConnect/Lean</a>
|
|
500
368
|
</div>
|
|
501
369
|
<div class="sub-title followers">
|
|
502
370
|
|
|
503
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
504
|
-
<span style="background-color: #
|
|
371
|
+
<a class="language" target="_blank" href="https://github.com/topics/c#" title="Programming Language C#">
|
|
372
|
+
<span style="background-color: #178600;"></span>C#
|
|
505
373
|
</a>
|
|
506
374
|
|
|
507
375
|
<span class="star" title="Stargazers Count">
|
|
508
376
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
509
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>
|
|
510
378
|
</svg>
|
|
511
|
-
<span>
|
|
379
|
+
<span>14.442k</span>
|
|
512
380
|
</span>
|
|
513
381
|
<span class="star" title="Repo Forked">
|
|
514
382
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
515
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">
|
|
516
384
|
</path>
|
|
517
385
|
</svg>
|
|
518
|
-
<span>
|
|
386
|
+
<span>4066</span>
|
|
519
387
|
</span>
|
|
520
388
|
<span class="star">
|
|
521
389
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
522
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>
|
|
523
391
|
</svg>
|
|
524
|
-
<span>
|
|
392
|
+
<span>72 stars today</span>
|
|
525
393
|
</span>
|
|
526
394
|
</div>
|
|
527
395
|
<div class="details">
|
|
528
|
-
|
|
396
|
+
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
|
|
529
397
|
</div>
|
|
530
398
|
</div>
|
|
531
399
|
</li>
|
|
@@ -533,71 +401,39 @@
|
|
|
533
401
|
<li>
|
|
534
402
|
<div class="info">
|
|
535
403
|
<div class="rank">
|
|
536
|
-
<span title="Ranking 11">11</span>
|
|
537
|
-
<a href="https://github.com/ashishpatel26/500-AI-Agents-Projects" target="_blank" title="ashishpatel26/500-AI-Agents-Projects">ashishpatel26/500-AI-Agents-Projects</a>
|
|
538
|
-
</div>
|
|
539
|
-
<div class="sub-title followers">
|
|
540
404
|
|
|
541
|
-
<span
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
</svg>
|
|
545
|
-
<span>19.254k</span>
|
|
546
|
-
</span>
|
|
547
|
-
<span class="star" title="Repo Forked">
|
|
548
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
549
|
-
<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">
|
|
550
|
-
</path>
|
|
551
|
-
</svg>
|
|
552
|
-
<span>3491</span>
|
|
553
|
-
</span>
|
|
554
|
-
<span class="star">
|
|
555
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
556
|
-
<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>
|
|
557
|
-
</svg>
|
|
558
|
-
<span>423 stars today</span>
|
|
559
|
-
</span>
|
|
560
|
-
</div>
|
|
561
|
-
<div class="details">
|
|
562
|
-
The 500 AI Agents Projects is a curated collection of AI agent use cases across various industries. It showcases practical applications and provides links to open-source projects for implementation, illustrating how AI agents are transforming sectors such as healthcare, finance, education, retail, and more.
|
|
563
|
-
</div>
|
|
564
|
-
</div>
|
|
565
|
-
</li>
|
|
566
|
-
|
|
567
|
-
<li>
|
|
568
|
-
<div class="info">
|
|
569
|
-
<div class="rank">
|
|
570
|
-
<span title="Ranking 12">12</span>
|
|
571
|
-
<a href="https://github.com/blakeblackshear/frigate" target="_blank" title="blakeblackshear/frigate">blakeblackshear/frigate</a>
|
|
405
|
+
<span title="Ranking 7">7</span>
|
|
406
|
+
|
|
407
|
+
<a href="https://github.com/Shubhamsaboo/awesome-llm-apps" target="_blank" title="Shubhamsaboo/awesome-llm-apps">Shubhamsaboo/awesome-llm-apps</a>
|
|
572
408
|
</div>
|
|
573
409
|
<div class="sub-title followers">
|
|
574
410
|
|
|
575
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
576
|
-
<span style="background-color: #
|
|
411
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
412
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
577
413
|
</a>
|
|
578
414
|
|
|
579
415
|
<span class="star" title="Stargazers Count">
|
|
580
416
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
581
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>
|
|
582
418
|
</svg>
|
|
583
|
-
<span>
|
|
419
|
+
<span>84.853k</span>
|
|
584
420
|
</span>
|
|
585
421
|
<span class="star" title="Repo Forked">
|
|
586
422
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
587
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">
|
|
588
424
|
</path>
|
|
589
425
|
</svg>
|
|
590
|
-
<span>
|
|
426
|
+
<span>12062</span>
|
|
591
427
|
</span>
|
|
592
428
|
<span class="star">
|
|
593
429
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
594
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>
|
|
595
431
|
</svg>
|
|
596
|
-
<span>
|
|
432
|
+
<span>395 stars today</span>
|
|
597
433
|
</span>
|
|
598
434
|
</div>
|
|
599
435
|
<div class="details">
|
|
600
|
-
|
|
436
|
+
Collection of awesome LLM apps with AI Agents and RAG using OpenAI, Anthropic, Gemini and opensource models.
|
|
601
437
|
</div>
|
|
602
438
|
</div>
|
|
603
439
|
</li>
|
|
@@ -605,80 +441,46 @@
|
|
|
605
441
|
<li>
|
|
606
442
|
<div class="info">
|
|
607
443
|
<div class="rank">
|
|
608
|
-
<span title="Ranking 13">13</span>
|
|
609
|
-
<a href="https://github.com/lfnovo/open-notebook" target="_blank" title="lfnovo/open-notebook">lfnovo/open-notebook</a>
|
|
610
|
-
</div>
|
|
611
|
-
<div class="sub-title followers">
|
|
612
444
|
|
|
613
|
-
<
|
|
614
|
-
<span style="background-color: #3178c6;"></span>TypeScript
|
|
615
|
-
</a>
|
|
445
|
+
<span title="Ranking 8">8</span>
|
|
616
446
|
|
|
617
|
-
<
|
|
618
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
619
|
-
<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>
|
|
620
|
-
</svg>
|
|
621
|
-
<span>12.58k</span>
|
|
622
|
-
</span>
|
|
623
|
-
<span class="star" title="Repo Forked">
|
|
624
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
625
|
-
<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">
|
|
626
|
-
</path>
|
|
627
|
-
</svg>
|
|
628
|
-
<span>1274</span>
|
|
629
|
-
</span>
|
|
630
|
-
<span class="star">
|
|
631
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
632
|
-
<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>
|
|
633
|
-
</svg>
|
|
634
|
-
<span>201 stars today</span>
|
|
635
|
-
</span>
|
|
636
|
-
</div>
|
|
637
|
-
<div class="details">
|
|
638
|
-
An Open Source implementation of Notebook LM with more flexibility and features
|
|
639
|
-
</div>
|
|
640
|
-
</div>
|
|
641
|
-
</li>
|
|
642
|
-
|
|
643
|
-
<li>
|
|
644
|
-
<div class="info">
|
|
645
|
-
<div class="rank">
|
|
646
|
-
<span title="Ranking 14">14</span>
|
|
647
|
-
<a href="https://github.com/activepieces/activepieces" target="_blank" title="activepieces/activepieces">activepieces/activepieces</a>
|
|
447
|
+
<a href="https://github.com/sinelaw/fresh" target="_blank" title="sinelaw/fresh">sinelaw/fresh</a>
|
|
648
448
|
</div>
|
|
649
449
|
<div class="sub-title followers">
|
|
650
450
|
|
|
651
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
652
|
-
<span style="background-color: #
|
|
451
|
+
<a class="language" target="_blank" href="https://github.com/topics/rust" title="Programming Language Rust">
|
|
452
|
+
<span style="background-color: #dea584;"></span>Rust
|
|
653
453
|
</a>
|
|
654
454
|
|
|
655
455
|
<span class="star" title="Stargazers Count">
|
|
656
456
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
657
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>
|
|
658
458
|
</svg>
|
|
659
|
-
<span>
|
|
459
|
+
<span>3.781k</span>
|
|
660
460
|
</span>
|
|
661
461
|
<span class="star" title="Repo Forked">
|
|
662
462
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
663
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">
|
|
664
464
|
</path>
|
|
665
465
|
</svg>
|
|
666
|
-
<span>
|
|
466
|
+
<span>119</span>
|
|
667
467
|
</span>
|
|
668
468
|
<span class="star">
|
|
669
469
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
670
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>
|
|
671
471
|
</svg>
|
|
672
|
-
<span>
|
|
472
|
+
<span>258 stars today</span>
|
|
673
473
|
</span>
|
|
674
474
|
</div>
|
|
675
475
|
<div class="details">
|
|
676
|
-
|
|
476
|
+
Text editor for your terminal: easy, powerful and fast
|
|
677
477
|
</div>
|
|
678
478
|
</div>
|
|
679
479
|
</li>
|
|
680
480
|
|
|
681
481
|
</ul>
|
|
482
|
+
|
|
483
|
+
</main>
|
|
682
484
|
<div class="footer">
|
|
683
485
|
<div>
|
|
684
486
|
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">
|
|
@@ -697,7 +499,7 @@
|
|
|
697
499
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
698
500
|
</a>
|
|
699
501
|
</div>
|
|
700
|
-
<div class="time">Last cache created on 2025/12/
|
|
502
|
+
<div class="time">Last cache created on 2025/12/29 by Github API v3.</div>
|
|
701
503
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
702
504
|
</div>
|
|
703
505
|
</body>
|