-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlambda.html
More file actions
executable file
·291 lines (268 loc) · 72.6 KB
/
Copy pathlambda.html
File metadata and controls
executable file
·291 lines (268 loc) · 72.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lambda - Boost Library Dashboard</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
<style>
* { box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
max-width: 1600px; margin: 0 auto; padding: 30px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
h1 { text-align: center; color: #fff; font-size: 2.5em; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.panel { background: #fff; padding: 30px; margin: 25px 0; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08); }
.panel h2 { margin-top: 0; margin-bottom: 20px; color: #1a202c; font-size: 1.6em; border-bottom: 3px solid #667eea; padding-bottom: 15px; }
.panel-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: start; }
.chart-container { margin: 25px 0; height: 450px; position: relative; background: #fafafa; border-radius: 8px; padding: 15px; border: 1px solid #e2e8f0; }
canvas { width: 100% !important; height: 100% !important; display: block; }
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
th { background-color: #f0f0f0; font-weight: 600; }
a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; }
.sortable { cursor: pointer; user-select: none; }
.sort-indicator { margin-left: 5px; color: #666; }
.table-controls { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.table-controls input { padding: 8px; border: 1px solid #ddd; border-radius: 4px; width: 260px; }
.pagination { display: flex; gap: 8px; align-items: center; }
.pagination button { padding: 6px 12px; border: 1px solid #ddd; border-radius: 4px; background: #fff; cursor: pointer; }
.pagination button:disabled { opacity: .5; cursor: not-allowed; }
.library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 20px; }
.library-item { padding: 12px 16px; border: 2px solid #e2e8f0; border-radius: 8px; background: #f7fafc; text-align: center; }
.tab-button { padding: 10px 20px; margin-right: 5px; cursor: pointer; border: 1px solid #ddd; border-radius: 4px 4px 0 0; background: #fff; font-weight: 600; }
.tab-button.active { background: #f5f5f5; }
.back-link a { color: rgba(255,255,255,0.95); font-weight: 500; padding: 8px 16px; background: rgba(255,255,255,0.15); border-radius: 6px; }
</style>
</head>
<body>
<div class="back-link"><a href="../index.html">← Back to Dashboard</a></div>
<h1>📚 lambda</h1>
<div class="panel">
<h2>Overview</h2>
<div style="display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:start;">
<div>
<p style="color:#666;">Define small unnamed function objects at the actual call site, and more.</p>
<table><tbody>
<tr><td><strong>Created Version:</strong></td><td>boost-1.59.0</td></tr>
<tr><td><strong>Most Recent Modified Version:</strong></td><td>boost-1.89.0</td></tr>
<tr><td><strong>Total Repositories:</strong></td><td>370</td></tr>
<tr><td><strong>Average New Repositories Per Year:</strong></td><td>17.00</td></tr>
<tr><td><strong>Most Recent Year Repository Count:</strong></td><td>5</td></tr>
<tr><td><strong>Most Used Year:</strong></td><td>2015</td></tr>
<tr><td><strong>Average Stars:</strong></td><td>227</td></tr>
<tr><td><strong>Activity Score:</strong></td><td>-1.036</td></tr>
<tr><td><strong>Internal Consumers:</strong></td><td>115</td></tr>
<tr><td><strong>Contributors in Most Recent Version:</strong></td><td>2</td></tr>
<tr><td><strong>Total Contributors:</strong></td><td>30</td></tr>
</tbody></table>
</div>
<div>
<h3>Used Headers</h3>
<div class="table-controls">
<div><label for="search-headers">Search:</label> <input id="search-headers" type="text" placeholder="Filter rows..."></div>
<div class="pagination">
<span id="info-headers">Showing 0-0 of 0</span>
<button id="prev-headers">Previous</button>
<button id="next-headers">Next</button>
</div>
</div>
<table id="table-headers"><thead><tr><th><button type='button' class='sortable' data-key='name' aria-label='Sort by Header'>Header <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='count' aria-label='Sort by Times Included'>Times Included <span class='sort-indicator'>↕</span></button></th></tr></thead><tbody></tbody></table>
</div>
</div>
</div>
<div class="panel">
<h2>Internal Consumers</h2>
<div class="panel-row">
<div>
<h3>Consumer Libraries</h3>
<div class="table-controls">
<div><label for="search-internal">Search:</label> <input id="search-internal" type="text" placeholder="Filter rows..."></div>
<div class="pagination">
<span id="info-internal">Showing 0-0 of 0</span>
<button id="prev-internal">Previous</button>
<button id="next-internal">Next</button>
</div>
</div>
<table id="table-internal"><thead><tr><th><button type='button' class='sortable' data-key='name' aria-label='Sort by Library'>Library <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='depth' aria-label='Sort by Depth'>Depth <span class='sort-indicator'>↕</span></button></th></tr></thead><tbody></tbody></table>
</div>
<div class="chart-container"><canvas id="dependentsChart"></canvas></div>
</div>
</div>
<div class="panel">
<h2>External Consumers</h2>
<div class="panel-row">
<div>
<h3>External Repositories</h3>
<div class="table-controls">
<div><label for="search-external">Search:</label> <input id="search-external" type="text" placeholder="Filter rows..."></div>
<div class="pagination">
<span id="info-external">Showing 0-0 of 0</span>
<button id="prev-external">Previous</button>
<button id="next-external">Next</button>
</div>
</div>
<table id="table-external"><thead><tr><th><button type='button' class='sortable' data-key='name' aria-label='Sort by Repository'>Repository <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='stars' aria-label='Sort by Stars'>Stars <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='usage_count' aria-label='Sort by Header Includes'>Header Includes <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='created_at' aria-label='Sort by Created'>Created <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='updated_at' aria-label='Sort by Updated'>Updated <span class='sort-indicator'>↕</span></button></th></tr></thead><tbody></tbody></table>
</div>
<div class="chart-container"><canvas id="usageChart"></canvas></div>
</div>
</div>
<div class="panel">
<h2>Contribution</h2>
<div class="panel-row">
<div>
<h3>Contributors</h3>
<div class="table-controls">
<div><label for="search-contrib">Search:</label> <input id="search-contrib" type="text" placeholder="Filter rows..."></div>
<div class="pagination">
<span id="info-contrib">Showing 0-0 of 0</span>
<button id="prev-contrib">Previous</button>
<button id="next-contrib">Next</button>
</div>
</div>
<table id="table-contrib"><thead><tr><th><button type='button' class='sortable' data-key='version' aria-label='Sort by Version'>Version <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='person' aria-label='Sort by Contributor'>Contributor <span class='sort-indicator'>↕</span></button></th><th><button type='button' class='sortable' data-key='commit_count' aria-label='Sort by Commit Count'>Commit Count <span class='sort-indicator'>↕</span></button></th></tr></thead><tbody></tbody></table>
</div>
<div class="chart-container"><canvas id="commitChart"></canvas></div>
</div>
</div>
<script>
function toNumber(v){ if (v === null || v === undefined || v === '') return 0; const n = Number(v); return Number.isFinite(n) ? n : 0; }
function toText(v){ return (v ?? '').toString().toLowerCase(); }
function toDate(v){ if(!v) return 0; const t = Date.parse(v); return Number.isFinite(t) ? t : 0; }
function esc(s){ if (s == null || s === undefined) return ''; const t = String(s); return t.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/'/g,'''); }
function initDataTable(cfg){
const pageSize = 10;
const data = [...cfg.data];
let filtered = [...data];
let page = 1;
let sortKey = cfg.defaultSortKey || cfg.columns[0].key;
let sortAsc = cfg.defaultSortAsc ?? false;
const table = document.getElementById(cfg.tableId);
const tbody = table.querySelector('tbody');
const info = document.getElementById(cfg.infoId);
const prev = document.getElementById(cfg.prevId);
const next = document.getElementById(cfg.nextId);
const search = document.getElementById(cfg.searchId);
function sortValue(row, col){
const v = row[col.key];
if(col.type === 'number') return toNumber(v);
if(col.type === 'date') return toDate(v);
return toText(v);
}
function applyFilter(){
const term = toText(search?.value || '');
if(!term){ filtered = [...data]; return; }
filtered = data.filter(row => cfg.columns.some(c => toText(row[c.key]).includes(term)));
}
function applySort(){
const col = cfg.columns.find(c => c.key === sortKey) || cfg.columns[0];
filtered.sort((a,b) => {
const av = sortValue(a,col), bv = sortValue(b,col);
if(av < bv) return sortAsc ? -1 : 1;
if(av > bv) return sortAsc ? 1 : -1;
return 0;
});
}
function updateIndicators(){
table.querySelectorAll('.sortable').forEach(th => {
const indicator = th.querySelector('.sort-indicator');
if(!indicator) return;
if(th.dataset.key === sortKey) indicator.textContent = sortAsc ? '↑' : '↓';
else indicator.textContent = '↕';
});
}
function render(){
applyFilter();
applySort();
const total = filtered.length;
const totalPages = Math.max(1, Math.ceil(total / pageSize));
if(page > totalPages) page = totalPages;
const start = (page - 1) * pageSize;
const end = Math.min(start + pageSize, total);
tbody.innerHTML = filtered.slice(start, end).map(cfg.rowHtml).join('');
info.textContent = total ? `Showing ${start + 1}-${end} of ${total}` : 'No data available';
prev.disabled = page <= 1;
next.disabled = page >= totalPages;
updateIndicators();
}
table.querySelectorAll('.sortable').forEach(th => {
th.addEventListener('click', () => {
const key = th.dataset.key;
if(sortKey === key) sortAsc = !sortAsc;
else { sortKey = key; sortAsc = true; }
page = 1; render();
});
});
if(search) search.addEventListener('input', () => { page = 1; render(); });
prev.addEventListener('click', () => { if(page > 1){ page -= 1; render(); } });
next.addEventListener('click', () => { page += 1; render(); });
render();
}
const headersRows = [{"name": "include/boost/lambda/lambda.hpp", "count": 1000}, {"name": "include/boost/lambda/bind.hpp", "count": 602}, {"name": "include/boost/lambda/construct.hpp", "count": 103}, {"name": "include/boost/lambda/if.hpp", "count": 72}, {"name": "include/boost/lambda/core.hpp", "count": 11}, {"name": "include/boost/lambda/algorithm.hpp", "count": 8}, {"name": "include/boost/lambda/loops.hpp", "count": 6}, {"name": "include/boost/lambda/casts.hpp", "count": 5}, {"name": "include/boost/lambda/detail/suppress_unused.hpp", "count": 4}, {"name": "include/boost/lambda/exceptions.hpp", "count": 4}, {"name": "include/boost/lambda/switch.hpp", "count": 3}, {"name": "include/boost/lambda/detail/is_instance_of.hpp", "count": 3}, {"name": "include/boost/lambda/numeric.hpp", "count": 1}, {"name": "include/boost/lambda/control_structures.hpp", "count": 1}];
const internalRows = [{"name": "bimap", "depth": 1}, {"name": "gil", "depth": 1}, {"name": "math", "depth": 1}, {"name": "units", "depth": 1}, {"name": "Odeint", "depth": 2}, {"name": "convert", "depth": 2}, {"name": "exception", "depth": 2}, {"name": "geometry", "depth": 2}, {"name": "graph", "depth": 2}, {"name": "lexical_cast", "depth": 2}, {"name": "multiprecision", "depth": 2}, {"name": "random", "depth": 2}, {"name": "spirit", "depth": 2}, {"name": "variant", "depth": 2}, {"name": "Numeric Conversion", "depth": 3}, {"name": "accumulators", "depth": 3}, {"name": "algorithm", "depth": 3}, {"name": "any", "depth": 3}, {"name": "array", "depth": 3}, {"name": "asio", "depth": 3}, {"name": "chrono", "depth": 3}, {"name": "circular_buffer", "depth": 3}, {"name": "compute", "depth": 3}, {"name": "conversion", "depth": 3}, {"name": "coroutine", "depth": 3}, {"name": "date_time", "depth": 3}, {"name": "dll", "depth": 3}, {"name": "filesystem", "depth": 3}, {"name": "format", "depth": 3}, {"name": "function", "depth": 3}, {"name": "graph_parallel", "depth": 3}, {"name": "heap", "depth": 3}, {"name": "iostreams", "depth": 3}, {"name": "log", "depth": 3}, {"name": "mpi", "depth": 3}, {"name": "multi_index", "depth": 3}, {"name": "pool", "depth": 3}, {"name": "program_options", "depth": 3}, {"name": "property_map", "depth": 3}, {"name": "property_tree", "depth": 3}, {"name": "python", "depth": 3}, {"name": "regex", "depth": 3}, {"name": "serialization", "depth": 3}, {"name": "signals2", "depth": 3}, {"name": "smart_ptr", "depth": 3}, {"name": "stacktrace", "depth": 3}, {"name": "test", "depth": 3}, {"name": "thread", "depth": 3}, {"name": "timer", "depth": 3}, {"name": "type_erasure", "depth": 3}, {"name": "unordered", "depth": 3}, {"name": "utility", "depth": 3}, {"name": "uuid", "depth": 3}, {"name": "wave", "depth": 3}, {"name": "xpressive", "depth": 3}, {"name": "Unknown(185)", "depth": 4}, {"name": "Tribool", "depth": 4}, {"name": "assign", "depth": 4}, {"name": "atomic", "depth": 4}, {"name": "bind", "depth": 4}, {"name": "container", "depth": 4}, {"name": "context", "depth": 4}, {"name": "contract", "depth": 4}, {"name": "detail", "depth": 4}, {"name": "dynamic_bitset", "depth": 4}, {"name": "flyweight", "depth": 4}, {"name": "foreach", "depth": 4}, {"name": "functional", "depth": 4}, {"name": "fusion", "depth": 4}, {"name": "histogram", "depth": 4}, {"name": "icl", "depth": 4}, {"name": "interprocess", "depth": 4}, {"name": "intrusive", "depth": 4}, {"name": "iterator", "depth": 4}, {"name": "local_function", "depth": 4}, {"name": "locale", "depth": 4}, {"name": "lockfree", "depth": 4}, {"name": "move", "depth": 4}, {"name": "mpl", "depth": 4}, {"name": "msm", "depth": 4}, {"name": "multi_array", "depth": 4}, {"name": "optional", "depth": 4}, {"name": "parameter", "depth": 4}, {"name": "parameter_python", "depth": 4}, {"name": "phoenix", "depth": 4}, {"name": "polygon", "depth": 4}, {"name": "property_map_parallel", "depth": 4}, {"name": "proto", "depth": 4}, {"name": "ptr_container", "depth": 4}, {"name": "range", "depth": 4}, {"name": "ratio", "depth": 4}, {"name": "rational", "depth": 4}, {"name": "scope_exit", "depth": 4}, {"name": "sort", "depth": 4}, {"name": "statechart", "depth": 4}, {"name": "system", "depth": 4}, {"name": "tokenizer", "depth": 4}, {"name": "tuple", "depth": 4}, {"name": "type_traits", "depth": 4}, {"name": "typeof", "depth": 4}, {"name": "uBLAS", "depth": 4}, {"name": "Interval", "depth": 5}, {"name": "beast", "depth": 5}, {"name": "concept_check", "depth": 5}, {"name": "config", "depth": 5}, {"name": "coroutine2", "depth": 5}, {"name": "fiber", "depth": 5}, {"name": "function_types", "depth": 5}, {"name": "poly_collection", "depth": 5}, {"name": "process", "depth": 5}, {"name": "tti", "depth": 5}, {"name": "crc", "depth": 6}, {"name": "integer", "depth": 6}, {"name": "io", "depth": 6}, {"name": "static_assert", "depth": 6}];
const externalRows = [{"name": "fastio/1store", "stars": 1330, "usage_count": 1, "created_at": "2016-08-04", "updated_at": "2019-10-02"}, {"name": "tudelft3d/3D_Urban_Mesh_Annotator", "stars": 53, "usage_count": 3, "created_at": "2021-03-01", "updated_at": "2021-10-04"}, {"name": "ALPSCore/ALPSCore", "stars": 112, "usage_count": 4, "created_at": "2014-05-12", "updated_at": "2025-11-03"}, {"name": "APEPEPOW/APEPEPOW", "stars": 11, "usage_count": 5, "created_at": "2023-06-08", "updated_at": "2023-12-09"}, {"name": "tpms-lattice/ASLI", "stars": 22, "usage_count": 3, "created_at": "2022-02-01", "updated_at": "2026-02-23"}, {"name": "aboria/Aboria", "stars": 109, "usage_count": 1, "created_at": "2014-01-29", "updated_at": "2019-05-19"}, {"name": "AlchemyViewer/Alchemy", "stars": 56, "usage_count": 1, "created_at": "2022-12-08", "updated_at": "2026-06-22"}, {"name": "NTU-Siqiang-Group/Aster", "stars": 15, "usage_count": 2, "created_at": "2024-01-23", "updated_at": "2026-04-24"}, {"name": "yizhiweimengxiangfendoudefeifei/Autoware.ai.annotation1", "stars": 26, "usage_count": 1, "created_at": "2021-12-10", "updated_at": "2022-05-23"}, {"name": "is-whale/Autoware_learn", "stars": 18, "usage_count": 1, "created_at": "2023-11-29", "updated_at": "2025-03-14"}, {"name": "NiranV/Black-Dragon-Viewer", "stars": 21, "usage_count": 3, "created_at": "2024-10-31", "updated_at": "2026-04-19"}, {"name": "kekyo/BoostForArduino", "stars": 11, "usage_count": 2, "created_at": "2017-12-31", "updated_at": "2021-03-27"}, {"name": "CAPDGroup/CAPD", "stars": 20, "usage_count": 12, "created_at": "2023-10-17", "updated_at": "2026-06-19"}, {"name": "PacktPublishing/CPP-Reactive-Programming", "stars": 143, "usage_count": 8, "created_at": "2018-06-27", "updated_at": "2023-07-06"}, {"name": "ALPSCore/CT-HYB", "stars": 15, "usage_count": 3, "created_at": "2016-04-20", "updated_at": "2025-12-05"}, {"name": "krzyc/CasparCG-Server", "stars": 20, "usage_count": 1, "created_at": "2014-09-04", "updated_at": "2022-04-20"}, {"name": "demonsaw/Code", "stars": 122, "usage_count": 2, "created_at": "2017-07-25", "updated_at": "2021-10-26"}, {"name": "GraphProcessor/CommunityDetectionCodes", "stars": 211, "usage_count": 2, "created_at": "2016-12-26", "updated_at": "2022-02-28"}, {"name": "RapidsAtHKUST/CommunityDetectionCodes", "stars": 210, "usage_count": 2, "created_at": "2016-12-26", "updated_at": "2022-02-28"}, {"name": "jacking75/CookBookBoostCpp", "stars": 17, "usage_count": 1, "created_at": "2015-10-05", "updated_at": "2024-05-16"}, {"name": "cvcore/Corexapod", "stars": 12, "usage_count": 2, "created_at": "2014-07-06", "updated_at": "2017-05-06"}, {"name": "ccf19881030/Cplus_libs_wrapper", "stars": 38, "usage_count": 3, "created_at": "2019-03-31", "updated_at": "2024-01-23"}, {"name": "ErdemOzgen/Cpp-Learning-Archive", "stars": 94, "usage_count": 1, "created_at": "2019-04-08", "updated_at": "2022-12-27"}, {"name": "Pevernow/CreationEngine", "stars": 21, "usage_count": 5, "created_at": "2020-08-19", "updated_at": "2022-11-27"}, {"name": "gmarpons/Crisp", "stars": 32, "usage_count": 4, "created_at": "2011-11-07", "updated_at": "2013-11-15"}, {"name": "Illumina/DRAGMAP", "stars": 187, "usage_count": 1, "created_at": "2021-04-28", "updated_at": "2023-09-08"}, {"name": "iu8lmc/Decodium-3.0-Codename-Raptor", "stars": 14, "usage_count": 1, "created_at": "2026-02-20", "updated_at": "2026-03-20"}, {"name": "iu8lmc/Decodium-3.0-Shannon", "stars": 21, "usage_count": 1, "created_at": "2026-02-20", "updated_at": "2026-03-30"}, {"name": "ChimeraTK/DeviceAccess", "stars": 0, "usage_count": 8, "created_at": "", "updated_at": ""}, {"name": "utilForever/DiscoveringTheModernCpp", "stars": 19, "usage_count": 1, "created_at": "2015-12-26", "updated_at": "2018-01-23"}, {"name": "sequencing/EAGLE", "stars": 33, "usage_count": 12, "created_at": "2014-08-28", "updated_at": "2020-05-20"}, {"name": "Dreamtowards/Ethertia", "stars": 186, "usage_count": 5, "created_at": "2022-04-25", "updated_at": "2024-08-06"}, {"name": "daviddoria/Examples", "stars": 232, "usage_count": 6, "created_at": "2011-06-26", "updated_at": "2017-01-09"}, {"name": "AmrikSadhra/FCE-to-OBJ", "stars": 714, "usage_count": 1, "created_at": "2015-02-09", "updated_at": "2025-07-30"}, {"name": "firebreath/FireBreath", "stars": 591, "usage_count": 5, "created_at": "2010-11-26", "updated_at": "2022-07-28"}, {"name": "iftodebogdan/GITechDemo", "stars": 56, "usage_count": 1, "created_at": "2015-03-03", "updated_at": "2025-10-26"}, {"name": "GPlates/GPlates", "stars": 144, "usage_count": 35, "created_at": "2023-08-01", "updated_at": "2026-04-14"}, {"name": "Fortiphyd/GRFICSv3", "stars": 160, "usage_count": 5, "created_at": "2025-10-21", "updated_at": "2026-06-18"}, {"name": "graft-project/GraftNetwork", "stars": 81, "usage_count": 12, "created_at": "2017-08-02", "updated_at": "2023-11-17"}, {"name": "GridOPTICS/GridPACK", "stars": 61, "usage_count": 3, "created_at": "2014-07-22", "updated_at": "2026-03-27"}, {"name": "Eoinocal/Halite", "stars": 181, "usage_count": 1, "created_at": "2015-03-20", "updated_at": "2017-06-05"}, {"name": "PlantSimulationLab/Helios", "stars": 95, "usage_count": 2, "created_at": "2018-11-15", "updated_at": "2026-06-21"}, {"name": "MisterTea/HyperNEAT", "stars": 98, "usage_count": 100, "created_at": "2011-08-23", "updated_at": "2017-09-12"}, {"name": "FOSCAR-2020/ISCC_2020", "stars": 11, "usage_count": 1, "created_at": "2020-08-03", "updated_at": "2020-11-16"}, {"name": "ImpalaToGo/ImpalaToGo", "stars": 42, "usage_count": 1, "created_at": "2014-09-13", "updated_at": "2016-07-13"}, {"name": "Illumina/Isaac3", "stars": 18, "usage_count": 31, "created_at": "2016-04-27", "updated_at": "2018-02-13"}, {"name": "Illumina/Isaac4", "stars": 19, "usage_count": 30, "created_at": "2017-09-08", "updated_at": "2022-02-03"}, {"name": "couchdeveloper/JPJson", "stars": 28, "usage_count": 2, "created_at": "2012-03-22", "updated_at": "2014-11-17"}, {"name": "DaMSL/K3", "stars": 15, "usage_count": 1, "created_at": "2013-05-18", "updated_at": "2016-07-11"}, {"name": "bolero-MURAKAMI/KTL", "stars": 19, "usage_count": 2, "created_at": "2012-03-02", "updated_at": "2016-03-01"}, {"name": "OpenMPDK/KVCeph", "stars": 58, "usage_count": 18, "created_at": "2019-04-19", "updated_at": "2022-12-26"}, {"name": "pwesty/LCSource", "stars": 29, "usage_count": 3, "created_at": "2015-08-11", "updated_at": "2015-08-13"}, {"name": "Sei-Lisa/LSL-compiler", "stars": 12, "usage_count": 1, "created_at": "2017-03-18", "updated_at": "2017-11-04"}, {"name": "IntendedConsequence/Launchy", "stars": 21, "usage_count": 1, "created_at": "2012-05-16", "updated_at": "2012-05-31"}, {"name": "ICRA-2019/MH-iSAM2_lib", "stars": 25, "usage_count": 8, "created_at": "2022-02-09", "updated_at": "2022-02-09"}, {"name": "speedmancs/ML", "stars": 48, "usage_count": 1, "created_at": "2017-08-19", "updated_at": "2017-09-24"}, {"name": "Whan000/MOLA-SLAM", "stars": 21, "usage_count": 4, "created_at": "2025-10-07", "updated_at": "2026-01-25"}, {"name": "NadineAB/MPC-Meshing_Point_Clouds", "stars": 24, "usage_count": 12, "created_at": "2015-12-18", "updated_at": "2021-12-26"}, {"name": "LORD-MicroStrain/MSCL", "stars": 0, "usage_count": 2, "created_at": "", "updated_at": ""}, {"name": "johnmichaloski/MTConnectGadgets", "stars": 19, "usage_count": 3, "created_at": "2013-08-05", "updated_at": "2013-08-30"}, {"name": "johnmichaloski/MTConnectToolbox", "stars": 21, "usage_count": 2, "created_at": "2013-10-24", "updated_at": "2020-04-03"}, {"name": "flashpixx/MachineLearning", "stars": 28, "usage_count": 1, "created_at": "2013-02-25", "updated_at": "2014-12-18"}, {"name": "gkruja/MoneroAndroidwallet", "stars": 11, "usage_count": 10, "created_at": "2017-05-17", "updated_at": "2017-09-01"}, {"name": "endomapper/NR-SLAM", "stars": 58, "usage_count": 1, "created_at": "2023-06-27", "updated_at": "2023-08-14"}, {"name": "yandex/NwSMTP", "stars": 71, "usage_count": 1, "created_at": "2010-10-22", "updated_at": "2012-04-22"}, {"name": "diva/OnLook", "stars": 15, "usage_count": 2, "created_at": "2014-10-30", "updated_at": "2014-12-04"}, {"name": "stillbreeze/Online-Stereo-Calibration", "stars": 37, "usage_count": 8, "created_at": "2019-06-03", "updated_at": "2019-12-14"}, {"name": "NSchertler/OnlineSurfaceReconstruction", "stars": 167, "usage_count": 1, "created_at": "2017-04-09", "updated_at": "2020-10-31"}, {"name": "thiagoralves/OpenPLC_v2", "stars": 205, "usage_count": 5, "created_at": "2016-05-13", "updated_at": "2018-06-22"}, {"name": "thiagoralves/OpenPLC_v3", "stars": 0, "usage_count": 5, "created_at": "", "updated_at": ""}, {"name": "The-OpenROAD-Project/OpenROAD", "stars": 2326, "usage_count": 2, "created_at": "2019-10-28", "updated_at": "2025-12-17"}, {"name": "erleben/OpenTissue", "stars": 102, "usage_count": 3, "created_at": "2018-02-11", "updated_at": "2022-08-14"}, {"name": "FuturraGroup/OpenVPNXor", "stars": 19, "usage_count": 5, "created_at": "2023-03-05", "updated_at": "2026-01-22"}, {"name": "faithandbrave/OvenToBoost", "stars": 29, "usage_count": 11, "created_at": "2011-02-20", "updated_at": "2014-05-13"}, {"name": "wayland-chen/P2PCenter", "stars": 41, "usage_count": 1, "created_at": "2015-03-19", "updated_at": "2014-10-15"}, {"name": "qiaokang92/P4wn", "stars": 12, "usage_count": 2, "created_at": "2020-12-25", "updated_at": "2021-04-19"}, {"name": "wvu-navLab/PPP-BayesTree", "stars": 56, "usage_count": 7, "created_at": "2018-02-05", "updated_at": "2019-05-01"}, {"name": "homologus/Pandoras-Toolbox-for-Bioinformatics", "stars": 25, "usage_count": 1, "created_at": "2014-12-05", "updated_at": "2015-04-24"}, {"name": "daviddoria/PatchBasedInpainting", "stars": 47, "usage_count": 1, "created_at": "2011-05-17", "updated_at": "2015-05-19"}, {"name": "urasandesu/Prig", "stars": 118, "usage_count": 2, "created_at": "2011-11-13", "updated_at": "2017-04-22"}, {"name": "pcaspers/Quantuccia", "stars": 25, "usage_count": 1, "created_at": "2017-03-18", "updated_at": "2017-11-04"}, {"name": "zhaoyanswill/RAPSearch2", "stars": 40, "usage_count": 1, "created_at": "2013-10-16", "updated_at": "2020-11-30"}, {"name": "Gj0705/RELOCALIZATION", "stars": 15, "usage_count": 8, "created_at": "2022-06-17", "updated_at": "2022-06-17"}, {"name": "epiqc/RKQC", "stars": 17, "usage_count": 4, "created_at": "2016-06-27", "updated_at": "2016-07-22"}, {"name": "meierue/RNNLIB", "stars": 45, "usage_count": 2, "created_at": "2009-07-30", "updated_at": "2015-12-17"}, {"name": "PositronicsLab/Ravelin", "stars": 18, "usage_count": 2, "created_at": "2013-02-18", "updated_at": "2016-08-19"}, {"name": "wvu-navLab/RobustGNSS", "stars": 145, "usage_count": 7, "created_at": "2017-08-15", "updated_at": "2019-10-11"}, {"name": "nasa/RtRetrievalFramework", "stars": 55, "usage_count": 1, "created_at": "2015-12-09", "updated_at": "2025-01-07"}, {"name": "Reactive-Extensions/RxCpp", "stars": 3170, "usage_count": 2, "created_at": "2013-09-04", "updated_at": "2024-07-30"}, {"name": "ReactiveX/RxCpp", "stars": 3175, "usage_count": 2, "created_at": "2013-09-04", "updated_at": "2024-07-30"}, {"name": "waynebhayes/SANA", "stars": 30, "usage_count": 1, "created_at": "2017-03-31", "updated_at": "2026-04-28"}, {"name": "dato-code/SFrame", "stars": 901, "usage_count": 2, "created_at": "2015-09-03", "updated_at": "2018-09-30"}, {"name": "turi-code/SFrame", "stars": 901, "usage_count": 2, "created_at": "2015-09-03", "updated_at": "2018-09-30"}, {"name": "cpvrlab/SLProject", "stars": 67, "usage_count": 5, "created_at": "2015-02-03", "updated_at": "2023-09-12"}, {"name": "cpvrlab/SLProject4", "stars": 12, "usage_count": 5, "created_at": "2023-04-28", "updated_at": "2026-03-05"}, {"name": "b6oy/SP2-Server", "stars": 22, "usage_count": 2, "created_at": "2017-01-24", "updated_at": "2017-01-24"}, {"name": "sangwook236/SWDT", "stars": 17, "usage_count": 5, "created_at": "2015-08-21", "updated_at": "2026-04-25"}, {"name": "proxysh/Safejumper-for-Android", "stars": 24, "usage_count": 5, "created_at": "2015-08-27", "updated_at": "2019-05-15"}, {"name": "epiqc/ScaffCC", "stars": 199, "usage_count": 4, "created_at": "2016-05-25", "updated_at": "2021-09-28"}, {"name": "scala-network/Scala", "stars": 14, "usage_count": 5, "created_at": "2022-03-25", "updated_at": "2026-05-01"}, {"name": "SCIInstitute/Seg3D", "stars": 119, "usage_count": 42, "created_at": "2015-03-19", "updated_at": "2023-12-08"}, {"name": "CasparCG/Server", "stars": 1009, "usage_count": 1, "created_at": "2013-03-26", "updated_at": "2025-12-12"}, {"name": "jaskie/Server", "stars": 22, "usage_count": 1, "created_at": "2014-10-17", "updated_at": "2025-10-26"}, {"name": "faithandbrave/Shand", "stars": 25, "usage_count": 3, "created_at": "2010-04-09", "updated_at": "2017-03-31"}, {"name": "Shark-ML/Shark", "stars": 541, "usage_count": 1, "created_at": "2015-10-09", "updated_at": "2024-05-25"}, {"name": "TorstenRobitzki/Sioux", "stars": 20, "usage_count": 1, "created_at": "2012-07-23", "updated_at": "2026-02-18"}, {"name": "utkabobr/SliceBeam", "stars": 101, "usage_count": 3, "created_at": "2024-11-01", "updated_at": "2025-04-14"}, {"name": "mikedaley/SpectREM", "stars": 13, "usage_count": 5, "created_at": "2016-10-14", "updated_at": "2017-08-20"}, {"name": "2black0/Stella-VSLAM-ROS-with-Pixi", "stars": 14, "usage_count": 5, "created_at": "2025-11-23", "updated_at": "2026-05-25"}, {"name": "tsbkelly/Streamdeck-Midibutton", "stars": 17, "usage_count": 5, "created_at": "2020-01-23", "updated_at": "2020-12-07"}, {"name": "SudoDEM/SudoDEM", "stars": 0, "usage_count": 2, "created_at": "", "updated_at": ""}, {"name": "zwandering/SysNav", "stars": 69, "usage_count": 1, "created_at": "2026-04-17", "updated_at": "2026-06-12"}, {"name": "TheSuperiorCoin/TheSuperiorCoin", "stars": 33, "usage_count": 12, "created_at": "2017-06-05", "updated_at": "2019-12-31"}, {"name": "tidalcycles/Tidal", "stars": 2822, "usage_count": 5, "created_at": "2010-09-09", "updated_at": "2025-06-13"}, {"name": "tuttleofx/TuttleOFX", "stars": 186, "usage_count": 7, "created_at": "2010-08-11", "updated_at": "2020-08-13"}, {"name": "armabon/UE4_CGAL", "stars": 32, "usage_count": 3, "created_at": "2016-11-22", "updated_at": "2018-10-05"}, {"name": "s3a-spatialaudio/VISR", "stars": 26, "usage_count": 1, "created_at": "2018-12-03", "updated_at": "2025-12-30"}, {"name": "Artikash/VNR-Core", "stars": 31, "usage_count": 2, "created_at": "2018-12-10", "updated_at": "2018-12-10"}, {"name": "zhukovaskychina/X-Nodejs", "stars": 22, "usage_count": 1, "created_at": "2019-05-15", "updated_at": "2019-06-02"}, {"name": "XeNTaXTools/XeNTaXTools-Legacy", "stars": 91, "usage_count": 1, "created_at": "2023-12-12", "updated_at": "2023-12-15"}, {"name": "XenodeStudio/Xenode", "stars": 32, "usage_count": 5, "created_at": "2022-08-22", "updated_at": "2024-11-09"}, {"name": "AnthonyTechhh/ZephyrWallet", "stars": 47, "usage_count": 5, "created_at": "2026-03-25", "updated_at": "2026-03-25"}, {"name": "qianqians/abelkhan", "stars": 134, "usage_count": 5, "created_at": "2016-06-28", "updated_at": "2025-08-04"}, {"name": "bcgsc/abyss", "stars": 327, "usage_count": 8, "created_at": "2012-03-19", "updated_at": "2025-03-27"}, {"name": "adshares/ads", "stars": 22, "usage_count": 1, "created_at": "2018-05-29", "updated_at": "2023-02-08"}, {"name": "aeonix/aeon-legacy", "stars": 223, "usage_count": 4, "created_at": "2014-06-06", "updated_at": "2018-02-23"}, {"name": "airball-aero/airball-embedded", "stars": 15, "usage_count": 2, "created_at": "2018-03-09", "updated_at": "2023-05-12"}, {"name": "airdcpp/airdcpp-windows", "stars": 97, "usage_count": 1, "created_at": "2013-11-09", "updated_at": "2026-03-07"}, {"name": "openvstorage/alba", "stars": 29, "usage_count": 2, "created_at": "2015-07-10", "updated_at": "2018-02-01"}, {"name": "ngeiswei/ardour", "stars": 19, "usage_count": 4, "created_at": "2015-09-16", "updated_at": "2025-12-11"}, {"name": "arqma/arqma", "stars": 49, "usage_count": 3, "created_at": "2018-07-01", "updated_at": "2026-02-08"}, {"name": "yongxin-ms/asyncio", "stars": 63, "usage_count": 5, "created_at": "2021-08-14", "updated_at": "2026-06-20"}, {"name": "jizhang-cmu/autonomy_stack_diablo_setup", "stars": 95, "usage_count": 1, "created_at": "2024-06-18", "updated_at": "2026-02-18"}, {"name": "jizhang-cmu/autonomy_stack_mecanum_wheel_platform", "stars": 294, "usage_count": 1, "created_at": "2024-08-16", "updated_at": "2026-06-06"}, {"name": "jyakaranda/autoware_ros", "stars": 28, "usage_count": 1, "created_at": "2019-04-15", "updated_at": "2019-10-31"}, {"name": "vrsys/avango", "stars": 15, "usage_count": 9, "created_at": "2013-10-30", "updated_at": "2020-07-08"}, {"name": "avplayer/avbot", "stars": 223, "usage_count": 4, "created_at": "2013-07-19", "updated_at": "2015-10-25"}, {"name": "Jackarain/avplayer", "stars": 429, "usage_count": 1, "created_at": "2012-03-27", "updated_at": "2017-05-02"}, {"name": "avplayer/avplayer", "stars": 122, "usage_count": 1, "created_at": "2013-01-09", "updated_at": "2015-08-23"}, {"name": "wenjiegit/avplayer", "stars": 11, "usage_count": 1, "created_at": "2014-10-17", "updated_at": "2014-07-18"}, {"name": "muravjov/bombono-dvd", "stars": 12, "usage_count": 5, "created_at": "2016-02-16", "updated_at": "2022-08-26"}, {"name": "bombono-dvd/bombono-dvd", "stars": 12, "usage_count": 5, "created_at": "2016-02-16", "updated_at": "2022-08-26"}, {"name": "sikuner/book-code", "stars": 38, "usage_count": 2, "created_at": "2018-08-28", "updated_at": "2018-08-28"}, {"name": "cryptozoidberg/boolberry", "stars": 40, "usage_count": 4, "created_at": "2014-04-19", "updated_at": "2020-01-15"}, {"name": "BorisSchaeling/boost-process", "stars": 32, "usage_count": 1, "created_at": "2014-04-20", "updated_at": "2016-09-25"}, {"name": "boston-dynamics/bosdyn-hospital-bot", "stars": 287, "usage_count": 1, "created_at": "2020-04-02", "updated_at": "2020-05-26"}, {"name": "OpenArkStudio/bsio", "stars": 40, "usage_count": 5, "created_at": "2019-05-07", "updated_at": "2022-04-05"}, {"name": "homer6/c_reading", "stars": 25, "usage_count": 3, "created_at": "2011-04-30", "updated_at": "2011-04-30"}, {"name": "graehl/carmel", "stars": 41, "usage_count": 1, "created_at": "2010-06-25", "updated_at": "2022-10-14"}, {"name": "jstarpl/casparcg-mav", "stars": 17, "usage_count": 1, "created_at": "2013-03-29", "updated_at": "2016-11-15"}, {"name": "ceph/ceph", "stars": 16649, "usage_count": 4, "created_at": "2011-09-01", "updated_at": "2026-05-27"}, {"name": "lidaohang/ceph_study", "stars": 463, "usage_count": 14, "created_at": "2018-04-11", "updated_at": "2020-09-27"}, {"name": "doublec/cf", "stars": 34, "usage_count": 2, "created_at": "2009-03-16", "updated_at": "2018-11-14"}, {"name": "kylelutz/chemkit", "stars": 55, "usage_count": 2, "created_at": "2011-02-13", "updated_at": "2022-06-21"}, {"name": "BitChute/chutoken", "stars": 18, "usage_count": 12, "created_at": "2018-02-18", "updated_at": "2018-02-18"}, {"name": "CERN-PH-CMG/cmg-cmssw", "stars": 19, "usage_count": 1, "created_at": "2013-09-25", "updated_at": "2019-07-03"}, {"name": "4am-robotics/cob_driver", "stars": 98, "usage_count": 1, "created_at": "2010-12-06", "updated_at": "2025-11-24"}, {"name": "yielding/code", "stars": 17, "usage_count": 3, "created_at": "2010-10-11", "updated_at": "2026-03-21"}, {"name": "wineslab/colosseum-scope", "stars": 37, "usage_count": 6, "created_at": "2021-05-20", "updated_at": "2025-12-11"}, {"name": "coolfluid/coolfluid3", "stars": 78, "usage_count": 2, "created_at": "2011-08-08", "updated_at": "2020-09-20"}, {"name": "cpp-at-ariel/cpp-5779", "stars": 15, "usage_count": 1, "created_at": "2019-02-12", "updated_at": "2020-08-10"}, {"name": "watson-intu/cpp-sdk", "stars": 17, "usage_count": 10, "created_at": "2016-11-09", "updated_at": "2018-04-16"}, {"name": "mtconnect/cppagent", "stars": 175, "usage_count": 3, "created_at": "2009-09-18", "updated_at": "2026-04-24"}, {"name": "tpuronen/cppspec", "stars": 51, "usage_count": 3, "created_at": "2009-03-21", "updated_at": "2020-10-06"}, {"name": "sutambe/cpptruths", "stars": 20, "usage_count": 2, "created_at": "2015-03-16", "updated_at": "2019-09-06"}, {"name": "sld666666/cptf", "stars": 29, "usage_count": 3, "created_at": "2013-11-11", "updated_at": "2014-06-05"}, {"name": "opencsd/csd-filesystem", "stars": 11, "usage_count": 18, "created_at": "2021-11-04", "updated_at": "2023-12-13"}, {"name": "jedeschaud/ct_icp", "stars": 889, "usage_count": 2, "created_at": "2021-05-18", "updated_at": "2022-12-05"}, {"name": "godfat/cubeat", "stars": 19, "usage_count": 6, "created_at": "2008-06-14", "updated_at": "2016-02-02"}, {"name": "cyclus/cyclus", "stars": 86, "usage_count": 1, "created_at": "2012-01-30", "updated_at": "2026-03-03"}, {"name": "CryptoCoinLabs/darknetspace", "stars": 13, "usage_count": 4, "created_at": "2014-10-13", "updated_at": "2019-05-25"}, {"name": "dashcoin/dashcoin", "stars": 31, "usage_count": 2, "created_at": "2014-06-27", "updated_at": "2018-03-28"}, {"name": "GobySoft/dccl", "stars": 22, "usage_count": 1, "created_at": "2015-10-19", "updated_at": "2026-03-19"}, {"name": "cth103/dcpomatic", "stars": 145, "usage_count": 1, "created_at": "2015-05-26", "updated_at": "2026-04-26"}, {"name": "cth103/dcpomatic2", "stars": 135, "usage_count": 2, "created_at": "2015-05-26", "updated_at": "2025-12-17"}, {"name": "rapyuta-robotics/depthai_ros", "stars": 30, "usage_count": 1, "created_at": "2021-02-01", "updated_at": "2022-07-12"}, {"name": "robinz-labs/digishow", "stars": 130, "usage_count": 5, "created_at": "2020-09-06", "updated_at": "2026-06-09"}, {"name": "petergottschling/discovering_modern_cpp", "stars": 208, "usage_count": 1, "created_at": "2015-11-16", "updated_at": "2017-11-12"}, {"name": "petergottschling/dmc2", "stars": 22, "usage_count": 1, "created_at": "2018-08-16", "updated_at": "2018-08-16"}, {"name": "chardmeier/docent", "stars": 12, "usage_count": 28, "created_at": "2012-09-04", "updated_at": "2017-11-16"}, {"name": "davehorton/drachtio-server", "stars": 297, "usage_count": 1, "created_at": "2013-12-09", "updated_at": "2025-12-13"}, {"name": "drachtio/drachtio-server", "stars": 319, "usage_count": 1, "created_at": "2013-12-09", "updated_at": "2026-04-27"}, {"name": "dk-kling/drivefuzz", "stars": 20, "usage_count": 1, "created_at": "2023-04-04", "updated_at": "2023-04-05"}, {"name": "swagatata/ds_and_algos", "stars": 35, "usage_count": 1, "created_at": "2011-03-01", "updated_at": "2025-06-16"}, {"name": "FromtonRouge/eProDrums", "stars": 11, "usage_count": 3, "created_at": "2012-07-15", "updated_at": "2015-05-01"}, {"name": "dknoester/ealib", "stars": 62, "usage_count": 2, "created_at": "2012-06-04", "updated_at": "2020-01-24"}, {"name": "Rinnegatamante/easyrpg-player-3ds", "stars": 13, "usage_count": 1, "created_at": "2016-03-20", "updated_at": "2016-05-01"}, {"name": "edollar-project/edollar", "stars": 11, "usage_count": 10, "created_at": "2018-01-07", "updated_at": "2019-05-24"}, {"name": "jacking75/edu_cpp_Boost_Lib", "stars": 18, "usage_count": 1, "created_at": "2015-10-05", "updated_at": "2024-05-16"}, {"name": "electroneum/electroneum", "stars": 383, "usage_count": 4, "created_at": "2017-10-31", "updated_at": "2026-04-27"}, {"name": "etternagame/etterna", "stars": 0, "usage_count": 5, "created_at": "", "updated_at": ""}, {"name": "kbogert/falconunity", "stars": 20, "usage_count": 1, "created_at": "2014-07-02", "updated_at": "2022-06-11"}, {"name": "fawkesrobotics/fawkes", "stars": 70, "usage_count": 8, "created_at": "2010-10-28", "updated_at": "2025-05-10"}, {"name": "feelpp/feelpp", "stars": 325, "usage_count": 6, "created_at": "2012-05-21", "updated_at": "2026-01-15"}, {"name": "monkeyiq/ferris", "stars": 0, "usage_count": 8, "created_at": "", "updated_at": ""}, {"name": "parsa-epfl/flexus", "stars": 14, "usage_count": 56, "created_at": "2017-09-28", "updated_at": "2025-12-09"}, {"name": "Sigil-Ebook/flightcrew", "stars": 36, "usage_count": 1, "created_at": "2015-03-13", "updated_at": "2019-07-21"}, {"name": "flow123d/flow123d", "stars": 20, "usage_count": 1, "created_at": "2013-10-16", "updated_at": "2025-12-17"}, {"name": "LBEM-CH/focus", "stars": 41, "usage_count": 4, "created_at": "2014-02-02", "updated_at": "2025-10-30"}, {"name": "ReFRACtor/framework", "stars": 11, "usage_count": 1, "created_at": "2017-07-31", "updated_at": "2026-03-13"}, {"name": "freelan-developers/freelan", "stars": 1378, "usage_count": 1, "created_at": "2012-04-25", "updated_at": "2023-07-31"}, {"name": "nousxiong/gce", "stars": 128, "usage_count": 1, "created_at": "2014-01-25", "updated_at": "2017-07-25"}, {"name": "sangwook236/general-development-and-testing", "stars": 17, "usage_count": 5, "created_at": "2015-08-21", "updated_at": "2025-12-19"}, {"name": "mapsme/geocore", "stars": 12, "usage_count": 2, "created_at": "2019-08-26", "updated_at": "2020-04-20"}, {"name": "dasec/glasses-detection", "stars": 17, "usage_count": 2, "created_at": "2018-01-02", "updated_at": "2018-06-03"}, {"name": "Globulation2/glob2", "stars": 46, "usage_count": 1, "created_at": "2019-12-26", "updated_at": "2025-09-06"}, {"name": "imvu/gmtl", "stars": 24, "usage_count": 1, "created_at": "2012-08-30", "updated_at": "2018-02-06"}, {"name": "y2s82/goblin_camp", "stars": 37, "usage_count": 3, "created_at": "2018-11-02", "updated_at": "2020-10-12"}, {"name": "data61/gossamer", "stars": 23, "usage_count": 1, "created_at": "2016-12-16", "updated_at": "2024-12-04"}, {"name": "fzi-forschungszentrum-informatik/gpu-voxels", "stars": 315, "usage_count": 2, "created_at": "2014-09-10", "updated_at": "2023-08-05"}, {"name": "antmd/graph-tool", "stars": 110, "usage_count": 5, "created_at": "2015-06-18", "updated_at": "2023-10-05"}, {"name": "OpenTTD/grfcodec", "stars": 0, "usage_count": 2, "created_at": "", "updated_at": ""}, {"name": "devbharat/gtsam", "stars": 88, "usage_count": 12, "created_at": "2014-12-08", "updated_at": "2014-12-19"}, {"name": "haidai/gtsam", "stars": 21, "usage_count": 6, "created_at": "2016-06-29", "updated_at": "2022-08-12"}, {"name": "zoq/gym_tcp_api", "stars": 26, "usage_count": 2, "created_at": "2016-12-30", "updated_at": "2025-01-15"}, {"name": "havenprotocol/haven", "stars": 59, "usage_count": 12, "created_at": "2018-01-25", "updated_at": "2021-04-27"}, {"name": "haven-protocol-org/haven-main", "stars": 43, "usage_count": 5, "created_at": "2021-06-23", "updated_at": "2024-12-11"}, {"name": "fkanehiro/hrpsys-base", "stars": 41, "usage_count": 2, "created_at": "2014-04-11", "updated_at": "2025-10-02"}, {"name": "utsushi/imagescan", "stars": 19, "usage_count": 6, "created_at": "2014-07-08", "updated_at": "2018-04-07"}, {"name": "salilab/imp", "stars": 81, "usage_count": 9, "created_at": "2012-06-21", "updated_at": "2026-04-25"}, {"name": "rpl-cmu/incopt", "stars": 24, "usage_count": 8, "created_at": "2022-03-08", "updated_at": "2023-02-10"}, {"name": "guanlisheng/infobright-4.0.7", "stars": 15, "usage_count": 2, "created_at": "2016-01-21", "updated_at": "2016-02-01"}, {"name": "Illumina/isaac2", "stars": 21, "usage_count": 43, "created_at": "2015-04-09", "updated_at": "2016-04-12"}, {"name": "sequencing/isaac_aligner", "stars": 36, "usage_count": 38, "created_at": "2012-12-20", "updated_at": "2015-04-07"}, {"name": "izenecloud/izenelib", "stars": 43, "usage_count": 6, "created_at": "2014-09-11", "updated_at": "2015-04-21"}, {"name": "jgresula/jagpdf", "stars": 71, "usage_count": 2, "created_at": "2009-05-08", "updated_at": "2020-11-12"}, {"name": "jsk-ros-pkg/jsk_recognition", "stars": 289, "usage_count": 1, "created_at": "2014-03-03", "updated_at": "2026-01-08"}, {"name": "jsk-ros-pkg/jsk_visualization", "stars": 356, "usage_count": 1, "created_at": "2014-03-03", "updated_at": "2025-08-22"}, {"name": "edubois/kaliscope", "stars": 15, "usage_count": 6, "created_at": "2015-03-24", "updated_at": "2015-10-29"}, {"name": "iocroblab/kautham", "stars": 24, "usage_count": 1, "created_at": "2014-05-02", "updated_at": "2026-02-09"}, {"name": "anttisalonen/kingdoms", "stars": 29, "usage_count": 7, "created_at": "2010-11-23", "updated_at": "2014-11-16"}, {"name": "msesia/knockoffgwas", "stars": 16, "usage_count": 5, "created_at": "2020-07-21", "updated_at": "2022-07-07"}, {"name": "kokua/kokua", "stars": 24, "usage_count": 4, "created_at": "2010-11-11", "updated_at": "2011-05-04"}, {"name": "openlastchaos/lastchaos-source-server", "stars": 16, "usage_count": 5, "created_at": "2021-07-31", "updated_at": "2021-07-31"}, {"name": "Slesa/launchy", "stars": 55, "usage_count": 1, "created_at": "2014-12-20", "updated_at": "2017-07-07"}, {"name": "leviarcoin/leviarcoin-src", "stars": 13, "usage_count": 12, "created_at": "2017-04-16", "updated_at": "2018-10-25"}, {"name": "lukaslaobeyer/libdrone", "stars": 11, "usage_count": 2, "created_at": "2015-04-06", "updated_at": "2016-10-13"}, {"name": "RJ/libf2f", "stars": 16, "usage_count": 2, "created_at": "2009-05-29", "updated_at": "2021-07-02"}, {"name": "libnifalcon/libnifalcon", "stars": 72, "usage_count": 1, "created_at": "2008-11-14", "updated_at": "2021-07-26"}, {"name": "aldebaran/libqi", "stars": 71, "usage_count": 3, "created_at": "2011-12-13", "updated_at": "2024-06-17"}, {"name": "hjiang/linqxx", "stars": 53, "usage_count": 1, "created_at": "2008-10-08", "updated_at": "2008-10-08"}, {"name": "GrossfieldLab/loos", "stars": 0, "usage_count": 3, "created_at": "", "updated_at": ""}, {"name": "LucidDB/luciddb", "stars": 55, "usage_count": 2, "created_at": "2011-12-20", "updated_at": "2020-10-01"}, {"name": "masari-project/masari", "stars": 71, "usage_count": 12, "created_at": "2017-09-05", "updated_at": "2023-03-29"}, {"name": "ouxianghui/mediasoup-server", "stars": 16, "usage_count": 5, "created_at": "2023-11-07", "updated_at": "2024-07-01"}, {"name": "ruslanch/memhook", "stars": 18, "usage_count": 2, "created_at": "2015-01-14", "updated_at": "2019-02-21"}, {"name": "agra-uni-bremen/metaSMT", "stars": 52, "usage_count": 1, "created_at": "2012-06-28", "updated_at": "2016-03-26"}, {"name": "herumi/misc", "stars": 62, "usage_count": 1, "created_at": "2012-11-28", "updated_at": "2026-02-02"}, {"name": "wecacuee/modern-occupancy-grid", "stars": 24, "usage_count": 9, "created_at": "2014-02-19", "updated_at": "2020-12-24"}, {"name": "monero-project/monero", "stars": 0, "usage_count": 5, "created_at": "", "updated_at": ""}, {"name": "monerov/monerov", "stars": 31, "usage_count": 12, "created_at": "2018-05-07", "updated_at": "2019-05-28"}, {"name": "simunova/mtl4", "stars": 32, "usage_count": 1, "created_at": "2019-03-26", "updated_at": "2021-03-05"}, {"name": "johnoneil/mupen64plus-web", "stars": 17, "usage_count": 8, "created_at": "2015-12-14", "updated_at": "2018-03-21"}, {"name": "mysql/mysql-workbench", "stars": 989, "usage_count": 6, "created_at": "2015-10-22", "updated_at": "2026-04-23"}, {"name": "northern-bites/nao-man", "stars": 34, "usage_count": 1, "created_at": "2008-07-24", "updated_at": "2010-05-10"}, {"name": "nelson-lang/nelson", "stars": 124, "usage_count": 5, "created_at": "2016-12-25", "updated_at": "2026-04-27"}, {"name": "DaikiMaekawa/neovim.cpp", "stars": 27, "usage_count": 2, "created_at": "2016-06-11", "updated_at": "2018-07-05"}, {"name": "zoq/nes", "stars": 17, "usage_count": 2, "created_at": "2016-02-26", "updated_at": "2019-03-05"}, {"name": "lucasjones/node-cryptonote-util", "stars": 14, "usage_count": 4, "created_at": "2014-05-15", "updated_at": "2017-01-12"}, {"name": "noxrepo/nox", "stars": 145, "usage_count": 1, "created_at": "2012-04-16", "updated_at": "2014-02-14"}, {"name": "numenta/nupic.core", "stars": 273, "usage_count": 1, "created_at": "2014-01-30", "updated_at": "2024-12-03"}, {"name": "orocos-toolchain/ocl", "stars": 20, "usage_count": 1, "created_at": "2012-11-27", "updated_at": "2021-11-29"}, {"name": "Meituan-Dianping/octo-ns", "stars": 334, "usage_count": 1, "created_at": "2018-12-20", "updated_at": "2022-11-16"}, {"name": "yusuketomoto/ofxCGAL", "stars": 31, "usage_count": 6, "created_at": "2013-11-20", "updated_at": "2015-01-22"}, {"name": "mapsme/omim", "stars": 4608, "usage_count": 2, "created_at": "2015-09-20", "updated_at": "2022-10-05"}, {"name": "ccdevnet/openc2e", "stars": 51, "usage_count": 2, "created_at": "2008-05-06", "updated_at": "2020-05-01"}, {"name": "pedromateo/openhmitester", "stars": 80, "usage_count": 2, "created_at": "2014-09-22", "updated_at": "2024-01-10"}, {"name": "albertz/openlierox", "stars": 284, "usage_count": 4, "created_at": "2011-05-12", "updated_at": "2024-08-25"}, {"name": "openlierox/openlierox", "stars": 288, "usage_count": 4, "created_at": "2011-05-12", "updated_at": "2026-04-29"}, {"name": "apache/openoffice", "stars": 1188, "usage_count": 2, "created_at": "2013-11-13", "updated_at": "2026-04-29"}, {"name": "organicmaps/organicmaps", "stars": 14389, "usage_count": 2, "created_at": "2020-12-27", "updated_at": "2026-06-22"}, {"name": "psoetens/orocos-rtt", "stars": 21, "usage_count": 23, "created_at": "2008-11-20", "updated_at": "2013-11-22"}, {"name": "haozzzzzzzz/osgEarthX", "stars": 77, "usage_count": 5, "created_at": "2015-09-19", "updated_at": "2018-03-29"}, {"name": "ariloytynoja/pagan2-msa", "stars": 12, "usage_count": 1, "created_at": "2019-03-08", "updated_at": "2024-07-02"}, {"name": "leonid-pishchulin/partapp", "stars": 33, "usage_count": 15, "created_at": "2014-01-14", "updated_at": "2014-06-11"}, {"name": "ot/path_decomposed_tries", "stars": 58, "usage_count": 1, "created_at": "2011-10-03", "updated_at": "2023-01-27"}, {"name": "fastio/pedis", "stars": 1330, "usage_count": 1, "created_at": "2016-08-04", "updated_at": "2019-10-02"}, {"name": "peerborough/peerapi", "stars": 69, "usage_count": 5, "created_at": "2016-02-27", "updated_at": "2017-10-30"}, {"name": "newrun/peerapi", "stars": 69, "usage_count": 5, "created_at": "2016-02-27", "updated_at": "2017-10-30"}, {"name": "peersio/peerconnect", "stars": 69, "usage_count": 5, "created_at": "2016-02-27", "updated_at": "2017-10-30"}, {"name": "flomesh-io/pipy", "stars": 826, "usage_count": 5, "created_at": "2021-02-11", "updated_at": "2026-06-15"}, {"name": "pokerth/pokerth", "stars": 607, "usage_count": 1, "created_at": "2012-05-10", "updated_at": "2026-03-16"}, {"name": "Victor-Haefner/polyvr", "stars": 0, "usage_count": 2, "created_at": "", "updated_at": ""}, {"name": "hnarayanan/porous-flow", "stars": 28, "usage_count": 2, "created_at": "2015-11-28", "updated_at": "2015-11-28"}, {"name": "dickoa/prepr", "stars": 12, "usage_count": 1, "created_at": "2020-05-10", "updated_at": "2022-11-09"}, {"name": "naver/prism-live-studio", "stars": 108, "usage_count": 5, "created_at": "2020-03-30", "updated_at": "2026-06-11"}, {"name": "OpenVZ/prl-disp-service", "stars": 11, "usage_count": 3, "created_at": "2015-06-02", "updated_at": "2024-04-29"}, {"name": "svenstaro/pseudoform", "stars": 37, "usage_count": 1, "created_at": "2009-12-27", "updated_at": "2010-05-09"}, {"name": "mzdb/pwiz-mzdb", "stars": 13, "usage_count": 4, "created_at": "2014-03-04", "updated_at": "2021-02-12"}, {"name": "pyrokitty64/pyrokitty-releases", "stars": 14, "usage_count": 4, "created_at": "2026-02-01", "updated_at": "2026-05-09"}, {"name": "qcscine/qcmaquis", "stars": 47, "usage_count": 26, "created_at": "2020-10-12", "updated_at": "2025-09-11"}, {"name": "stevewolter/rapidSTORM", "stars": 18, "usage_count": 11, "created_at": "2013-10-24", "updated_at": "2018-07-06"}, {"name": "marekesz/rbg", "stars": 14, "usage_count": 5, "created_at": "2018-11-12", "updated_at": "2025-11-11"}, {"name": "rdkit/rdkit-orig", "stars": 23, "usage_count": 1, "created_at": "2012-08-17", "updated_at": "2018-07-24"}, {"name": "qicosmos/rest_rpc_old", "stars": 62, "usage_count": 2, "created_at": "2016-04-18", "updated_at": "2016-10-31"}, {"name": "rho-devel/rho", "stars": 134, "usage_count": 1, "created_at": "2014-06-07", "updated_at": "2017-06-30"}, {"name": "SANS3R66/roblox-2016-source-code", "stars": 18, "usage_count": 5, "created_at": "2025-03-27", "updated_at": "2026-06-02"}, {"name": "NUbots/robocup", "stars": 35, "usage_count": 1, "created_at": "2009-11-09", "updated_at": "2014-04-13"}, {"name": "apache/rocketmq-client-cpp", "stars": 393, "usage_count": 2, "created_at": "2018-10-11", "updated_at": "2026-03-17"}, {"name": "glipari/rtscan", "stars": 12, "usage_count": 2, "created_at": "2012-03-22", "updated_at": "2016-02-29"}, {"name": "orocos-toolchain/rtt", "stars": 89, "usage_count": 8, "created_at": "2012-11-27", "updated_at": "2022-06-08"}, {"name": "ryo-currency/ryo-currency", "stars": 81, "usage_count": 12, "created_at": "2018-06-24", "updated_at": "2024-10-11"}, {"name": "safex/safexcore", "stars": 31, "usage_count": 12, "created_at": "2018-07-06", "updated_at": "2022-03-15"}, {"name": "salvium/salvium", "stars": 39, "usage_count": 5, "created_at": "2023-07-12", "updated_at": "2026-06-20"}, {"name": "scala-network/scala-v7", "stars": 81, "usage_count": 5, "created_at": "2018-01-22", "updated_at": "2021-11-09"}, {"name": "4lex4/scantailor-advanced", "stars": 1413, "usage_count": 33, "created_at": "2017-10-12", "updated_at": "2023-09-13"}, {"name": "lvv/scc", "stars": 63, "usage_count": 1, "created_at": "2011-04-13", "updated_at": "2016-04-29"}, {"name": "scorum/scorum", "stars": 59, "usage_count": 7, "created_at": "2017-10-13", "updated_at": "2024-05-27"}, {"name": "secondo-database/secondo", "stars": 15, "usage_count": 4, "created_at": "2020-09-20", "updated_at": "2026-03-03"}, {"name": "kahowang/sensor-fusion-for-localization-and-mapping", "stars": 782, "usage_count": 8, "created_at": "2021-08-15", "updated_at": "2022-05-20"}, {"name": "septentrio-gnss/septentrio_gnss_driver", "stars": 127, "usage_count": 2, "created_at": "2020-08-30", "updated_at": "2026-06-13"}, {"name": "mikrosimage/sequenceparser", "stars": 35, "usage_count": 6, "created_at": "2012-01-04", "updated_at": "2019-08-20"}, {"name": "CasparCG/server", "stars": 1048, "usage_count": 1, "created_at": "2013-03-26", "updated_at": "2026-04-23"}, {"name": "SICKAG/sick_safetyscanners_base", "stars": 19, "usage_count": 4, "created_at": "2019-10-07", "updated_at": "2026-05-05"}, {"name": "uos/sick_tim", "stars": 48, "usage_count": 1, "created_at": "2013-04-21", "updated_at": "2024-11-27"}, {"name": "jeanlemotan/silkopter", "stars": 40, "usage_count": 5, "created_at": "2015-02-12", "updated_at": "2019-01-07"}, {"name": "jbresearch/simcommsys", "stars": 13, "usage_count": 1, "created_at": "2014-01-17", "updated_at": "2024-07-22"}, {"name": "BoPeng/simuPOP", "stars": 0, "usage_count": 1, "created_at": "", "updated_at": ""}, {"name": "sirikata/sirikata", "stars": 125, "usage_count": 2, "created_at": "2009-01-18", "updated_at": "2015-12-13"}, {"name": "okhmanyuk-ev/sky", "stars": 12, "usage_count": 5, "created_at": "2022-04-09", "updated_at": "2026-05-13"}, {"name": "uccross/skyhookdm-ceph", "stars": 29, "usage_count": 14, "created_at": "2017-03-09", "updated_at": "2020-07-29"}, {"name": "sunmiaozju/smartcar", "stars": 295, "usage_count": 1, "created_at": "2019-01-26", "updated_at": "2019-04-02"}, {"name": "wells-wei-wei/smplify-x_in_docker", "stars": 22, "usage_count": 7, "created_at": "2020-04-24", "updated_at": "2021-03-29"}, {"name": "cslab-ntua/sparsex", "stars": 43, "usage_count": 1, "created_at": "2014-07-23", "updated_at": "2019-01-16"}, {"name": "boost-spirit/spirit", "stars": 12, "usage_count": 1, "created_at": "2011-01-17", "updated_at": "2011-01-20"}, {"name": "tomasen/splayer", "stars": 809, "usage_count": 4, "created_at": "2015-03-21", "updated_at": "2017-10-12"}, {"name": "youngwolf-project/st_asio_wrapper", "stars": 97, "usage_count": 3, "created_at": "2013-02-20", "updated_at": "2025-11-27"}, {"name": "stdlib-js/stdlib", "stars": 5636, "usage_count": 4, "created_at": "2016-03-24", "updated_at": "2025-12-19"}, {"name": "enertial/streamdeck-dcs-interface", "stars": 221, "usage_count": 5, "created_at": "2020-02-08", "updated_at": "2026-01-22"}, {"name": "ErikBongers/streamdeck-lightroom", "stars": 40, "usage_count": 5, "created_at": "2019-12-14", "updated_at": "2024-04-19"}, {"name": "elgatosf/streamdeck-memorygame", "stars": 23, "usage_count": 5, "created_at": "2019-01-08", "updated_at": "2019-11-12"}, {"name": "ZongyiYang/streamdeck-youtube-dl-plugin", "stars": 17, "usage_count": 5, "created_at": "2020-11-24", "updated_at": "2025-01-12"}, {"name": "uboot/stromx", "stars": 14, "usage_count": 9, "created_at": "2011-10-28", "updated_at": "2020-02-19"}, {"name": "ot/succinct", "stars": 213, "usage_count": 2, "created_at": "2011-10-16", "updated_at": "2024-01-03"}, {"name": "sumoprojects/sumokoin", "stars": 128, "usage_count": 5, "created_at": "2017-04-26", "updated_at": "2024-12-25"}, {"name": "alamaison/swish", "stars": 236, "usage_count": 2, "created_at": "2011-07-13", "updated_at": "2021-02-09"}, {"name": "msipos/syntaxic", "stars": 12, "usage_count": 2, "created_at": "2015-02-20", "updated_at": "2016-03-12"}, {"name": "Open-Transport/synthese", "stars": 24, "usage_count": 3, "created_at": "2013-12-02", "updated_at": "2016-01-29"}, {"name": "zausiu/tcpgo_another_tcpcopy_core", "stars": 13, "usage_count": 1, "created_at": "2018-07-31", "updated_at": "2018-07-31"}, {"name": "tungstenfabric/tf-controller", "stars": 62, "usage_count": 1, "created_at": "2019-12-31", "updated_at": "2024-04-29"}, {"name": "ponderworthy/the-box-of-no-return", "stars": 14, "usage_count": 4, "created_at": "2018-01-13", "updated_at": "2023-04-15"}, {"name": "BorisSchaeling/theboostcpplibraries", "stars": 99, "usage_count": 3, "created_at": "2018-01-04", "updated_at": "2022-06-29"}, {"name": "ml4ai/tomcat", "stars": 26, "usage_count": 1, "created_at": "2019-07-01", "updated_at": "2026-05-29"}, {"name": "topling/topling-ark", "stars": 18, "usage_count": 1, "created_at": "2024-06-23", "updated_at": "2026-05-30"}, {"name": "leapmotion/touchless", "stars": 19, "usage_count": 1, "created_at": "2016-10-05", "updated_at": "2016-10-31"}, {"name": "zgpio/tree.nvim", "stars": 182, "usage_count": 2, "created_at": "2019-10-09", "updated_at": "2022-06-10"}, {"name": "TRIQS/triqs_0.x", "stars": 11, "usage_count": 10, "created_at": "2011-10-20", "updated_at": "2014-02-06"}, {"name": "Tudat/tudat", "stars": 87, "usage_count": 54, "created_at": "2016-01-22", "updated_at": "2023-12-09"}, {"name": "mat007/turtle", "stars": 51, "usage_count": 1, "created_at": "2015-03-01", "updated_at": "2025-08-24"}, {"name": "sboli/twmn", "stars": 534, "usage_count": 1, "created_at": "2011-08-16", "updated_at": "2025-10-23"}, {"name": "migumar2/uiHRDC", "stars": 24, "usage_count": 4, "created_at": "2016-03-31", "updated_at": "2020-05-14"}, {"name": "uPlexa/uplexa", "stars": 48, "usage_count": 12, "created_at": "2018-10-23", "updated_at": "2022-09-09"}, {"name": "aldebaran/urbi", "stars": 22, "usage_count": 4, "created_at": "2013-02-19", "updated_at": "2019-02-26"}, {"name": "urbiforge/urbi", "stars": 20, "usage_count": 4, "created_at": "2016-04-16", "updated_at": "2024-06-14"}, {"name": "utsushi/utsushi", "stars": 22, "usage_count": 6, "created_at": "2014-07-08", "updated_at": "2018-04-10"}, {"name": "usdot-fhwa-stol/v2x-ros-driver", "stars": 17, "usage_count": 1, "created_at": "2018-12-21", "updated_at": "2026-06-03"}, {"name": "VectorRobotics/vector_navigation_stack", "stars": 27, "usage_count": 1, "created_at": "2025-09-06", "updated_at": "2026-03-30"}, {"name": "ox-vgg/vise", "stars": 48, "usage_count": 7, "created_at": "2017-07-06", "updated_at": "2025-11-28"}, {"name": "named-data/vndn", "stars": 21, "usage_count": 11, "created_at": "2013-05-25", "updated_at": "2013-05-31"}, {"name": "Dangetsu/vnr", "stars": 91, "usage_count": 2, "created_at": "2017-09-26", "updated_at": "2020-02-19"}, {"name": "genomics-dev/wecall", "stars": 13, "usage_count": 2, "created_at": "2018-09-17", "updated_at": "2019-09-03"}, {"name": "Mrsandman327/windows-book-code-c-", "stars": 72, "usage_count": 2, "created_at": "2019-05-29", "updated_at": "2019-05-29"}, {"name": "wjl12/wjl12-opengigevision", "stars": 27, "usage_count": 1, "created_at": "2015-07-12", "updated_at": "2015-07-12"}, {"name": "sq9fve/wsjt-z", "stars": 37, "usage_count": 1, "created_at": "2026-04-27", "updated_at": "2026-06-12"}, {"name": "WSJTX/wsjtx", "stars": 44, "usage_count": 1, "created_at": "2026-02-06", "updated_at": "2026-06-19"}, {"name": "yandex/yamail", "stars": 13, "usage_count": 2, "created_at": "2014-02-24", "updated_at": "2015-11-23"}, {"name": "vnaydionov/yb-orm", "stars": 39, "usage_count": 2, "created_at": "2013-12-13", "updated_at": "2020-05-13"}, {"name": "hyle-team/zano", "stars": 162, "usage_count": 4, "created_at": "2018-12-27", "updated_at": "2026-06-17"}, {"name": "ZephyrProtocol/zephyr", "stars": 150, "usage_count": 5, "created_at": "2023-05-25", "updated_at": "2025-06-11"}, {"name": "zpublic/zpublic", "stars": 55, "usage_count": 2, "created_at": "2012-11-07", "updated_at": "2016-01-18"}];
const contribRows = [{"version": "boost-1.89.0", "person": "Peter Dimov", "commit_count": 2}, {"version": "boost-1.89.0", "person": "grafikrobot", "commit_count": 2}, {"version": "boost-1.88.0", "person": "Peter Dimov", "commit_count": 3}, {"version": "boost-1.86.0", "person": "grafikrobot", "commit_count": 6}, {"version": "boost-1.85.0", "person": "grafikrobot", "commit_count": 2}, {"version": "boost-1.84.0", "person": "Peter Dimov", "commit_count": 2}, {"version": "boost-1.79.0", "person": "Peter Dimov", "commit_count": 17}, {"version": "boost-1.79.0", "person": "Darshan Sen", "commit_count": 1}, {"version": "boost-1.77.0", "person": "Peter Dimov", "commit_count": 8}, {"version": "boost-1.76.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.76.0", "person": "Peter Dimov", "commit_count": 1}, {"version": "boost-1.73.0", "person": "glenfe", "commit_count": 1}, {"version": "boost-1.71.0", "person": "tinko92", "commit_count": 1}, {"version": "boost-1.71.0", "person": "Jac1494", "commit_count": 1}, {"version": "boost-1.71.0", "person": "glenfe", "commit_count": 1}, {"version": "boost-1.70.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.69.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.68.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.67.0", "person": "danieljames", "commit_count": 1}, {"version": "boost-1.67.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.66.0", "person": "eldiener", "commit_count": 8}, {"version": "boost-1.66.0", "person": "Nikita Kniazev", "commit_count": 1}, {"version": "boost-1.64.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.63.0", "person": "eldiener", "commit_count": 2}, {"version": "boost-1.63.0", "person": "grafikrobot", "commit_count": 2}, {"version": "boost-1.60.0", "person": "eldiener", "commit_count": 1}, {"version": "boost-1.60.0", "person": "Edward Diener", "commit_count": 1}, {"version": "boost-1.60.0", "person": "mclow", "commit_count": 1}, {"version": "boost-1.59.0", "person": "eldiener", "commit_count": 10}, {"version": "boost-1.58.0", "person": "eldiener", "commit_count": 3}, {"version": "boost-1.58.0", "person": "jzmaddock", "commit_count": 2}, {"version": "boost-1.58.0", "person": "Belcourt", "commit_count": 1}, {"version": "boost-1.58.0", "person": "Alex Henrie", "commit_count": 1}, {"version": "boost-1.57.0", "person": "jzmaddock", "commit_count": 1}, {"version": "boost-1.57.0", "person": "Belcourt", "commit_count": 1}, {"version": "boost-1.57.0", "person": "danieljames", "commit_count": 1}, {"version": "boost-1.56.0", "person": "danieljames", "commit_count": 1}, {"version": "boost-1.55.0", "person": "Stephen Kelly", "commit_count": 2}, {"version": "boost-1.54.0", "person": "swatanabe", "commit_count": 4}, {"version": "boost-1.53.0", "person": "mclow", "commit_count": 2}, {"version": "boost-1.47.0", "person": "swatanabe", "commit_count": 1}, {"version": "boost-1.46.0", "person": "swatanabe", "commit_count": 1}, {"version": "boost-1.44.0", "person": "swatanabe", "commit_count": 4}, {"version": "boost-1.44.0", "person": "jewillco", "commit_count": 3}, {"version": "boost-1.44.0", "person": "danieljames", "commit_count": 2}, {"version": "boost-1.44.0", "person": "Daniel Walker", "commit_count": 2}, {"version": "boost-1.41.0", "person": "straszheim", "commit_count": 2}, {"version": "boost-1.41.0", "person": "swatanabe", "commit_count": 1}, {"version": "boost-1.40.0", "person": "swatanabe", "commit_count": 8}, {"version": "boost-1.40.0", "person": "straszheim", "commit_count": 2}, {"version": "boost-1.40.0", "person": "jewillco", "commit_count": 1}, {"version": "boost-1.39.0", "person": "swatanabe", "commit_count": 3}, {"version": "boost-1.39.0", "person": "jzmaddock", "commit_count": 1}, {"version": "boost-1.38.0", "person": "mclow", "commit_count": 2}, {"version": "boost-1.38.0", "person": "swatanabe", "commit_count": 2}, {"version": "boost-1.38.0", "person": "imikejackson", "commit_count": 2}, {"version": "boost-1.38.0", "person": "jzmaddock", "commit_count": 1}, {"version": "boost-1.38.0", "person": "straszheim", "commit_count": 1}, {"version": "boost-1.37.0", "person": "imikejackson", "commit_count": 1}, {"version": "boost-1.36.0", "person": "Beman Dawes", "commit_count": 2}, {"version": "boost-1.36.0", "person": "mclow", "commit_count": 1}, {"version": "boost-1.35.0", "person": "Beman Dawes", "commit_count": 2}, {"version": "boost-1.35.0", "person": "vprus", "commit_count": 1}, {"version": "boost-1.35.0", "person": "mclow", "commit_count": 1}, {"version": "boost-1.35.0", "person": "Peter Dimov", "commit_count": 1}, {"version": "boost-1.34.0", "person": "Jaakko Järvi", "commit_count": 5}, {"version": "boost-1.34.0", "person": "danieljames", "commit_count": 2}, {"version": "boost-1.34.0", "person": "Beman Dawes", "commit_count": 2}, {"version": "boost-1.34.0", "person": "Peter Dimov", "commit_count": 1}, {"version": "boost-1.34.0", "person": "CTMacUser", "commit_count": 1}, {"version": "boost-1.34.0", "person": "nobody", "commit_count": 1}, {"version": "boost-1.34.0", "person": "grafikrobot", "commit_count": 1}, {"version": "boost-1.33.0", "person": "Jaakko Järvi", "commit_count": 4}, {"version": "boost-1.33.0", "person": "Aleksey Gurtovoy", "commit_count": 1}, {"version": "boost-1.33.0", "person": "Stefan Slapeta", "commit_count": 1}, {"version": "boost-1.32.0", "person": "Jaakko Järvi", "commit_count": 15}, {"version": "boost-1.32.0", "person": "DougGregor", "commit_count": 3}, {"version": "boost-1.32.0", "person": "Eric Niebler", "commit_count": 2}, {"version": "boost-1.32.0", "person": "Peter Dimov", "commit_count": 2}, {"version": "boost-1.32.0", "person": "jzmaddock", "commit_count": 1}, {"version": "boost-1.32.0", "person": "grafikrobot", "commit_count": 1}, {"version": "boost-1.32.0", "person": "Aleksey Gurtovoy", "commit_count": 1}, {"version": "boost-1.31.0", "person": "Jaakko Järvi", "commit_count": 9}, {"version": "boost-1.31.0", "person": "grafikrobot", "commit_count": 1}, {"version": "boost-1.30.0", "person": "Jaakko Järvi", "commit_count": 10}, {"version": "boost-1.29.0", "person": "Jaakko Järvi", "commit_count": 19}, {"version": "boost-1.29.0", "person": "pmenso57", "commit_count": 1}, {"version": "boost-1.29.0", "person": "Beman Dawes", "commit_count": 1}, {"version": "boost-1.28.0", "person": "Jaakko Järvi", "commit_count": 24}, {"version": "boost-1.26.0", "person": "Jaakko Järvi", "commit_count": 3}];
const depVersions = ["boost-1.17.0", "boost-1.18.0", "boost-1.19.0", "boost-1.20.0", "boost-1.21.0", "boost-1.22.0", "boost-1.23.0", "boost-1.24.0", "boost-1.25.0", "boost-1.26.0", "boost-1.27.0", "boost-1.28.0", "boost-1.29.0", "boost-1.30.0", "boost-1.31.0", "boost-1.32.0", "boost-1.33.0", "boost-1.34.0", "boost-1.35.0", "boost-1.36.0", "boost-1.37.0", "boost-1.38.0", "boost-1.39.0", "boost-1.40.0", "boost-1.41.0", "boost-1.42.0", "boost-1.43.0", "boost-1.44.0", "boost-1.45.0", "boost-1.46.0", "boost-1.47.0", "boost-1.48.0", "boost-1.49.0", "boost-1.50.0", "boost-1.51.0", "boost-1.52.0", "boost-1.53.0", "boost-1.54.0", "boost-1.55.0", "boost-1.56.0", "boost-1.57.0", "boost-1.58.0", "boost-1.59.0", "boost-1.60.0", "boost-1.61.0", "boost-1.62.0", "boost-1.63.0", "boost-1.64.0", "boost-1.65.0", "boost-1.66.0", "boost-1.67.0", "boost-1.68.0", "boost-1.69.0", "boost-1.70.0", "boost-1.71.0", "boost-1.72.0", "boost-1.73.0", "boost-1.74.0", "boost-1.75.0", "boost-1.76.0", "boost-1.77.0", "boost-1.78.0", "boost-1.79.0", "boost-1.80.0", "boost-1.81.0", "boost-1.82.0", "boost-1.83.0", "boost-1.84.0", "boost-1.85.0", "boost-1.86.0", "boost-1.87.0", "boost-1.88.0", "boost-1.89.0", "boost-1.90.0", "boost-1.91.0"];
const depFirst = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0];
const depAll = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 79, 81, 81, 82, 86, 89, 90, 91, 92, 92, 97, 100, 100, 16, 16, 16, 17, 17, 50, 51, 51, 53, 55, 56, 56, 56, 53, 53, 52, 52, 51, 50, 50, 13, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 0];
const usageYears = ["2007", "2008", "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"];
const byCreated = [0, 34, 18, 45, 176, 128, 82, 135, 211, 203, 240, 166, 68, 83, 60, 48, 81, 11, 20, 14];
const byUpdated = [1, 6, 12, 26, 35, 53, 60, 221, 136, 180, 114, 206, 111, 129, 92, 134, 84, 94, 100, 29];
const repoCounts = [0, 6, 9, 11, 23, 25, 29, 39, 42, 32, 24, 31, 21, 16, 12, 9, 12, 6, 5, 7];
const commitVersions = ["boost-1.59.0", "boost-1.60.0", "boost-1.61.0", "boost-1.62.0", "boost-1.63.0", "boost-1.64.0", "boost-1.65.0", "boost-1.66.0", "boost-1.67.0", "boost-1.68.0", "boost-1.69.0", "boost-1.70.0", "boost-1.71.0", "boost-1.72.0", "boost-1.73.0", "boost-1.74.0", "boost-1.75.0", "boost-1.76.0", "boost-1.77.0", "boost-1.78.0", "boost-1.79.0", "boost-1.80.0", "boost-1.81.0", "boost-1.82.0", "boost-1.83.0", "boost-1.84.0", "boost-1.85.0", "boost-1.86.0", "boost-1.87.0", "boost-1.88.0", "boost-1.89.0", "boost-1.90.0", "boost-1.91.0"];
const commitCounts = [10, 3, 0, 0, 4, 1, 0, 9, 2, 1, 1, 1, 3, 0, 1, 0, 0, 2, 8, 0, 18, 0, 0, 0, 0, 2, 2, 6, 0, 3, 4, 0, 0];
initDataTable({
data: headersRows, tableId:'table-headers', searchId:'search-headers',
infoId:'info-headers', prevId:'prev-headers', nextId:'next-headers',
defaultSortKey:'count', defaultSortAsc:false,
columns:[{key:'name',type:'text'},{key:'count',type:'number'}],
rowHtml:(r)=>`<tr><td>${esc(r.name || '')}</td><td>${toNumber(r.count).toLocaleString()}</td></tr>`
});
initDataTable({
data: internalRows, tableId:'table-internal', searchId:'search-internal',
infoId:'info-internal', prevId:'prev-internal', nextId:'next-internal',
defaultSortKey:'depth', defaultSortAsc:true,
columns:[{key:'name',type:'text'},{key:'depth',type:'number'}],
rowHtml:(r)=>`<tr><td><a href="${esc((r.name || '').replace(/[^\w\-.]/g,'_'))}.html">${esc(r.name || '')}</a></td><td>${toNumber(r.depth)}</td></tr>`
});
initDataTable({
data: externalRows, tableId:'table-external', searchId:'search-external',
infoId:'info-external', prevId:'prev-external', nextId:'next-external',
defaultSortKey:'stars', defaultSortAsc:false,
columns:[{key:'name',type:'text'},{key:'stars',type:'number'},{key:'usage_count',type:'number'},{key:'created_at',type:'date'},{key:'updated_at',type:'date'}],
rowHtml:(r)=>`<tr><td><a href="https://github.com/${esc(r.name || '')}" target="_blank">${esc(r.name || '')}</a></td><td>${toNumber(r.stars).toLocaleString()}</td><td>${toNumber(r.usage_count).toLocaleString()}</td><td>${esc((r.created_at || '').toString().slice(0,10) || 'N/A')}</td><td>${esc((r.updated_at || '').toString().slice(0,10) || 'N/A')}</td></tr>`
});
initDataTable({
data: contribRows, tableId:'table-contrib', searchId:'search-contrib',
infoId:'info-contrib', prevId:'prev-contrib', nextId:'next-contrib',
defaultSortKey:'commit_count', defaultSortAsc:false,
columns:[{key:'version',type:'text'},{key:'person',type:'text'},{key:'commit_count',type:'number'}],
rowHtml:(r)=>`<tr><td>${esc(r.version || '')}</td><td>${esc(r.person || '')}</td><td>${toNumber(r.commit_count).toLocaleString()}</td></tr>`
});
new Chart(document.getElementById('dependentsChart'), {
type:'bar',
data: { labels: depVersions, datasets:[
{label:'Primary Consumers', data: depFirst, backgroundColor:'rgba(59,130,246,0.7)'},
{label:'Transitive Consumers', data: depAll, backgroundColor:'rgba(16,185,129,0.7)'}
] },
options: { responsive:true, maintainAspectRatio:false, scales: { y: { beginAtZero:true } } }
});
new Chart(document.getElementById('usageChart'), {
type:'bar',
data: { labels: usageYears, datasets:[
{type:'line', label:'Created Repositories', data: repoCounts, borderColor:'rgba(255,99,132,0.8)', fill:false, yAxisID:'y1'},
{label:'Header Includes (New Repos)', data: byCreated, backgroundColor:'rgba(54,162,235,0.6)'},
{label:'Header Includes (Updated Repos)', data: byUpdated, backgroundColor:'rgba(75,192,192,0.6)'}
] },
options: { responsive:true, maintainAspectRatio:false, scales: { y: { beginAtZero:true }, y1: { beginAtZero:true, position:'right', grid: { drawOnChartArea:false } } } }
});
new Chart(document.getElementById('commitChart'), {
type:'bar',
data: { labels: commitVersions, datasets:[{ label:'Commit Count', data: commitCounts, backgroundColor:'rgba(255,99,132,0.6)' }] },
options: { responsive:true, maintainAspectRatio:false, scales: { y: { beginAtZero:true } } }
});
</script>
</body>
</html>