@wcj/github-rank 25.12.22 → 26.1.1
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 +52008 -52016
- package/dist/trending-daily.json +79 -68
- package/dist/trending-monthly.json +134 -134
- package/dist/trending-weekly.json +99 -110
- package/dist/users.china.json +4832 -4868
- package/dist/users.json +8757 -8829
- package/dist/users.org.json +1650 -1578
- package/package.json +1 -1
- package/web/data/repos.json +52008 -52016
- package/web/data/trending-daily.json +79 -68
- package/web/data/trending-monthly.json +134 -134
- package/web/data/trending-weekly.json +99 -110
- package/web/data/users.china.json +4832 -4868
- package/web/data/users.json +8757 -8829
- package/web/data/users.org.json +1650 -1578
- package/web/index.html +8317 -8401
- package/web/org.html +1423 -1292
- package/web/repos.html +5536 -5526
- package/web/trending-monthly.html +177 -131
- package/web/trending-weekly.html +136 -136
- package/web/trending.html +146 -70
- package/web/users.china.html +4635 -4658
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
|
|
139
|
+
<div class="time">Last cache created on 2026/1/1 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/rendercv/rendercv" target="_blank" title="rendercv/rendercv">rendercv/rendercv</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/python" title="Programming Language Python">
|
|
172
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>13.591k</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>916</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>5369 stars this week</span>
|
|
183
193
|
</span>
|
|
184
194
|
</div>
|
|
185
195
|
<div class="details">
|
|
186
|
-
|
|
196
|
+
CV/resume generator for academics and engineers, YAML to PDF
|
|
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/resemble-ai/chatterbox" target="_blank" title="resemble-ai/chatterbox">resemble-ai/chatterbox</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>19.954k</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>2607</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>2858 stars this week</span>
|
|
221
233
|
</span>
|
|
222
234
|
</div>
|
|
223
235
|
<div class="details">
|
|
224
|
-
|
|
236
|
+
SoTA open-source TTS
|
|
225
237
|
</div>
|
|
226
238
|
</div>
|
|
227
239
|
</li>
|
|
@@ -229,8 +241,10 @@
|
|
|
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/BloopAI/vibe-kanban" target="_blank" title="BloopAI/vibe-kanban">BloopAI/vibe-kanban</a>
|
|
234
248
|
</div>
|
|
235
249
|
<div class="sub-title followers">
|
|
236
250
|
|
|
@@ -242,24 +256,24 @@
|
|
|
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>10.118k</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>919</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>3197 stars this week</span>
|
|
259
273
|
</span>
|
|
260
274
|
</div>
|
|
261
275
|
<div class="details">
|
|
262
|
-
|
|
276
|
+
Get 10X more out of Claude Code, Codex or any coding agent
|
|
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/anthropics/skills" target="_blank" title="anthropics/skills">anthropics/skills</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>30.937k</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>2816</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>4478 stars this week</span>
|
|
297
313
|
</span>
|
|
298
314
|
</div>
|
|
299
315
|
<div class="details">
|
|
300
|
-
|
|
316
|
+
Public repository for Agent Skills
|
|
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/xerrors/Yuxi-Know" target="_blank" title="xerrors/Yuxi-Know">xerrors/Yuxi-Know</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/python" title="Programming Language Python">
|
|
332
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
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>3.661k</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>440</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>645 stars this week</span>
|
|
335
353
|
</span>
|
|
336
354
|
</div>
|
|
337
355
|
<div class="details">
|
|
338
|
-
|
|
356
|
+
结合LightRAG 知识库的知识图谱智能体平台。 An agent platform that integrates a LightRAG knowledge base and knowledge graphs. Build with LangChain v1 + Vue + FastAPI, support DeepAgents、MinerU PDF、Neo4j 、MCP.
|
|
339
357
|
</div>
|
|
340
358
|
</div>
|
|
341
359
|
</li>
|
|
@@ -343,37 +361,39 @@
|
|
|
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/Flowseal/zapret-discord-youtube" target="_blank" title="Flowseal/zapret-discord-youtube">Flowseal/zapret-discord-youtube</a>
|
|
348
368
|
</div>
|
|
349
369
|
<div class="sub-title followers">
|
|
350
370
|
|
|
351
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
352
|
-
<span style="background-color: #
|
|
371
|
+
<a class="language" target="_blank" href="https://github.com/topics/batchfile" title="Programming Language Batchfile">
|
|
372
|
+
<span style="background-color: #C1F12E;"></span>Batchfile
|
|
353
373
|
</a>
|
|
354
374
|
|
|
355
375
|
<span class="star" title="Stargazers Count">
|
|
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>20.439k</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>1696</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>897 stars this week</span>
|
|
373
393
|
</span>
|
|
374
394
|
</div>
|
|
375
395
|
<div class="details">
|
|
376
|
-
|
|
396
|
+
|
|
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/danielmiessler/Personal_AI_Infrastructure" target="_blank" title="danielmiessler/Personal_AI_Infrastructure">danielmiessler/Personal_AI_Infrastructure</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>2.766k</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>505</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>772 stars this week</span>
|
|
411
433
|
</span>
|
|
412
434
|
</div>
|
|
413
435
|
<div class="details">
|
|
414
|
-
|
|
436
|
+
Personal AI Infrastructure for upgrading humans.
|
|
415
437
|
</div>
|
|
416
438
|
</div>
|
|
417
439
|
</li>
|
|
@@ -419,8 +441,10 @@
|
|
|
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/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
424
448
|
</div>
|
|
425
449
|
<div class="sub-title followers">
|
|
426
450
|
|
|
@@ -432,24 +456,24 @@
|
|
|
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>44.928k</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>3868</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>3110 stars this week</span>
|
|
449
473
|
</span>
|
|
450
474
|
</div>
|
|
451
475
|
<div class="details">
|
|
452
|
-
|
|
476
|
+
The open source coding agent.
|
|
453
477
|
</div>
|
|
454
478
|
</div>
|
|
455
479
|
</li>
|
|
@@ -457,8 +481,10 @@
|
|
|
457
481
|
<li>
|
|
458
482
|
<div class="info">
|
|
459
483
|
<div class="rank">
|
|
484
|
+
|
|
460
485
|
<span title="Ranking 9">9</span>
|
|
461
|
-
|
|
486
|
+
|
|
487
|
+
<a href="https://github.com/makeplane/plane" target="_blank" title="makeplane/plane">makeplane/plane</a>
|
|
462
488
|
</div>
|
|
463
489
|
<div class="sub-title followers">
|
|
464
490
|
|
|
@@ -470,24 +496,24 @@
|
|
|
470
496
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
471
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>
|
|
472
498
|
</svg>
|
|
473
|
-
<span>
|
|
499
|
+
<span>42.601k</span>
|
|
474
500
|
</span>
|
|
475
501
|
<span class="star" title="Repo Forked">
|
|
476
502
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
477
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">
|
|
478
504
|
</path>
|
|
479
505
|
</svg>
|
|
480
|
-
<span>
|
|
506
|
+
<span>3168</span>
|
|
481
507
|
</span>
|
|
482
508
|
<span class="star">
|
|
483
509
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
484
510
|
<path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"></path>
|
|
485
511
|
</svg>
|
|
486
|
-
<span>
|
|
512
|
+
<span>1293 stars this week</span>
|
|
487
513
|
</span>
|
|
488
514
|
</div>
|
|
489
515
|
<div class="details">
|
|
490
|
-
|
|
516
|
+
🔥🔥🔥 Open-source Jira, Linear, Monday, and ClickUp alternative. Plane is a modern project management platform to manage tasks, sprints, docs, and triage.
|
|
491
517
|
</div>
|
|
492
518
|
</div>
|
|
493
519
|
</li>
|
|
@@ -495,8 +521,10 @@
|
|
|
495
521
|
<li>
|
|
496
522
|
<div class="info">
|
|
497
523
|
<div class="rank">
|
|
524
|
+
|
|
498
525
|
<span title="Ranking 10">10</span>
|
|
499
|
-
|
|
526
|
+
|
|
527
|
+
<a href="https://github.com/iptv-org/iptv" target="_blank" title="iptv-org/iptv">iptv-org/iptv</a>
|
|
500
528
|
</div>
|
|
501
529
|
<div class="sub-title followers">
|
|
502
530
|
|
|
@@ -508,24 +536,24 @@
|
|
|
508
536
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
509
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>
|
|
510
538
|
</svg>
|
|
511
|
-
<span>
|
|
539
|
+
<span>107.976k</span>
|
|
512
540
|
</span>
|
|
513
541
|
<span class="star" title="Repo Forked">
|
|
514
542
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
515
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">
|
|
516
544
|
</path>
|
|
517
545
|
</svg>
|
|
518
|
-
<span>
|
|
546
|
+
<span>5162</span>
|
|
519
547
|
</span>
|
|
520
548
|
<span class="star">
|
|
521
549
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
522
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>
|
|
523
551
|
</svg>
|
|
524
|
-
<span>
|
|
552
|
+
<span>1142 stars this week</span>
|
|
525
553
|
</span>
|
|
526
554
|
</div>
|
|
527
555
|
<div class="details">
|
|
528
|
-
|
|
556
|
+
Collection of publicly available IPTV channels from all over the world
|
|
529
557
|
</div>
|
|
530
558
|
</div>
|
|
531
559
|
</li>
|
|
@@ -533,37 +561,39 @@
|
|
|
533
561
|
<li>
|
|
534
562
|
<div class="info">
|
|
535
563
|
<div class="rank">
|
|
564
|
+
|
|
536
565
|
<span title="Ranking 11">11</span>
|
|
537
|
-
|
|
566
|
+
|
|
567
|
+
<a href="https://github.com/davila7/claude-code-templates" target="_blank" title="davila7/claude-code-templates">davila7/claude-code-templates</a>
|
|
538
568
|
</div>
|
|
539
569
|
<div class="sub-title followers">
|
|
540
570
|
|
|
541
|
-
<a class="language" target="_blank" href="https://github.com/topics/
|
|
542
|
-
<span style="background-color: #
|
|
571
|
+
<a class="language" target="_blank" href="https://github.com/topics/python" title="Programming Language Python">
|
|
572
|
+
<span style="background-color: #3572A5;"></span>Python
|
|
543
573
|
</a>
|
|
544
574
|
|
|
545
575
|
<span class="star" title="Stargazers Count">
|
|
546
576
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
547
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>
|
|
548
578
|
</svg>
|
|
549
|
-
<span>
|
|
579
|
+
<span>14.312k</span>
|
|
550
580
|
</span>
|
|
551
581
|
<span class="star" title="Repo Forked">
|
|
552
582
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
553
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">
|
|
554
584
|
</path>
|
|
555
585
|
</svg>
|
|
556
|
-
<span>
|
|
586
|
+
<span>1234</span>
|
|
557
587
|
</span>
|
|
558
588
|
<span class="star">
|
|
559
589
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
560
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>
|
|
561
591
|
</svg>
|
|
562
|
-
<span>
|
|
592
|
+
<span>766 stars this week</span>
|
|
563
593
|
</span>
|
|
564
594
|
</div>
|
|
565
595
|
<div class="details">
|
|
566
|
-
|
|
596
|
+
CLI tool for configuring and monitoring Claude Code
|
|
567
597
|
</div>
|
|
568
598
|
</div>
|
|
569
599
|
</li>
|
|
@@ -571,46 +601,10 @@
|
|
|
571
601
|
<li>
|
|
572
602
|
<div class="info">
|
|
573
603
|
<div class="rank">
|
|
574
|
-
<span title="Ranking 12">12</span>
|
|
575
|
-
<a href="https://github.com/v2fly/domain-list-community" target="_blank" title="v2fly/domain-list-community">v2fly/domain-list-community</a>
|
|
576
|
-
</div>
|
|
577
|
-
<div class="sub-title followers">
|
|
578
604
|
|
|
579
|
-
<
|
|
580
|
-
<span style="background-color: #00ADD8;"></span>Go
|
|
581
|
-
</a>
|
|
605
|
+
<span title="Ranking 12">12</span>
|
|
582
606
|
|
|
583
|
-
<
|
|
584
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
585
|
-
<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
|
-
</svg>
|
|
587
|
-
<span>7.026k</span>
|
|
588
|
-
</span>
|
|
589
|
-
<span class="star" title="Repo Forked">
|
|
590
|
-
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
591
|
-
<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
|
-
</path>
|
|
593
|
-
</svg>
|
|
594
|
-
<span>1161</span>
|
|
595
|
-
</span>
|
|
596
|
-
<span class="star">
|
|
597
|
-
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
598
|
-
<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
|
-
</svg>
|
|
600
|
-
<span>90 stars this week</span>
|
|
601
|
-
</span>
|
|
602
|
-
</div>
|
|
603
|
-
<div class="details">
|
|
604
|
-
Community managed domain list. Generate geosite.dat for V2Ray.
|
|
605
|
-
</div>
|
|
606
|
-
</div>
|
|
607
|
-
</li>
|
|
608
|
-
|
|
609
|
-
<li>
|
|
610
|
-
<div class="info">
|
|
611
|
-
<div class="rank">
|
|
612
|
-
<span title="Ranking 13">13</span>
|
|
613
|
-
<a href="https://github.com/sst/opencode" target="_blank" title="sst/opencode">sst/opencode</a>
|
|
607
|
+
<a href="https://github.com/gitroomhq/postiz-app" target="_blank" title="gitroomhq/postiz-app">gitroomhq/postiz-app</a>
|
|
614
608
|
</div>
|
|
615
609
|
<div class="sub-title followers">
|
|
616
610
|
|
|
@@ -622,24 +616,24 @@
|
|
|
622
616
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
623
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>
|
|
624
618
|
</svg>
|
|
625
|
-
<span>
|
|
619
|
+
<span>25.679k</span>
|
|
626
620
|
</span>
|
|
627
621
|
<span class="star" title="Repo Forked">
|
|
628
622
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
629
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">
|
|
630
624
|
</path>
|
|
631
625
|
</svg>
|
|
632
|
-
<span>
|
|
626
|
+
<span>4341</span>
|
|
633
627
|
</span>
|
|
634
628
|
<span class="star">
|
|
635
629
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
636
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>
|
|
637
631
|
</svg>
|
|
638
|
-
<span>
|
|
632
|
+
<span>723 stars this week</span>
|
|
639
633
|
</span>
|
|
640
634
|
</div>
|
|
641
635
|
<div class="details">
|
|
642
|
-
The
|
|
636
|
+
📨 The ultimate social media scheduling tool, with a bunch of AI 🤖
|
|
643
637
|
</div>
|
|
644
638
|
</div>
|
|
645
639
|
</li>
|
|
@@ -647,8 +641,10 @@
|
|
|
647
641
|
<li>
|
|
648
642
|
<div class="info">
|
|
649
643
|
<div class="rank">
|
|
650
|
-
|
|
651
|
-
<
|
|
644
|
+
|
|
645
|
+
<span title="Ranking 13">13</span>
|
|
646
|
+
|
|
647
|
+
<a href="https://github.com/sinelaw/fresh" target="_blank" title="sinelaw/fresh">sinelaw/fresh</a>
|
|
652
648
|
</div>
|
|
653
649
|
<div class="sub-title followers">
|
|
654
650
|
|
|
@@ -660,24 +656,24 @@
|
|
|
660
656
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
661
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>
|
|
662
658
|
</svg>
|
|
663
|
-
<span>
|
|
659
|
+
<span>4.469k</span>
|
|
664
660
|
</span>
|
|
665
661
|
<span class="star" title="Repo Forked">
|
|
666
662
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
667
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">
|
|
668
664
|
</path>
|
|
669
665
|
</svg>
|
|
670
|
-
<span>
|
|
666
|
+
<span>147</span>
|
|
671
667
|
</span>
|
|
672
668
|
<span class="star">
|
|
673
669
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
674
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>
|
|
675
671
|
</svg>
|
|
676
|
-
<span>
|
|
672
|
+
<span>1765 stars this week</span>
|
|
677
673
|
</span>
|
|
678
674
|
</div>
|
|
679
675
|
<div class="details">
|
|
680
|
-
|
|
676
|
+
Text editor for your terminal: easy, powerful and fast
|
|
681
677
|
</div>
|
|
682
678
|
</div>
|
|
683
679
|
</li>
|
|
@@ -685,8 +681,10 @@
|
|
|
685
681
|
<li>
|
|
686
682
|
<div class="info">
|
|
687
683
|
<div class="rank">
|
|
688
|
-
|
|
689
|
-
<
|
|
684
|
+
|
|
685
|
+
<span title="Ranking 14">14</span>
|
|
686
|
+
|
|
687
|
+
<a href="https://github.com/ModelTC/LightX2V" target="_blank" title="ModelTC/LightX2V">ModelTC/LightX2V</a>
|
|
690
688
|
</div>
|
|
691
689
|
<div class="sub-title followers">
|
|
692
690
|
|
|
@@ -698,29 +696,31 @@
|
|
|
698
696
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
699
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>
|
|
700
698
|
</svg>
|
|
701
|
-
<span>
|
|
699
|
+
<span>1.638k</span>
|
|
702
700
|
</span>
|
|
703
701
|
<span class="star" title="Repo Forked">
|
|
704
702
|
<svg aria-label="repo-forked" height="16" viewBox="0 0 10 16" version="1.1" width="10" role="img">
|
|
705
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">
|
|
706
704
|
</path>
|
|
707
705
|
</svg>
|
|
708
|
-
<span>
|
|
706
|
+
<span>116</span>
|
|
709
707
|
</span>
|
|
710
708
|
<span class="star">
|
|
711
709
|
<svg aria-label="star" viewBox="0 0 14 16" version="1.1" width="14" height="16" role="img">
|
|
712
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>
|
|
713
711
|
</svg>
|
|
714
|
-
<span>
|
|
712
|
+
<span>335 stars this week</span>
|
|
715
713
|
</span>
|
|
716
714
|
</div>
|
|
717
715
|
<div class="details">
|
|
718
|
-
|
|
716
|
+
Light Image Video Generation Inference Framework
|
|
719
717
|
</div>
|
|
720
718
|
</div>
|
|
721
719
|
</li>
|
|
722
720
|
|
|
723
721
|
</ul>
|
|
722
|
+
|
|
723
|
+
</main>
|
|
724
724
|
<div class="footer">
|
|
725
725
|
<div>
|
|
726
726
|
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">
|
|
@@ -739,7 +739,7 @@
|
|
|
739
739
|
<img src="https://img.shields.io/npm/v/@wcj/github-rank.svg?label=unpkg">
|
|
740
740
|
</a>
|
|
741
741
|
</div>
|
|
742
|
-
<div class="time">Last cache created on
|
|
742
|
+
<div class="time">Last cache created on 2026/1/1 by Github API v3.</div>
|
|
743
743
|
Create by <a href="https://github.com/jaywcjlove" target="_blank">小弟调调™</a>.
|
|
744
744
|
</div>
|
|
745
745
|
</body>
|