commit 781cf7f2cc3cdd41d5fea630408c3cd59982712e
parent 4b1edc22cbf261dbc4f797132d00a2067c22d276
Author: Brian Graham <brian@buildingbetterteams.de>
Date: Mon, 23 Mar 2026 13:09:22 +0100
Add HN social attention data: enrichment script, findings, paper links
New script: scripts/enrich-hn.py queries HN Algolia API for all v2
papers (arxiv_id search + title fallback). 586/745 papers found,
3,433 HN threads collected. Saves papers/{slug}/hn.json with thread
details (title, points, comments, URL).
Key finding: HN attention is uncorrelated with methodology (r=0.061).
Social media amplifies novelty, not rigor.
New findings section "Social Attention vs Rigor":
- Hidden gems: 15 papers scoring 65%+ with <=5 HN points
(e.g., "Measuring Mid-2025 LLM-Assistance" at 86%, 0 HN pts)
- Overhyped: 15 papers scoring <40% with 30+ HN points
(e.g., "Efficient Guided Generation" at 854 pts, 31.7% method)
- Top 15 most-discussed papers table
Paper detail pages show "HN (Npts)" link button to top thread.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat:
750 files changed, 33545 insertions(+), 2 deletions(-)
diff --git a/explorer/src/views/findings.ts b/explorer/src/views/findings.ts
@@ -50,6 +50,7 @@ export async function renderFindings(app: HTMLElement) {
${renderTagTreemap(f)}
${renderTwoCultures(f)}
${renderNetworkInsights(f)}
+ ${renderHnAnalysis(f)}
${renderGames(f)}
`;
@@ -704,6 +705,52 @@ function renderNetworkInsights(f: Findings): string {
</div>`;
}
+function renderHnAnalysis(f: Findings): string {
+ const hn = (f as any).hn_analysis;
+ if (!hn || !hn.total_with_hn) return '';
+
+ const topHn = hn.top_hn as { id: string; title: string; score: number; hn_points: number }[];
+ const gems = hn.hidden_gems as { id: string; title: string; score: number; hn_points: number }[];
+ const overhyped = hn.overhyped as { id: string; title: string; score: number; hn_points: number }[];
+
+ return `<div class="section">
+ <h2>Social Attention vs Rigor</h2>
+ <p style="font-size:0.85rem;color:var(--text-dim);margin-bottom:1rem">Hacker News discussion data for ${hn.total_with_hn} papers (${hn.total_without_hn} had no HN presence). Correlation between HN points and methodology score: <strong>r=${hn.correlation}</strong> — social attention is uncorrelated with rigor.</p>
+
+ <div class="detail-grid">
+ <div>
+ <h3 style="font-size:0.85rem;color:var(--green);margin-bottom:0.5rem">Hidden Gems (score \u226565%, \u22645 HN pts)</h3>
+ <p style="font-size:0.8rem;color:var(--text-dim);margin-bottom:0.5rem">Rigorous papers the internet hasn't noticed.</p>
+ ${gems.map(p => `<div class="game-row" style="padding:0.3rem 0">
+ <span style="font-size:0.82rem"><a href="#/paper/${p.id}" style="color:var(--accent);text-decoration:none">${p.title.length > 50 ? p.title.slice(0, 47) + '...' : p.title}</a></span>
+ <span style="font-family:var(--font);font-size:0.8rem"><span style="color:var(--green)">${p.score}%</span></span>
+ </div>`).join('')}
+ </div>
+ <div>
+ <h3 style="font-size:0.85rem;color:var(--red);margin-bottom:0.5rem">Overhyped (score <40%, \u226530 HN pts)</h3>
+ <p style="font-size:0.8rem;color:var(--text-dim);margin-bottom:0.5rem">Popular papers with weak methodology.</p>
+ ${overhyped.map(p => `<div class="game-row" style="padding:0.3rem 0">
+ <span style="font-size:0.82rem"><a href="#/paper/${p.id}" style="color:var(--accent);text-decoration:none">${p.title.length > 50 ? p.title.slice(0, 47) + '...' : p.title}</a></span>
+ <span style="font-family:var(--font);font-size:0.8rem"><span style="color:var(--red)">${p.score}%</span> <span style="color:var(--text-dim)">${p.hn_points}pts</span></span>
+ </div>`).join('')}
+ </div>
+ </div>
+
+ <h3 style="font-size:0.85rem;color:var(--text-dim);margin:1.5rem 0 0.5rem">Most Discussed on HN</h3>
+ <div class="table-wrap"><table style="font-size:0.82rem">
+ <thead><tr><th>Paper</th><th>HN pts</th><th>Method</th></tr></thead>
+ <tbody>${topHn.slice(0, 15).map(p => {
+ const sc = p.score < 40 ? 'var(--red)' : p.score < 55 ? 'var(--yellow)' : 'var(--green)';
+ return `<tr>
+ <td><a href="#/paper/${p.id}" style="color:var(--accent);text-decoration:none">${p.title.length > 55 ? p.title.slice(0, 52) + '...' : p.title}</a></td>
+ <td style="font-family:var(--font)">${p.hn_points}</td>
+ <td class="score" style="color:${sc}">${p.score}%</td>
+ </tr>`;
+ }).join('')}</tbody>
+ </table></div>
+ </div>`;
+}
+
function renderGames(f: Findings): string {
const sorted = Object.entries(f.game_pcts).sort((a, b) => b[1] - a[1]);
return `<div class="section">
diff --git a/explorer/src/views/paper-detail.ts b/explorer/src/views/paper-detail.ts
@@ -54,6 +54,13 @@ export async function renderPaperDetail(app: HTMLElement, slug: string) {
links.push(`<a href="${paper.code_url}" target="_blank" rel="noopener">Code</a>`);
}
+ // HN threads
+ const hnThreads = (paper as any).hn_threads as { hn_id: string; title: string; points: number; comments: number; url: string }[] | undefined;
+ if (hnThreads && hnThreads.length > 0) {
+ const top = hnThreads[0];
+ links.push(`<a href="${top.url}" target="_blank" rel="noopener">HN (${top.points}pts)</a>`);
+ }
+
// Load network for citations (lazy, non-blocking)
let incomingHtml = '';
let outgoingHtml = '';
diff --git a/explorer/tests/explorer.spec.ts b/explorer/tests/explorer.spec.ts
@@ -206,8 +206,8 @@ test.describe('Findings', () => {
test('loads and shows all sections', async ({ page }) => {
await page.goto('/#/findings');
await expect(page.locator('.section').first()).toBeVisible({ timeout: 10000 });
- // Should have 16 sections
- expect(await page.locator('.section').count()).toBe(16);
+ // Should have 17 sections
+ expect(await page.locator('.section').count()).toBe(17);
});
test('shows per-question pass rates', async ({ page }) => {
diff --git a/papers/2025-ai-agent-2026/hn.json b/papers/2025-ai-agent-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47279778",
+ "title": "Nested Training for Mutual Adaptation in Human-AI Teaming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47279778",
+ "created_at": "2026-03-06T19:21:19Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/3dshape2vecset-3d-shape-2023/hn.json b/papers/3dshape2vecset-3d-shape-2023/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47334694",
+ "title": "BitNet: Inference framework for 1-bit LLMs",
+ "points": 370,
+ "comments": 169,
+ "url": "https://news.ycombinator.com/item?id=47334694",
+ "created_at": "2026-03-11T12:27:15Z"
+ }
+ ],
+ "top_points": 370,
+ "total_points": 370,
+ "total_comments": 169
+}
+\ No newline at end of file
diff --git a/papers/a2hcoder-llmdriven-coding-2025/hn.json b/papers/a2hcoder-llmdriven-coding-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "29279146",
+ "title": "Crypto Wash Trading",
+ "points": 572,
+ "comments": 299,
+ "url": "https://news.ycombinator.com/item?id=29279146",
+ "created_at": "2021-11-19T16:44:26Z"
+ },
+ {
+ "hn_id": "44271284",
+ "title": "Self-Adapting Language Models",
+ "points": 246,
+ "comments": 73,
+ "url": "https://news.ycombinator.com/item?id=44271284",
+ "created_at": "2025-06-13T19:03:42Z"
+ },
+ {
+ "hn_id": "41306555",
+ "title": "Exploring Impact of Code in Pre-Training",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=41306555",
+ "created_at": "2024-08-21T03:38:33Z"
+ },
+ {
+ "hn_id": "44443760",
+ "title": "Your Language Model Can Handle Non-Canonical Tokenizations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44443760",
+ "created_at": "2025-07-02T13:53:44Z"
+ },
+ {
+ "hn_id": "41745068",
+ "title": "Pre-training with code improves performance on NL reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41745068",
+ "created_at": "2024-10-04T20:02:19Z"
+ },
+ {
+ "hn_id": "44116793",
+ "title": "When Models Don't Collapse: On the Consistency of Iterative MLE",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44116793",
+ "created_at": "2025-05-28T15:06:51Z"
+ },
+ {
+ "hn_id": "43503479",
+ "title": "The Quantum Technology Job Market: A Quantitative Investigation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43503479",
+ "created_at": "2025-03-28T10:05:27Z"
+ },
+ {
+ "hn_id": "42884637",
+ "title": "Player Performance and Skill Rating in Esports [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42884637",
+ "created_at": "2025-01-31T04:14:07Z"
+ },
+ {
+ "hn_id": "41367147",
+ "title": "Kotlin's Type System Is (Also) Unsound",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41367147",
+ "created_at": "2024-08-27T13:11:45Z"
+ },
+ {
+ "hn_id": "41318909",
+ "title": "To Code, or Not to Code? Exploring Impact of Code in Pre-Training",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41318909",
+ "created_at": "2024-08-22T11:09:37Z"
+ }
+ ],
+ "top_points": 572,
+ "total_points": 832,
+ "total_comments": 374
+}
+\ No newline at end of file
diff --git a/papers/aart-aiassisted-redteaming-2023/hn.json b/papers/aart-aiassisted-redteaming-2023/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "45939036",
+ "title": "TiDAR: Think in Diffusion, Talk in Autoregression",
+ "points": 130,
+ "comments": 22,
+ "url": "https://news.ycombinator.com/item?id=45939036",
+ "created_at": "2025-11-15T17:32:35Z"
+ },
+ {
+ "hn_id": "37989614",
+ "title": "Embarrassingly Simple Text Watermarks",
+ "points": 86,
+ "comments": 50,
+ "url": "https://news.ycombinator.com/item?id=37989614",
+ "created_at": "2023-10-23T18:27:48Z"
+ },
+ {
+ "hn_id": "45935410",
+ "title": "Autoregressive or Diffusion Language Models, Why Choose?",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45935410",
+ "created_at": "2025-11-15T06:04:49Z"
+ },
+ {
+ "hn_id": "34517931",
+ "title": "The Risk-Taking Software Engineer: A Framed Portrait",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34517931",
+ "created_at": "2023-01-25T13:22:03Z"
+ },
+ {
+ "hn_id": "38747811",
+ "title": "Evaluating ChatGPT for Question Answering and Comparison with Existing Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38747811",
+ "created_at": "2023-12-23T20:21:42Z"
+ },
+ {
+ "hn_id": "37996166",
+ "title": "Image Cropping Under Design Constraints",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37996166",
+ "created_at": "2023-10-24T08:20:56Z"
+ },
+ {
+ "hn_id": "38677019",
+ "title": "Limits to the Energy Efficiency of CMOS Microprocessors",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38677019",
+ "created_at": "2023-12-17T22:15:38Z"
+ },
+ {
+ "hn_id": "46151267",
+ "title": "Generative Graph Vocabularies for Robust Graph Foundation Models Fine-Tuning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46151267",
+ "created_at": "2025-12-04T18:46:47Z"
+ }
+ ],
+ "top_points": 130,
+ "total_points": 234,
+ "total_comments": 73
+}
+\ No newline at end of file
diff --git a/papers/acar-adaptive-complexity-2026/hn.json b/papers/acar-adaptive-complexity-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47154950",
+ "title": "Aletheia Tackles FirstProof Autonomously",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47154950",
+ "created_at": "2026-02-25T17:46:36Z"
+ },
+ {
+ "hn_id": "47314080",
+ "title": "Latent Context Compilation: Distilling Long Context into Compact Portable Memory",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47314080",
+ "created_at": "2026-03-09T19:21:30Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 7,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/agentic-bug-reproduction-2025/hn.json b/papers/agentic-bug-reproduction-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "43876276",
+ "title": "Agentic Bug Reproduction for Effective Automated Program Repair at Google",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43876276",
+ "created_at": "2025-05-03T01:54:39Z"
+ },
+ {
+ "hn_id": "45599001",
+ "title": "Agentic Bug Reproduction for Effective Automated Program Repair at Google",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45599001",
+ "created_at": "2025-10-15T22:20:39Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/agentic-refactoring-empirical-2025/hn.json b/papers/agentic-refactoring-empirical-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "33795122",
+ "title": "No Privacy in the Electronics Repair Industry",
+ "points": 173,
+ "comments": 131,
+ "url": "https://news.ycombinator.com/item?id=33795122",
+ "created_at": "2022-11-30T00:02:16Z"
+ },
+ {
+ "hn_id": "46902855",
+ "title": "Psychometric Jailbreaks Reveal Internal Conflict in Frontier Models",
+ "points": 68,
+ "comments": 60,
+ "url": "https://news.ycombinator.com/item?id=46902855",
+ "created_at": "2026-02-05T18:21:53Z"
+ },
+ {
+ "hn_id": "45823358",
+ "title": "Kosmos: An AI Scientist for Autonomous Discovery",
+ "points": 60,
+ "comments": 20,
+ "url": "https://news.ycombinator.com/item?id=45823358",
+ "created_at": "2025-11-05T14:43:26Z"
+ },
+ {
+ "hn_id": "10581137",
+ "title": "Neural Programmer: Inducing Latent Programs with Gradient Descent [pdf]",
+ "points": 59,
+ "comments": 21,
+ "url": "https://news.ycombinator.com/item?id=10581137",
+ "created_at": "2015-11-17T14:15:58Z"
+ },
+ {
+ "hn_id": "46207995",
+ "title": "Psychometric Jailbreaks Reveal Internal Conflict in Frontier Models",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46207995",
+ "created_at": "2025-12-09T17:46:24Z"
+ },
+ {
+ "hn_id": "46358753",
+ "title": "Psychometric Jailbreaks Reveal Internal Conflict in Frontier Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46358753",
+ "created_at": "2025-12-22T20:38:00Z"
+ },
+ {
+ "hn_id": "42258010",
+ "title": "Gradient Boosting Trees and LLMs for Tabular Data Few-Shot Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258010",
+ "created_at": "2024-11-27T17:46:47Z"
+ },
+ {
+ "hn_id": "42150576",
+ "title": "WiFlexFormer: Efficient WiFi-Based Person-Centric Sensing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42150576",
+ "created_at": "2024-11-15T20:27:07Z"
+ },
+ {
+ "hn_id": "45873709",
+ "title": "The Drain of Scientific Publishing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45873709",
+ "created_at": "2025-11-10T08:21:43Z"
+ },
+ {
+ "hn_id": "46559629",
+ "title": "When AI Takes the Couch: Internal Conflict in Frontier Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46559629",
+ "created_at": "2026-01-09T21:29:20Z"
+ }
+ ],
+ "top_points": 173,
+ "total_points": 372,
+ "total_comments": 232
+}
+\ No newline at end of file
diff --git a/papers/agents-of-chaos-2026/hn.json b/papers/agents-of-chaos-2026/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "47290422",
+ "title": "Agents of Chaos",
+ "points": 28,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=47290422",
+ "created_at": "2026-03-07T18:56:36Z"
+ },
+ {
+ "hn_id": "47196883",
+ "title": "Agents of Chaos",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47196883",
+ "created_at": "2026-02-28T16:02:49Z"
+ },
+ {
+ "hn_id": "47134473",
+ "title": "Agents of Chaos: Breaches of trust in autonomous LLM agents",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47134473",
+ "created_at": "2026-02-24T08:35:59Z"
+ },
+ {
+ "hn_id": "47147764",
+ "title": "Agents of Chaos",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47147764",
+ "created_at": "2026-02-25T05:42:05Z"
+ },
+ {
+ "hn_id": "47141321",
+ "title": "Agents of Chaos",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47141321",
+ "created_at": "2026-02-24T19:14:17Z"
+ },
+ {
+ "hn_id": "47401530",
+ "title": "Automated Test Case Generation for Vulnerabilities in Competitive Programming",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47401530",
+ "created_at": "2026-03-16T16:54:11Z"
+ }
+ ],
+ "top_points": 28,
+ "total_points": 43,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/ai-ides-vs-agents-impact-2026/hn.json b/papers/ai-ides-vs-agents-impact-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/chain-of-thought-prompting-2022/hn.json b/papers/chain-of-thought-prompting-2022/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "42711991",
+ "title": "Show HN: QwQ-32B APIs – o1 like reasoning at 1% the cost",
+ "points": 17,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=42711991",
+ "created_at": "2025-01-15T15:29:12Z"
+ },
+ {
+ "hn_id": "30988904",
+ "title": "Chain of Thought Prompting Elicits Reasoning in Large Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=30988904",
+ "created_at": "2022-04-11T14:08:01Z"
+ },
+ {
+ "hn_id": "30112147",
+ "title": "Plume: Differential Privacy at Scale",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30112147",
+ "created_at": "2022-01-28T08:34:48Z"
+ },
+ {
+ "hn_id": "34053182",
+ "title": "Chain of Thought Prompting Elicits Reasoning in Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34053182",
+ "created_at": "2022-12-19T15:29:09Z"
+ }
+ ],
+ "top_points": 17,
+ "total_points": 22,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/codex-humaneval-2021/hn.json b/papers/codex-humaneval-2021/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "27786283",
+ "title": "Evaluating Large Language Models Trained on Code",
+ "points": 12,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27786283",
+ "created_at": "2021-07-09T17:39:30Z"
+ },
+ {
+ "hn_id": "27767328",
+ "title": "Evaluating Large Language Models Trained on Code",
+ "points": 11,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27767328",
+ "created_at": "2021-07-08T00:36:26Z"
+ },
+ {
+ "hn_id": "27777657",
+ "title": "Evaluating Large Language Models Trained on Code (paper about GH copilot model)",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27777657",
+ "created_at": "2021-07-08T21:10:26Z"
+ },
+ {
+ "hn_id": "27770978",
+ "title": "Evaluating Large Language Models Trained on Code(GitHub Copilot)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27770978",
+ "created_at": "2021-07-08T12:20:59Z"
+ },
+ {
+ "hn_id": "34552130",
+ "title": "Evaluating Large Language Models Trained on Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34552130",
+ "created_at": "2023-01-27T21:27:58Z"
+ },
+ {
+ "hn_id": "29172572",
+ "title": "Measuring mathematical problem solving with the MATH dataset",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29172572",
+ "created_at": "2021-11-10T09:00:47Z"
+ },
+ {
+ "hn_id": "26070039",
+ "title": "On the Reproducibility of Neural Network Predictions",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26070039",
+ "created_at": "2021-02-08T21:00:30Z"
+ }
+ ],
+ "top_points": 12,
+ "total_points": 36,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/coding-agents-generating-2026/hn.json b/papers/coding-agents-generating-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/copilot-productivity-controlled-2023/hn.json b/papers/copilot-productivity-controlled-2023/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "44484075",
+ "title": "The Impact of AI on Developer Productivity: Evidence from GitHub Copilot (2023)",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44484075",
+ "created_at": "2025-07-06T21:09:52Z"
+ },
+ {
+ "hn_id": "35076049",
+ "title": "The Impact of AI on Developer Productivity: Evidence from GitHub Copilot",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35076049",
+ "created_at": "2023-03-08T23:07:44Z"
+ },
+ {
+ "hn_id": "40706181",
+ "title": "The Impact of AI on Developer Productivity: Evidence from GitHub Copilot",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40706181",
+ "created_at": "2024-06-17T14:52:08Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 12,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/copilot-zoominfo-productivity-2025/hn.json b/papers/copilot-zoominfo-productivity-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/cursor-speed-quality-tradeoff-2025/hn.json b/papers/cursor-speed-quality-tradeoff-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "47401734",
+ "title": "Speed at the cost of quality: Study of use of Cursor AI in open source projects (2025)",
+ "points": 147,
+ "comments": 80,
+ "url": "https://news.ycombinator.com/item?id=47401734",
+ "created_at": "2026-03-16T17:07:37Z"
+ },
+ {
+ "hn_id": "38283398",
+ "title": "API-Driven Program Synthesis for Testing Static Typing Implementations",
+ "points": 35,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38283398",
+ "created_at": "2023-11-15T22:19:08Z"
+ },
+ {
+ "hn_id": "45968758",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 14,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45968758",
+ "created_at": "2025-11-18T16:50:19Z"
+ },
+ {
+ "hn_id": "46730534",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46730534",
+ "created_at": "2026-01-23T09:54:11Z"
+ },
+ {
+ "hn_id": "46658985",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46658985",
+ "created_at": "2026-01-17T15:53:22Z"
+ },
+ {
+ "hn_id": "45998822",
+ "title": "Does AI-Assisted Coding Deliver? A Difference-in-Differences Study",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45998822",
+ "created_at": "2025-11-20T22:36:21Z"
+ },
+ {
+ "hn_id": "45951387",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45951387",
+ "created_at": "2025-11-17T06:57:28Z"
+ },
+ {
+ "hn_id": "42127507",
+ "title": "UniGAD: Unifying Multi-Level Graph Anomaly Detection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42127507",
+ "created_at": "2024-11-13T16:32:30Z"
+ },
+ {
+ "hn_id": "46180812",
+ "title": "Does AI-Assisted Coding Deliver? A Difference-in-Differences Study",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46180812",
+ "created_at": "2025-12-07T10:54:26Z"
+ },
+ {
+ "hn_id": "46070691",
+ "title": "A Difference-in-Differences Study of Cursor's Impact on Software Projects",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46070691",
+ "created_at": "2025-11-27T16:21:41Z"
+ }
+ ],
+ "top_points": 147,
+ "total_points": 208,
+ "total_comments": 83
+}
+\ No newline at end of file
diff --git a/papers/data-contamination-benchmarks-2023/hn.json b/papers/data-contamination-benchmarks-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40229022",
+ "title": "When can transformers reason with abstract symbols?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40229022",
+ "created_at": "2024-05-01T20:34:43Z"
+ },
+ {
+ "hn_id": "29493664",
+ "title": "Training Neural Networks with Fixed Sparse Masks",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=29493664",
+ "created_at": "2021-12-09T03:58:40Z"
+ },
+ {
+ "hn_id": "42299972",
+ "title": "Modeling AdaGrad, RMSProp, and Adam with Integro-Differential Equations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42299972",
+ "created_at": "2024-12-02T20:17:28Z"
+ },
+ {
+ "hn_id": "42171440",
+ "title": "Modeling AdaGrad, RMSProp, and Adam with Integro-Differential Equations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42171440",
+ "created_at": "2024-11-18T11:19:17Z"
+ },
+ {
+ "hn_id": "39313991",
+ "title": "Information content of note transitions in the music of J. S. Bach",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39313991",
+ "created_at": "2024-02-09T12:09:43Z"
+ },
+ {
+ "hn_id": "33625737",
+ "title": "Optimal sizing of seasonal renewable energy storage considering degradation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33625737",
+ "created_at": "2022-11-16T16:25:26Z"
+ },
+ {
+ "hn_id": "38576071",
+ "title": "Large Language Models on Graphs: A Comprehensive Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38576071",
+ "created_at": "2023-12-08T23:15:13Z"
+ },
+ {
+ "hn_id": "37771757",
+ "title": "Can LLMs provide useful feedback on research papers? A broad empirical analysis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37771757",
+ "created_at": "2023-10-04T21:03:08Z"
+ },
+ {
+ "hn_id": "35284995",
+ "title": "Self Supervision Does Not Help Natural Language Supervision at Scale",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35284995",
+ "created_at": "2023-03-24T04:12:16Z"
+ },
+ {
+ "hn_id": "29320363",
+ "title": "ClipClap: Image Captioning with Clip Encoder and GPT2 [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29320363",
+ "created_at": "2021-11-23T17:15:20Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 17,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/data-distributional-properties-2022/hn.json b/papers/data-distributional-properties-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "30533914",
+ "title": "DeepNet: Scaling Transformers to 1k Layers",
+ "points": 194,
+ "comments": 38,
+ "url": "https://news.ycombinator.com/item?id=30533914",
+ "created_at": "2022-03-02T22:10:11Z"
+ },
+ {
+ "hn_id": "32198181",
+ "title": "Design and Implementation of a Secure RISC-V Microprocessor",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32198181",
+ "created_at": "2022-07-22T23:06:00Z"
+ },
+ {
+ "hn_id": "31352535",
+ "title": "Design and Implementation of a Secure RISC-V Microprocessor",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31352535",
+ "created_at": "2022-05-12T11:43:34Z"
+ },
+ {
+ "hn_id": "31635842",
+ "title": "Finding the optimal human strategy for Wordle",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31635842",
+ "created_at": "2022-06-05T23:36:34Z"
+ },
+ {
+ "hn_id": "31644563",
+ "title": "Bursty symbols in training allow prompting (ML)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31644563",
+ "created_at": "2022-06-06T19:10:02Z"
+ },
+ {
+ "hn_id": "31441958",
+ "title": "Data Distributional Properties Drive Emergent Few-Shot Learning in Transformers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31441958",
+ "created_at": "2022-05-20T00:25:42Z"
+ },
+ {
+ "hn_id": "34205208",
+ "title": "Crypto trading using reinforcement learning",
+ "points": 2,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=34205208",
+ "created_at": "2023-01-01T10:23:29Z"
+ },
+ {
+ "hn_id": "44064952",
+ "title": "Hierarchical-Chain-of-Generation for Complex Attributes Text-to-3D Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44064952",
+ "created_at": "2025-05-22T18:12:20Z"
+ },
+ {
+ "hn_id": "33223016",
+ "title": "Cotton Gravity: a potential alternative to the dark matter paradigm",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33223016",
+ "created_at": "2022-10-16T12:18:43Z"
+ },
+ {
+ "hn_id": "31633209",
+ "title": "Data Distributional Properties Drive Emergent In-Context Learning in Transformer",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31633209",
+ "created_at": "2022-06-05T17:46:34Z"
+ }
+ ],
+ "top_points": 194,
+ "total_points": 215,
+ "total_comments": 41
+}
+\ No newline at end of file
diff --git a/papers/database-perspective-llm-2025/hn.json b/papers/database-perspective-llm-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/datadreamer-tool-synthetic-2024/hn.json b/papers/datadreamer-tool-synthetic-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "41736735",
+ "title": "Interpreting Clip with Sparse Linear Concept Embeddings (SpLiCE)",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41736735",
+ "created_at": "2024-10-04T00:57:26Z"
+ },
+ {
+ "hn_id": "39442782",
+ "title": "BlackJAX: Composable Bayesian Inference in Jax",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39442782",
+ "created_at": "2024-02-20T15:53:51Z"
+ },
+ {
+ "hn_id": "39600771",
+ "title": "LLM Ensemble Prediction Capabilities Match Human Crowd Accuracy",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39600771",
+ "created_at": "2024-03-05T08:33:55Z"
+ },
+ {
+ "hn_id": "39924592",
+ "title": "Darwin Turing Dawkins (Leonard Adleman) [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39924592",
+ "created_at": "2024-04-03T23:17:50Z"
+ },
+ {
+ "hn_id": "39429391",
+ "title": "BioMistral: Open-Source Pretrained Large Language Models for Medical Domains",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39429391",
+ "created_at": "2024-02-19T13:15:11Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 13,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/datasentinel-gametheoretic-detection-2025/hn.json b/papers/datasentinel-gametheoretic-detection-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40115482",
+ "title": "Survey Study on AI Agent Architectures (2024)",
+ "points": 77,
+ "comments": 16,
+ "url": "https://news.ycombinator.com/item?id=40115482",
+ "created_at": "2024-04-22T15:47:47Z"
+ },
+ {
+ "hn_id": "44585492",
+ "title": "How Many Instruction Can LLMs Follow at Once?",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44585492",
+ "created_at": "2025-07-16T18:38:36Z"
+ },
+ {
+ "hn_id": "23442899",
+ "title": "Scientists demonstrate particle detector for dark matter",
+ "points": 6,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=23442899",
+ "created_at": "2020-06-06T22:33:57Z"
+ },
+ {
+ "hn_id": "45482380",
+ "title": "Acoustic Eavesdropping via Mouse Sensors",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45482380",
+ "created_at": "2025-10-05T15:40:37Z"
+ },
+ {
+ "hn_id": "35695104",
+ "title": "Emergent and Predictable Memorization in Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35695104",
+ "created_at": "2023-04-25T00:31:12Z"
+ },
+ {
+ "hn_id": "45461534",
+ "title": "Comparing Quantum Annealing and BF-DCQO",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45461534",
+ "created_at": "2025-10-03T11:13:53Z"
+ },
+ {
+ "hn_id": "40106947",
+ "title": "From r to Q∗: Your Language Model is a Q-Function",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40106947",
+ "created_at": "2024-04-21T16:22:09Z"
+ },
+ {
+ "hn_id": "23416215",
+ "title": "Sensei: Direct-Detection Results on Sub-GeV Dark Matter from a New Skipper-CCD",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23416215",
+ "created_at": "2020-06-04T13:23:14Z"
+ },
+ {
+ "hn_id": "44191952",
+ "title": "Questioning Representational Optimism in Deep Learning",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=44191952",
+ "created_at": "2025-06-05T14:17:23Z"
+ },
+ {
+ "hn_id": "45934130",
+ "title": "Questioning Representational Optimism in Deep Learning",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45934130",
+ "created_at": "2025-11-15T01:07:24Z"
+ }
+ ],
+ "top_points": 77,
+ "total_points": 109,
+ "total_comments": 22
+}
+\ No newline at end of file
diff --git a/papers/datasetresearch-benchmarking-agent-2025/hn.json b/papers/datasetresearch-benchmarking-agent-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43014573",
+ "title": "Time to act on the risk of efficient personalized text generation",
+ "points": 57,
+ "comments": 34,
+ "url": "https://news.ycombinator.com/item?id=43014573",
+ "created_at": "2025-02-11T16:14:03Z"
+ },
+ {
+ "hn_id": "45234790",
+ "title": "Reverse-Engineered Reasoning for Open-Ended Generation",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45234790",
+ "created_at": "2025-09-13T19:49:08Z"
+ },
+ {
+ "hn_id": "45184326",
+ "title": "Reasoning Traces from QA Pairs",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45184326",
+ "created_at": "2025-09-09T16:25:03Z"
+ },
+ {
+ "hn_id": "44516439",
+ "title": "Amazon gets serious with AI Safety",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44516439",
+ "created_at": "2025-07-10T01:50:50Z"
+ },
+ {
+ "hn_id": "45226714",
+ "title": "Are ArXiv submissions on Wednesday better cited?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45226714",
+ "created_at": "2025-09-12T21:00:07Z"
+ },
+ {
+ "hn_id": "44889206",
+ "title": "Large Language Models Do Not Simulate Human Psychology",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44889206",
+ "created_at": "2025-08-13T14:50:01Z"
+ },
+ {
+ "hn_id": "32619543",
+ "title": "Angle-agnostic cloaking from person-tracking systems with a t-shirt",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=32619543",
+ "created_at": "2022-08-27T14:42:49Z"
+ },
+ {
+ "hn_id": "44521323",
+ "title": "Evaluating the Critical Risks of Amazon’s Nova Premier",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44521323",
+ "created_at": "2025-07-10T14:11:52Z"
+ },
+ {
+ "hn_id": "42705257",
+ "title": "What Hawking Radiation Looks Like as You Fall into a Black Hole",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42705257",
+ "created_at": "2025-01-14T23:16:02Z"
+ }
+ ],
+ "top_points": 57,
+ "total_points": 73,
+ "total_comments": 37
+}
+\ No newline at end of file
diff --git a/papers/dear-diary-rct-copilot-2024/hn.json b/papers/dear-diary-rct-copilot-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45751115",
+ "title": "DeepSeek-OCR: Contexts Optical Compression",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45751115",
+ "created_at": "2025-10-29T18:33:29Z"
+ },
+ {
+ "hn_id": "28973605",
+ "title": "Generalized Out-of-Distribution Detection: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28973605",
+ "created_at": "2021-10-24T00:03:38Z"
+ },
+ {
+ "hn_id": "42458574",
+ "title": "Semantic, Orthographic, and Morphological Biases in Humans' Wordle Gameplay",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42458574",
+ "created_at": "2024-12-19T05:06:04Z"
+ },
+ {
+ "hn_id": "28957390",
+ "title": "Generalized Out-of-Distribution Detection: A Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28957390",
+ "created_at": "2021-10-22T14:11:31Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/declarative-agentic-layer-2026/hn.json b/papers/declarative-agentic-layer-2026/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46802368",
+ "title": "Show HN: If You Want Coherence, Orchestrate a Team of Rivals: Multi-Agent \"",
+ "points": 10,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46802368",
+ "created_at": "2026-01-28T22:16:52Z"
+ },
+ {
+ "hn_id": "46776398",
+ "title": "The 17% Gap: Quantifying Epistemic Decay in AI-Assisted Survey Papers",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46776398",
+ "created_at": "2026-01-27T06:58:02Z"
+ },
+ {
+ "hn_id": "46913890",
+ "title": "Predicting Zero-Shot Classification Performance for Arbitrary Queries",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46913890",
+ "created_at": "2026-02-06T15:19:31Z"
+ }
+ ],
+ "top_points": 10,
+ "total_points": 12,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/decoding-ml-decision-2026/hn.json b/papers/decoding-ml-decision-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47136272",
+ "title": "Package Managers à la Carte: a formal model of dependency resolution",
+ "points": 55,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=47136272",
+ "created_at": "2026-02-24T12:27:44Z"
+ }
+ ],
+ "top_points": 55,
+ "total_points": 55,
+ "total_comments": 17
+}
+\ No newline at end of file
diff --git a/papers/decomposed-prompting-modular-2022/hn.json b/papers/decomposed-prompting-modular-2022/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "37816614",
+ "title": "Language Agent Tree Search Unifies Reasoning Acting and Planning in LMs",
+ "points": 79,
+ "comments": 11,
+ "url": "https://news.ycombinator.com/item?id=37816614",
+ "created_at": "2023-10-09T03:24:13Z"
+ },
+ {
+ "hn_id": "25773418",
+ "title": "Adversarial Grammatical Error Correction",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25773418",
+ "created_at": "2021-01-14T07:48:57Z"
+ },
+ {
+ "hn_id": "33182502",
+ "title": "Code Librarian: A Software Package Recommendation System",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33182502",
+ "created_at": "2022-10-12T20:19:58Z"
+ },
+ {
+ "hn_id": "39202830",
+ "title": "Low-Resource Languages Jailbreak GPT-4",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39202830",
+ "created_at": "2024-01-31T12:11:05Z"
+ }
+ ],
+ "top_points": 79,
+ "total_points": 85,
+ "total_comments": 11
+}
+\ No newline at end of file
diff --git a/papers/deep-dive-into-2024/hn.json b/papers/deep-dive-into-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "42307849",
+ "title": "\"Oh, shit I opened the document \": Suspicious Mail in VR Headsets[pdf]",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42307849",
+ "created_at": "2024-12-03T16:22:05Z"
+ },
+ {
+ "hn_id": "40263764",
+ "title": "A scalable approach to network reconstruction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40263764",
+ "created_at": "2024-05-05T10:37:34Z"
+ },
+ {
+ "hn_id": "42465432",
+ "title": "Glider: Small model beats GPT on eval tasks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42465432",
+ "created_at": "2024-12-19T20:33:09Z"
+ },
+ {
+ "hn_id": "38873897",
+ "title": "Static Deadlock Detection for Rust Programs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38873897",
+ "created_at": "2024-01-04T23:55:09Z"
+ },
+ {
+ "hn_id": "38870705",
+ "title": "Scalable network reconstruction in subquadratic time",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38870705",
+ "created_at": "2024-01-04T18:48:09Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 8,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/deepcircuitx-comprehensive-repositorylevel-2025/hn.json b/papers/deepcircuitx-comprehensive-repositorylevel-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/deepcode-open-agentic-2025/hn.json b/papers/deepcode-open-agentic-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42401619",
+ "title": "Forking Paths in Neural Text Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42401619",
+ "created_at": "2024-12-12T18:06:05Z"
+ },
+ {
+ "hn_id": "34029704",
+ "title": "Roscoe: A Suite of Metrics for Scoring Step-by-Step Reasoning (Meta)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34029704",
+ "created_at": "2022-12-17T17:06:48Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/deepcrceval-revisiting-evaluation-2024/hn.json b/papers/deepcrceval-revisiting-evaluation-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "42654204",
+ "title": "RAG with Differential Privacy",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42654204",
+ "created_at": "2025-01-10T09:50:11Z"
+ },
+ {
+ "hn_id": "42813195",
+ "title": "CUTECat: Concolic Execution for Computational Law",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42813195",
+ "created_at": "2025-01-24T14:14:06Z"
+ },
+ {
+ "hn_id": "42027141",
+ "title": "Context-Augmented Code Generation Using Programming Knowledge Graphs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42027141",
+ "created_at": "2024-11-02T15:56:47Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/deepseek-coder-2024/hn.json b/papers/deepseek-coder-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "39142278",
+ "title": "Python has 189X the dataset size compared to Rust",
+ "points": 2,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=39142278",
+ "created_at": "2024-01-26T13:18:01Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/deepseek-coder-v2-2024/hn.json b/papers/deepseek-coder-v2-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "45222339",
+ "title": "Analog In-Memory Computing Attention Mechanism for Fast LLMs",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45222339",
+ "created_at": "2025-09-12T14:09:56Z"
+ },
+ {
+ "hn_id": "40761106",
+ "title": "DeepSeek-Coder-V2: Breaking the Barrier of Closed-Source Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40761106",
+ "created_at": "2024-06-22T18:34:13Z"
+ },
+ {
+ "hn_id": "40834241",
+ "title": "A Critical Study of What Code-LLMs (Do Not) Learn",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40834241",
+ "created_at": "2024-06-30T00:15:06Z"
+ },
+ {
+ "hn_id": "39441274",
+ "title": "Speculative Streaming: Fast LLM Inference Without Auxiliary Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39441274",
+ "created_at": "2024-02-20T13:55:45Z"
+ },
+ {
+ "hn_id": "39461525",
+ "title": "Speculative Streaming: Fast LLM Inference Without Auxiliary Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39461525",
+ "created_at": "2024-02-22T00:24:15Z"
+ },
+ {
+ "hn_id": "40442724",
+ "title": "Analogical Reasoning-Augmented Interactive Data Annotation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40442724",
+ "created_at": "2024-05-22T16:16:38Z"
+ },
+ {
+ "hn_id": "40111141",
+ "title": "Lossless Acceleration of Long Sequence Generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40111141",
+ "created_at": "2024-04-22T03:10:54Z"
+ },
+ {
+ "hn_id": "37234305",
+ "title": "Opportunities and Risks of LLMs for Scalable Deliberation with Polis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37234305",
+ "created_at": "2023-08-23T11:30:32Z"
+ },
+ {
+ "hn_id": "37191375",
+ "title": "Opportunities and Risks of LLMs for Scalable Deliberation with Polis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37191375",
+ "created_at": "2023-08-19T18:00:10Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 17,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/deepseek-r1-2025/hn.json b/papers/deepseek-r1-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42823568",
+ "title": "DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via RL",
+ "points": 1351,
+ "comments": 1056,
+ "url": "https://news.ycombinator.com/item?id=42823568",
+ "created_at": "2025-01-25T18:39:49Z"
+ },
+ {
+ "hn_id": "42915646",
+ "title": "Stack Overflow Meets Replication: Security Research Amid Evolving Code Snippets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42915646",
+ "created_at": "2025-02-03T06:49:46Z"
+ }
+ ],
+ "top_points": 1351,
+ "total_points": 1352,
+ "total_comments": 1056
+}
+\ No newline at end of file
diff --git a/papers/defending-against-prompt-2025-2/hn.json b/papers/defending-against-prompt-2025-2/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "42919597",
+ "title": "Efficient Reasoning with Hidden Thinking",
+ "points": 172,
+ "comments": 43,
+ "url": "https://news.ycombinator.com/item?id=42919597",
+ "created_at": "2025-02-03T16:06:48Z"
+ },
+ {
+ "hn_id": "38355249",
+ "title": "Open Problems in DAOs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38355249",
+ "created_at": "2023-11-20T21:39:59Z"
+ },
+ {
+ "hn_id": "46311266",
+ "title": "Tiny-TSM: Efficiently Training a Lightweight SOTA Time Series Foundation Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46311266",
+ "created_at": "2025-12-18T11:07:07Z"
+ },
+ {
+ "hn_id": "37939342",
+ "title": "Can Large Language Models Explain Themselves? A Study",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37939342",
+ "created_at": "2023-10-19T06:41:38Z"
+ }
+ ],
+ "top_points": 172,
+ "total_points": 177,
+ "total_comments": 43
+}
+\ No newline at end of file
diff --git a/papers/defending-against-prompt-2025/hn.json b/papers/defending-against-prompt-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40938701",
+ "title": "Training a time series model using transformers at Datadog",
+ "points": 27,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40938701",
+ "created_at": "2024-07-11T17:19:07Z"
+ },
+ {
+ "hn_id": "32218471",
+ "title": "Drivable Volumetric Avatars Using Texel-Aligned Features",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32218471",
+ "created_at": "2022-07-24T22:36:31Z"
+ },
+ {
+ "hn_id": "44553930",
+ "title": "Defending Against Prompt Injection with a Few DefensiveTokens",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44553930",
+ "created_at": "2025-07-13T21:32:40Z"
+ },
+ {
+ "hn_id": "47041986",
+ "title": "A Survey of In-Context Reinforcement Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47041986",
+ "created_at": "2026-02-17T00:01:18Z"
+ },
+ {
+ "hn_id": "43296207",
+ "title": "The Widespread Adoption of Large Language Model-Assisted Writing Across Society",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43296207",
+ "created_at": "2025-03-08T00:09:53Z"
+ },
+ {
+ "hn_id": "43088092",
+ "title": "The Widespread Adoption of Large Language Model-Assisted Writing Across Society",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43088092",
+ "created_at": "2025-02-18T10:30:59Z"
+ },
+ {
+ "hn_id": "38091292",
+ "title": "Communicative Agents for Software Development",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38091292",
+ "created_at": "2023-10-31T21:00:02Z"
+ },
+ {
+ "hn_id": "37786498",
+ "title": "Communicative Agents for Software Development",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37786498",
+ "created_at": "2023-10-06T02:13:18Z"
+ },
+ {
+ "hn_id": "46452714",
+ "title": "Performance Evaluation of Brokerless Messaging Libraries",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46452714",
+ "created_at": "2026-01-01T09:44:55Z"
+ },
+ {
+ "hn_id": "45486277",
+ "title": "Brain Graph Augmentation via Learnable Edge Masking for Psychiatric Diagnosis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45486277",
+ "created_at": "2025-10-05T23:45:56Z"
+ }
+ ],
+ "top_points": 27,
+ "total_points": 44,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/defense-against-indirect-2026/hn.json b/papers/defense-against-indirect-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46624374",
+ "title": "Quantum Automated Theorem Proving",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46624374",
+ "created_at": "2026-01-14T22:06:27Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/defense-against-prompt-2024/hn.json b/papers/defense-against-prompt-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "38150915",
+ "title": "The Generative AI Paradox: \"What It Can Create, It May Not Understand\"",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38150915",
+ "created_at": "2023-11-05T13:23:46Z"
+ },
+ {
+ "hn_id": "42487268",
+ "title": "Specification-Driven Code Translation Powered by LLMs: How Far Are We?",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42487268",
+ "created_at": "2024-12-22T16:20:09Z"
+ },
+ {
+ "hn_id": "38146155",
+ "title": "The Generative AI Paradox: \"What It Can Create, It May Not Understand\"",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38146155",
+ "created_at": "2023-11-04T23:06:37Z"
+ },
+ {
+ "hn_id": "43268036",
+ "title": "Evolutionary Multi-Agent Reinforcement Learning in Group Social Dilemmas",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43268036",
+ "created_at": "2025-03-05T15:41:54Z"
+ },
+ {
+ "hn_id": "35719730",
+ "title": "Schrödinger cat states of a 16-microgram mechanical oscillator",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35719730",
+ "created_at": "2023-04-26T20:43:33Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 15,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/defense-against-prompt-2025/hn.json b/papers/defense-against-prompt-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "44884091",
+ "title": "A Comprehensive Survey of Self-Evolving AI Agents [pdf]",
+ "points": 94,
+ "comments": 29,
+ "url": "https://news.ycombinator.com/item?id=44884091",
+ "created_at": "2025-08-13T02:26:32Z"
+ },
+ {
+ "hn_id": "43736366",
+ "title": "Inferring the Phylogeny of Large Language Models",
+ "points": 69,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=43736366",
+ "created_at": "2025-04-19T13:47:15Z"
+ },
+ {
+ "hn_id": "26794843",
+ "title": "Certifying Multimedia News Content for Fake News Defense",
+ "points": 12,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=26794843",
+ "created_at": "2021-04-13T16:28:40Z"
+ },
+ {
+ "hn_id": "43989432",
+ "title": "OnPrem.LLM: A Privacy-Conscious Document Intelligence Toolkit",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43989432",
+ "created_at": "2025-05-14T21:30:02Z"
+ },
+ {
+ "hn_id": "40043146",
+ "title": "Why do small language models underperform?",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40043146",
+ "created_at": "2024-04-15T17:10:46Z"
+ },
+ {
+ "hn_id": "35626433",
+ "title": "Learning to Compress Prompts with Gist Tokens",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35626433",
+ "created_at": "2023-04-19T10:22:30Z"
+ },
+ {
+ "hn_id": "35721355",
+ "title": "Compressing Large Language Model Prompts via Gist Tokens",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35721355",
+ "created_at": "2023-04-26T23:30:32Z"
+ },
+ {
+ "hn_id": "35641820",
+ "title": "Learning to Compress Prompts with Gist Tokens",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35641820",
+ "created_at": "2023-04-20T15:43:27Z"
+ },
+ {
+ "hn_id": "9413569",
+ "title": "Efficient Approximation Algorithms for the Largest Weight Data Retrieval Problem",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=9413569",
+ "created_at": "2015-04-21T12:35:14Z"
+ }
+ ],
+ "top_points": 94,
+ "total_points": 189,
+ "total_comments": 40
+}
+\ No newline at end of file
diff --git a/papers/dehallucinator-mitigating-llm-2024/hn.json b/papers/dehallucinator-mitigating-llm-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "38939558",
+ "title": "Large Legal Fictions: Profiling Legal Hallucinations in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38939558",
+ "created_at": "2024-01-10T14:57:07Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/demonstratesearchpredict-composing-retrieval-2022/hn.json b/papers/demonstratesearchpredict-composing-retrieval-2022/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "34178437",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34178437",
+ "created_at": "2022-12-29T21:44:44Z"
+ },
+ {
+ "hn_id": "42209577",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42209577",
+ "created_at": "2024-11-21T23:01:03Z"
+ },
+ {
+ "hn_id": "34232125",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34232125",
+ "created_at": "2023-01-03T14:57:13Z"
+ },
+ {
+ "hn_id": "34570488",
+ "title": "Training a Language Model on a Single GPU in One Day",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34570488",
+ "created_at": "2023-01-29T17:40:13Z"
+ },
+ {
+ "hn_id": "39968113",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day (2022)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39968113",
+ "created_at": "2024-04-08T10:09:08Z"
+ },
+ {
+ "hn_id": "34338363",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34338363",
+ "created_at": "2023-01-11T13:47:58Z"
+ },
+ {
+ "hn_id": "42656632",
+ "title": "Show HN: We collected detailed annotations for text-to-image generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42656632",
+ "created_at": "2025-01-10T15:47:29Z"
+ },
+ {
+ "hn_id": "33522332",
+ "title": "Championship Simulator: Architectural Simulation for Education and Competition",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33522332",
+ "created_at": "2022-11-08T18:21:42Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 21,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/design-evaluation-assisted-2026/hn.json b/papers/design-evaluation-assisted-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/designing-llmbased-multiagent-2025/hn.json b/papers/designing-llmbased-multiagent-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "29250329",
+ "title": "Free Will Belief as a Consequence of Model-Based Reinforcement Learning",
+ "points": 2,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=29250329",
+ "created_at": "2021-11-17T08:19:50Z"
+ },
+ {
+ "hn_id": "33617429",
+ "title": "High-level synthesis for packet processing pipelines",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33617429",
+ "created_at": "2022-11-16T00:50:17Z"
+ },
+ {
+ "hn_id": "10672783",
+ "title": "Reverse Engineering Intel DRAM Addressing and Exploitation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10672783",
+ "created_at": "2015-12-03T21:28:18Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 6,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/detecting-adversarial-finetuning-2025/hn.json b/papers/detecting-adversarial-finetuning-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "41929456",
+ "title": "Quantum inspired factorization up to 100-bit RSA number in polynomial time [pdf]",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41929456",
+ "created_at": "2024-10-23T21:34:43Z"
+ },
+ {
+ "hn_id": "41933882",
+ "title": "Quantum inspired factorization up to 100-bit RSA number in polynomial time",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41933882",
+ "created_at": "2024-10-24T09:46:08Z"
+ },
+ {
+ "hn_id": "41921364",
+ "title": "Assessing the Performance of Human-Capable LLMs – Are LLMs Coming for Your Job?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41921364",
+ "created_at": "2024-10-23T03:05:13Z"
+ },
+ {
+ "hn_id": "41914405",
+ "title": "Loss of 12 Starlink Satellites Due to the Extreme Geomagnetic Storm of May 2024",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41914405",
+ "created_at": "2024-10-22T14:04:12Z"
+ },
+ {
+ "hn_id": "38177348",
+ "title": "CleanCoNLL: A Nearly Noise-Free Named Entity Recognition Dataset",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38177348",
+ "created_at": "2023-11-07T14:47:31Z"
+ },
+ {
+ "hn_id": "38163590",
+ "title": "Multi-Structure Objects Points-To Analysis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38163590",
+ "created_at": "2023-11-06T15:07:37Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 9,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/detecting-correcting-hallucinations-code-2026/hn.json b/papers/detecting-correcting-hallucinations-code-2026/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46885582",
+ "title": "Who's in Charge? Disempowerment Patterns in Real-World LLM Usage",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46885582",
+ "created_at": "2026-02-04T13:28:17Z"
+ },
+ {
+ "hn_id": "47119379",
+ "title": "Who's in Charge? Disempowerment Patterns in Real-World LLM Usage",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47119379",
+ "created_at": "2026-02-23T08:01:55Z"
+ },
+ {
+ "hn_id": "46811142",
+ "title": "Anthropic: Who's in Charge? Disempowerment Patterns in Real-World LLM Usage",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46811142",
+ "created_at": "2026-01-29T15:04:00Z"
+ },
+ {
+ "hn_id": "47477667",
+ "title": "TinyTorch: Building Machine Learning Systems from First Principles",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47477667",
+ "created_at": "2026-03-22T14:03:42Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 9,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/detecting-silent-failures-2025/hn.json b/papers/detecting-silent-failures-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42158451",
+ "title": "Convolutional Differentiable Logic Gate Networks",
+ "points": 26,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42158451",
+ "created_at": "2024-11-16T19:10:54Z"
+ },
+ {
+ "hn_id": "39967245",
+ "title": "Formal Aspects of Language Modeling",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39967245",
+ "created_at": "2024-04-08T07:47:56Z"
+ },
+ {
+ "hn_id": "42115169",
+ "title": "Convolutional Differentiable Logic Gate Networks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42115169",
+ "created_at": "2024-11-12T13:04:29Z"
+ },
+ {
+ "hn_id": "34101211",
+ "title": "Will we run out of data?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34101211",
+ "created_at": "2022-12-23T01:17:13Z"
+ },
+ {
+ "hn_id": "42258010",
+ "title": "Gradient Boosting Trees and LLMs for Tabular Data Few-Shot Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258010",
+ "created_at": "2024-11-27T17:46:47Z"
+ },
+ {
+ "hn_id": "40939773",
+ "title": "Formal Aspects of Language Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40939773",
+ "created_at": "2024-07-11T19:30:45Z"
+ },
+ {
+ "hn_id": "36985212",
+ "title": "Will we run out of data to train LLMs?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36985212",
+ "created_at": "2023-08-03T12:53:23Z"
+ },
+ {
+ "hn_id": "31731755",
+ "title": "How Developers and Managers Define and Trade Productivity for Quality [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31731755",
+ "created_at": "2022-06-13T21:05:24Z"
+ },
+ {
+ "hn_id": "31488587",
+ "title": "How Developers and Managers Define and Trade Productivity for Quality",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31488587",
+ "created_at": "2022-05-24T06:12:01Z"
+ },
+ {
+ "hn_id": "29172253",
+ "title": "How Developers and Managers Define and Trade Productivity for Quality [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29172253",
+ "created_at": "2021-11-10T08:06:07Z"
+ }
+ ],
+ "top_points": 26,
+ "total_points": 48,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/detecting-sleeper-agents-2025/hn.json b/papers/detecting-sleeper-agents-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45722841",
+ "title": "The Shape of Math to Come by Alex Kontorovich",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45722841",
+ "created_at": "2025-10-27T16:24:06Z"
+ },
+ {
+ "hn_id": "46508063",
+ "title": "A Systematic Analysis of Biases in Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46508063",
+ "created_at": "2026-01-06T02:33:50Z"
+ },
+ {
+ "hn_id": "40689052",
+ "title": "Microarchitectural Security of AWS Firecracker VMM for Serverless Cloud (2023)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40689052",
+ "created_at": "2024-06-15T11:25:54Z"
+ },
+ {
+ "hn_id": "45656753",
+ "title": "The Shape of Math to Come",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45656753",
+ "created_at": "2025-10-21T15:07:05Z"
+ },
+ {
+ "hn_id": "42849924",
+ "title": "Share a Tiny Space of Your Freezer to Preserve Seed Diversity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42849924",
+ "created_at": "2025-01-28T07:56:31Z"
+ },
+ {
+ "hn_id": "42286387",
+ "title": "DrugAgent: AI-Aided Drug Discovery Programming Through LLM Multi-Agent Collab",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42286387",
+ "created_at": "2024-12-01T05:19:48Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 15,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/detection-method-prompt-2025/hn.json b/papers/detection-method-prompt-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "31636401",
+ "title": "End-to-End 3D Hand Pose Estimation from Stereo Cameras",
+ "points": 80,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=31636401",
+ "created_at": "2022-06-06T01:07:13Z"
+ },
+ {
+ "hn_id": "36373410",
+ "title": "A Survey of Modern Compiler Fuzzing",
+ "points": 29,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36373410",
+ "created_at": "2023-06-17T19:05:42Z"
+ },
+ {
+ "hn_id": "27521090",
+ "title": "SimSwap: An Efficient Framework for High Fidelity Face Swapping",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27521090",
+ "created_at": "2021-06-15T20:30:01Z"
+ },
+ {
+ "hn_id": "45044093",
+ "title": "Omni Geometry Representation Learning vs. LLMs for Geospatial Entity Resolution",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45044093",
+ "created_at": "2025-08-27T19:38:10Z"
+ },
+ {
+ "hn_id": "43548771",
+ "title": "Large Language Models Share Representations of Latent Grammatical Concepts",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43548771",
+ "created_at": "2025-04-01T16:34:21Z"
+ },
+ {
+ "hn_id": "43436502",
+ "title": "Optimization of Monolithically Stackable Gain Cell Memory for Last-Level Cache",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43436502",
+ "created_at": "2025-03-21T14:58:30Z"
+ },
+ {
+ "hn_id": "44524946",
+ "title": "Finding Compiler Bugs: Cross-Language Code Generator and Differential Testing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44524946",
+ "created_at": "2025-07-10T20:07:28Z"
+ },
+ {
+ "hn_id": "43389464",
+ "title": "Decoupling the components of geometric understanding in Vision Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43389464",
+ "created_at": "2025-03-17T15:16:52Z"
+ }
+ ],
+ "top_points": 80,
+ "total_points": 119,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/developer-productivity-genai-2025/hn.json b/papers/developer-productivity-genai-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45845800",
+ "title": "From Memorization to Reasoning in the Spectrum of Loss Curvature",
+ "points": 65,
+ "comments": 14,
+ "url": "https://news.ycombinator.com/item?id=45845800",
+ "created_at": "2025-11-07T12:43:49Z"
+ }
+ ],
+ "top_points": 65,
+ "total_points": 65,
+ "total_comments": 14
+}
+\ No newline at end of file
diff --git a/papers/devil-details-emergent-2025/hn.json b/papers/devil-details-emergent-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/disaggregation-reveals-hidden-2025/hn.json b/papers/disaggregation-reveals-hidden-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45783837",
+ "title": "Watermarking for Generative AI",
+ "points": 17,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45783837",
+ "created_at": "2025-11-01T18:04:10Z"
+ }
+ ],
+ "top_points": 17,
+ "total_points": 17,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/disagreements-reasoning-how-2025/hn.json b/papers/disagreements-reasoning-how-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43243109",
+ "title": "An Attempt to Catch Up with JIT Compilers",
+ "points": 203,
+ "comments": 142,
+ "url": "https://news.ycombinator.com/item?id=43243109",
+ "created_at": "2025-03-03T16:06:50Z"
+ },
+ {
+ "hn_id": "44433899",
+ "title": "Converting a large mathematical software package written in C++ to C++20 modules",
+ "points": 141,
+ "comments": 42,
+ "url": "https://news.ycombinator.com/item?id=44433899",
+ "created_at": "2025-07-01T13:46:56Z"
+ },
+ {
+ "hn_id": "46339300",
+ "title": "Signaling in the Age of AI: Evidence from Cover Letters",
+ "points": 17,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46339300",
+ "created_at": "2025-12-20T20:23:28Z"
+ },
+ {
+ "hn_id": "45472586",
+ "title": "Physics of Learning: A Lagrangian perspective to different learning paradigms",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45472586",
+ "created_at": "2025-10-04T11:38:44Z"
+ },
+ {
+ "hn_id": "47195084",
+ "title": "Limitations on Safe, Trusted, Artificial General Intelligence",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47195084",
+ "created_at": "2026-02-28T13:25:35Z"
+ },
+ {
+ "hn_id": "45418635",
+ "title": "Can LLMs Be Creative? Paper: Combinatorial Creativity: A New Frontier",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45418635",
+ "created_at": "2025-09-29T20:53:22Z"
+ },
+ {
+ "hn_id": "24567265",
+ "title": "Context-Theoretic Semantics for Natural Language: An Algebraic Framework (2007)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24567265",
+ "created_at": "2020-09-23T14:11:23Z"
+ },
+ {
+ "hn_id": "46479718",
+ "title": "FakeParts: A New Family of AI-Generated DeepFakes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46479718",
+ "created_at": "2026-01-03T18:14:11Z"
+ },
+ {
+ "hn_id": "45069333",
+ "title": "A multi-task neural network for atypical mitosis recognition under domain shift",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45069333",
+ "created_at": "2025-08-29T21:00:57Z"
+ }
+ ],
+ "top_points": 203,
+ "total_points": 372,
+ "total_comments": 185
+}
+\ No newline at end of file
diff --git a/papers/disentangling-causal-importance-2026/hn.json b/papers/disentangling-causal-importance-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/dissecting-swe-bench-leaderboard-2025/hn.json b/papers/dissecting-swe-bench-leaderboard-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44489690",
+ "title": "Mercury: Ultra-fast language models based on diffusion",
+ "points": 576,
+ "comments": 242,
+ "url": "https://news.ycombinator.com/item?id=44489690",
+ "created_at": "2025-07-07T12:31:08Z"
+ },
+ {
+ "hn_id": "44412427",
+ "title": "Mercury: Ultra-Fast Language Models Based on Diffusion",
+ "points": 10,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44412427",
+ "created_at": "2025-06-29T12:05:48Z"
+ },
+ {
+ "hn_id": "44358841",
+ "title": "Machine Mental Imagery: Empower Multimodal Reasoning with Latent Visual Tokens",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44358841",
+ "created_at": "2025-06-23T18:52:55Z"
+ },
+ {
+ "hn_id": "44101770",
+ "title": "Effective Reinforcement Learning for Reasoning in Language Models",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44101770",
+ "created_at": "2025-05-26T21:17:20Z"
+ },
+ {
+ "hn_id": "44314613",
+ "title": "Wanting to Be Understood Explains the Meta-Problem of Consciousness",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44314613",
+ "created_at": "2025-06-19T01:16:41Z"
+ },
+ {
+ "hn_id": "44304578",
+ "title": "Serving Large Language Models on Huawei CloudMatrix384",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44304578",
+ "created_at": "2025-06-17T22:18:43Z"
+ },
+ {
+ "hn_id": "44009979",
+ "title": "A Search for Planet Nine with IRAS and Akari Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44009979",
+ "created_at": "2025-05-16T21:35:58Z"
+ },
+ {
+ "hn_id": "46445614",
+ "title": "Mechanical non-reciprocity programmed by shear jamming in soft composite solids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46445614",
+ "created_at": "2025-12-31T16:32:15Z"
+ },
+ {
+ "hn_id": "44047429",
+ "title": "Model Merging in Pre-Training of Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44047429",
+ "created_at": "2025-05-21T01:12:29Z"
+ },
+ {
+ "hn_id": "42816449",
+ "title": "Dissecting the NVIDIA Hopper Architecture through Microbenchmarking",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42816449",
+ "created_at": "2025-01-24T20:02:41Z"
+ }
+ ],
+ "top_points": 576,
+ "total_points": 612,
+ "total_comments": 244
+}
+\ No newline at end of file
diff --git a/papers/dive-into-agent-2025/hn.json b/papers/dive-into-agent-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43943031",
+ "title": "RAGDoll: Efficient Offloading-Based Online RAG System on a Single GPU",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43943031",
+ "created_at": "2025-05-10T03:35:35Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/do-prompts-reshape-2025/hn.json b/papers/do-prompts-reshape-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "42898914",
+ "title": "Gradual Disempowerment: How Even Incremental AI Progress Poses Existential Risks",
+ "points": 87,
+ "comments": 84,
+ "url": "https://news.ycombinator.com/item?id=42898914",
+ "created_at": "2025-02-01T15:12:22Z"
+ },
+ {
+ "hn_id": "38036218",
+ "title": "Zephyr 7B",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38036218",
+ "created_at": "2023-10-27T09:06:34Z"
+ },
+ {
+ "hn_id": "25604385",
+ "title": "Learning from Heterogeneous EEG Signals with Differentiable Channel Reordering",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25604385",
+ "created_at": "2021-01-01T16:33:05Z"
+ },
+ {
+ "hn_id": "42915646",
+ "title": "Stack Overflow Meets Replication: Security Research Amid Evolving Code Snippets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42915646",
+ "created_at": "2025-02-03T06:49:46Z"
+ }
+ ],
+ "top_points": 87,
+ "total_points": 94,
+ "total_comments": 84
+}
+\ No newline at end of file
diff --git a/papers/does-it-tie-2025/hn.json b/papers/does-it-tie-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "42550783",
+ "title": "Gamma-ray bursts: what do we know today that we did not know 10 years ago?",
+ "points": 16,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42550783",
+ "created_at": "2024-12-30T16:30:18Z"
+ },
+ {
+ "hn_id": "43777601",
+ "title": "Assistance or Disruption? Evaluating the Design of Proactive AI Programming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43777601",
+ "created_at": "2025-04-23T23:02:02Z"
+ },
+ {
+ "hn_id": "42566642",
+ "title": "1.58-Bit Flux",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42566642",
+ "created_at": "2025-01-01T15:38:39Z"
+ },
+ {
+ "hn_id": "43265832",
+ "title": "Evaluating Intelligence via Trial and Error",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43265832",
+ "created_at": "2025-03-05T12:51:05Z"
+ },
+ {
+ "hn_id": "43280105",
+ "title": "Evaluating Intelligence via Trial and Error",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43280105",
+ "created_at": "2025-03-06T13:45:25Z"
+ }
+ ],
+ "top_points": 16,
+ "total_points": 23,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/does-prompt-formatting-2024/hn.json b/papers/does-prompt-formatting-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "42266742",
+ "title": "The Rise and Fall of Ideas' Popularity [pdf]",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42266742",
+ "created_at": "2024-11-28T16:54:44Z"
+ },
+ {
+ "hn_id": "44854721",
+ "title": "Does Prompt Formatting Have Any Impact on LLM Performance?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44854721",
+ "created_at": "2025-08-10T12:23:36Z"
+ },
+ {
+ "hn_id": "45930419",
+ "title": "A Large-Scale Computational Analysis of Errors in ArXiv Papers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45930419",
+ "created_at": "2025-11-14T18:52:29Z"
+ },
+ {
+ "hn_id": "33707451",
+ "title": "Knowledge Graph Generation from Text",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33707451",
+ "created_at": "2022-11-22T16:21:57Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 7,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/does-reasoning-introduce-2025/hn.json b/papers/does-reasoning-introduce-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43405094",
+ "title": "Politicians' misinformation behavior and public engagement, in 4 countries",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43405094",
+ "created_at": "2025-03-18T21:03:45Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/domainspecific-constitutional-ai-2025/hn.json b/papers/domainspecific-constitutional-ai-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "41671808",
+ "title": "First Past the Post: Evaluating Query Optimization in MongoDB",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41671808",
+ "created_at": "2024-09-27T15:36:58Z"
+ },
+ {
+ "hn_id": "45220460",
+ "title": "Perihelion precession of planetary orbits solved from quantum field theory",
+ "points": 3,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=45220460",
+ "created_at": "2025-09-12T09:48:24Z"
+ },
+ {
+ "hn_id": "45302119",
+ "title": "VCBench: Benchmarking LLMs in Venture Capital",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45302119",
+ "created_at": "2025-09-19T14:32:42Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 8,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/dont-always-pick-2026/hn.json b/papers/dont-always-pick-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47370450",
+ "title": "End-to-End Hardware-Driven Graph Preprocessing for Enhanced GNN Performance",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47370450",
+ "created_at": "2026-03-13T21:51:18Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/dover-interventiondriven-auto-2025/hn.json b/papers/dover-interventiondriven-auto-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "42378335",
+ "title": "Training LLMs to Reason in a Continuous Latent Space",
+ "points": 283,
+ "comments": 114,
+ "url": "https://news.ycombinator.com/item?id=42378335",
+ "created_at": "2024-12-10T16:26:17Z"
+ },
+ {
+ "hn_id": "43042753",
+ "title": "LM2: Large Memory Models",
+ "points": 110,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=43042753",
+ "created_at": "2025-02-13T23:21:21Z"
+ },
+ {
+ "hn_id": "29568816",
+ "title": "Proof of Steak",
+ "points": 79,
+ "comments": 28,
+ "url": "https://news.ycombinator.com/item?id=29568816",
+ "created_at": "2021-12-15T17:16:25Z"
+ },
+ {
+ "hn_id": "30078848",
+ "title": "Phishing in organizations: Findings from a large-scale and long-term study",
+ "points": 30,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=30078848",
+ "created_at": "2022-01-25T22:11:11Z"
+ },
+ {
+ "hn_id": "42456288",
+ "title": "Rethinking the Combination of Graph Neural Network and Large Language Model",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42456288",
+ "created_at": "2024-12-18T22:41:39Z"
+ },
+ {
+ "hn_id": "38762672",
+ "title": "Building Trustworthy NeuroSymbolic AI Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38762672",
+ "created_at": "2023-12-25T14:04:27Z"
+ },
+ {
+ "hn_id": "29485809",
+ "title": "Deep learning for elliptic and parabolic boundary value problems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29485809",
+ "created_at": "2021-12-08T15:22:21Z"
+ },
+ {
+ "hn_id": "42470646",
+ "title": "SpikeFI: A Fault Injection Framework for Spiking Neural Networks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42470646",
+ "created_at": "2024-12-20T12:47:13Z"
+ }
+ ],
+ "top_points": 283,
+ "total_points": 509,
+ "total_comments": 182
+}
+\ No newline at end of file
diff --git a/papers/drex-benchmark-detecting-2025/hn.json b/papers/drex-benchmark-detecting-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "44106842",
+ "title": "Outcome-Based Reinforcement Learning to Predict the Future",
+ "points": 99,
+ "comments": 15,
+ "url": "https://news.ycombinator.com/item?id=44106842",
+ "created_at": "2025-05-27T13:33:38Z"
+ },
+ {
+ "hn_id": "43314603",
+ "title": "A GS-Cache Inference Framework for Large-Scale Gaussian Splatting Models",
+ "points": 19,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43314603",
+ "created_at": "2025-03-09T22:33:28Z"
+ },
+ {
+ "hn_id": "44847155",
+ "title": "Expediting On-Device LLM Personalization via Explainable Model Selection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44847155",
+ "created_at": "2025-08-09T15:13:10Z"
+ },
+ {
+ "hn_id": "37693398",
+ "title": "Frustrated with Code Quality Issues? LLMs Can Help",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37693398",
+ "created_at": "2023-09-28T18:11:20Z"
+ }
+ ],
+ "top_points": 99,
+ "total_points": 120,
+ "total_comments": 16
+}
+\ No newline at end of file
diff --git a/papers/dscodebench-realistic-benchmark-2025/hn.json b/papers/dscodebench-realistic-benchmark-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "36184838",
+ "title": "Reverse Engineering Self-Supervised Learning",
+ "points": 86,
+ "comments": 16,
+ "url": "https://news.ycombinator.com/item?id=36184838",
+ "created_at": "2023-06-04T11:43:46Z"
+ },
+ {
+ "hn_id": "43870679",
+ "title": "Show HN: I built an AI tool to practice technical interviews with",
+ "points": 12,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43870679",
+ "created_at": "2025-05-02T14:57:13Z"
+ },
+ {
+ "hn_id": "45300655",
+ "title": "Generalizable Geometric Image Caption Synthesis",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45300655",
+ "created_at": "2025-09-19T12:05:01Z"
+ },
+ {
+ "hn_id": "43405094",
+ "title": "Politicians' misinformation behavior and public engagement, in 4 countries",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43405094",
+ "created_at": "2025-03-18T21:03:45Z"
+ },
+ {
+ "hn_id": "44324675",
+ "title": "ProtoReasoning: Prototypes as the Foundation for Generalizable Reasoning in LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44324675",
+ "created_at": "2025-06-20T04:10:28Z"
+ },
+ {
+ "hn_id": "43776339",
+ "title": "The Bitter Lesson Learned from 2k Multilingual Benchmarks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43776339",
+ "created_at": "2025-04-23T20:31:54Z"
+ },
+ {
+ "hn_id": "40488690",
+ "title": "Neuromorphic dreaming: A pathway to efficient learning in artificial agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40488690",
+ "created_at": "2024-05-27T08:03:31Z"
+ }
+ ],
+ "top_points": 86,
+ "total_points": 110,
+ "total_comments": 17
+}
+\ No newline at end of file
diff --git a/papers/dspy-compiling-declarative-2023/hn.json b/papers/dspy-compiling-declarative-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42168997",
+ "title": "It's time to replace TCP in the datacenter (2023)",
+ "points": 189,
+ "comments": 156,
+ "url": "https://news.ycombinator.com/item?id=42168997",
+ "created_at": "2024-11-18T01:42:41Z"
+ },
+ {
+ "hn_id": "34337707",
+ "title": "“A Handbook of Integer Sequences” Fifty Years Later",
+ "points": 139,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=34337707",
+ "created_at": "2023-01-11T12:37:58Z"
+ },
+ {
+ "hn_id": "33088928",
+ "title": "It's time to replace TCP in the Datacenter",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33088928",
+ "created_at": "2022-10-04T23:56:57Z"
+ },
+ {
+ "hn_id": "37805651",
+ "title": "Agent Instructs Large Language Models to Be General Zero-Shot Reasoners",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37805651",
+ "created_at": "2023-10-07T21:17:40Z"
+ },
+ {
+ "hn_id": "38561645",
+ "title": "Relightable Gaussian Codec Avatars",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38561645",
+ "created_at": "2023-12-07T20:50:41Z"
+ },
+ {
+ "hn_id": "33151628",
+ "title": "Integration of Skyline Queries into Spark SQL",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33151628",
+ "created_at": "2022-10-10T14:10:30Z"
+ },
+ {
+ "hn_id": "24766804",
+ "title": "Abductive Knowledge Induction from Raw Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24766804",
+ "created_at": "2020-10-13T15:59:02Z"
+ },
+ {
+ "hn_id": "41820840",
+ "title": "DSPy: Compiling Declarative Language Model Calls into Self-Improving Pipelines",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41820840",
+ "created_at": "2024-10-12T17:30:26Z"
+ },
+ {
+ "hn_id": "37776712",
+ "title": "Large Language Models as Analogical Reasoners",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37776712",
+ "created_at": "2023-10-05T10:04:39Z"
+ },
+ {
+ "hn_id": "34364348",
+ "title": "Exoshuffle-CloudSort",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34364348",
+ "created_at": "2023-01-13T05:40:48Z"
+ }
+ ],
+ "top_points": 189,
+ "total_points": 355,
+ "total_comments": 205
+}
+\ No newline at end of file
diff --git a/papers/dual-latent-memory-2026/hn.json b/papers/dual-latent-memory-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/dynamic-memory-management-2025/hn.json b/papers/dynamic-memory-management-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "43086347",
+ "title": "SWE-Lancer: a benchmark of freelance software engineering tasks from Upwork",
+ "points": 111,
+ "comments": 74,
+ "url": "https://news.ycombinator.com/item?id=43086347",
+ "created_at": "2025-02-18T05:25:05Z"
+ },
+ {
+ "hn_id": "46636707",
+ "title": "Show HN: A-MEM – Memory for Claude Code that links and evolves on its own",
+ "points": 8,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=46636707",
+ "created_at": "2026-01-15T18:15:04Z"
+ },
+ {
+ "hn_id": "43760287",
+ "title": "Creating benchmarkable components to measure the quality of AI-enhanced devtools",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43760287",
+ "created_at": "2025-04-22T09:09:48Z"
+ },
+ {
+ "hn_id": "45357392",
+ "title": "Personalised Pricing: The Demise of the Fixed Price?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45357392",
+ "created_at": "2025-09-24T07:35:21Z"
+ },
+ {
+ "hn_id": "44324675",
+ "title": "ProtoReasoning: Prototypes as the Foundation for Generalizable Reasoning in LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44324675",
+ "created_at": "2025-06-20T04:10:28Z"
+ },
+ {
+ "hn_id": "43086430",
+ "title": "SWE-Lancer: Can LLMs Earn $1M from Real-World Freelance Software Engineering?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43086430",
+ "created_at": "2025-02-18T05:40:39Z"
+ }
+ ],
+ "top_points": 111,
+ "total_points": 127,
+ "total_comments": 78
+}
+\ No newline at end of file
diff --git a/papers/dynamic-mix-precision-2026/hn.json b/papers/dynamic-mix-precision-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/early-approaches-adversarial-2025/hn.json b/papers/early-approaches-adversarial-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "44784297",
+ "title": "GHz spiking neuromorphic photonic chip with in-situ training",
+ "points": 115,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=44784297",
+ "created_at": "2025-08-04T11:21:05Z"
+ },
+ {
+ "hn_id": "27945298",
+ "title": "PettingZoo: Gym for Multi-Agent Reinforcement Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27945298",
+ "created_at": "2021-07-24T23:33:19Z"
+ },
+ {
+ "hn_id": "44650583",
+ "title": "Safety Evaluations of 20 LLMs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44650583",
+ "created_at": "2025-07-22T17:41:42Z"
+ },
+ {
+ "hn_id": "46944301",
+ "title": "The Case for Contextual Copyleft: Licensing Open Source Training Data and Gener",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46944301",
+ "created_at": "2026-02-09T11:59:40Z"
+ },
+ {
+ "hn_id": "44672638",
+ "title": "Promptomatix: An Automatic Prompt Optimization Framework for LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44672638",
+ "created_at": "2025-07-24T16:26:59Z"
+ },
+ {
+ "hn_id": "43587253",
+ "title": "Generating Medically-Informed Explanations for Depression Detection Using LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43587253",
+ "created_at": "2025-04-04T20:23:31Z"
+ },
+ {
+ "hn_id": "43484067",
+ "title": "Stealthy Cross-Origin Context Poisoning Attacks Against AI Coding Assistants",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43484067",
+ "created_at": "2025-03-26T16:38:02Z"
+ }
+ ],
+ "top_points": 115,
+ "total_points": 122,
+ "total_comments": 19
+}
+\ No newline at end of file
diff --git a/papers/ecogym-evaluating-llms-2026/hn.json b/papers/ecogym-evaluating-llms-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47149111",
+ "title": "Security Risks of AI Agents Hiring Humans: An Empirical Marketplace Study",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47149111",
+ "created_at": "2026-02-25T09:00:39Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/ecomstage-stagewise-orientationspecific-2026/hn.json b/papers/ecomstage-stagewise-orientationspecific-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/economics-ai-inference-2025/hn.json b/papers/economics-ai-inference-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46714925",
+ "title": "SlimEdge: Lightweight Distributed DNN Deployment on Constrained Hardware",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46714925",
+ "created_at": "2026-01-22T03:27:40Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/edge-memorization-diffusion-2025/hn.json b/papers/edge-memorization-diffusion-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "37367951",
+ "title": "Transformers as Support Vector Machines",
+ "points": 251,
+ "comments": 156,
+ "url": "https://news.ycombinator.com/item?id=37367951",
+ "created_at": "2023-09-03T05:30:10Z"
+ },
+ {
+ "hn_id": "46665309",
+ "title": "Reverse Engineering the ESP32-C3 Wi-Fi Drivers for Static Worst-Case Analysis",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46665309",
+ "created_at": "2026-01-18T06:27:12Z"
+ },
+ {
+ "hn_id": "43391891",
+ "title": "Transformers as Support Vector Machines (2023)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43391891",
+ "created_at": "2025-03-17T19:22:55Z"
+ },
+ {
+ "hn_id": "43723352",
+ "title": "The Imitation Game According to Turing",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43723352",
+ "created_at": "2025-04-17T23:28:44Z"
+ },
+ {
+ "hn_id": "44718857",
+ "title": "Cascade: LLM-Powered JavaScript Deobfuscator",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44718857",
+ "created_at": "2025-07-29T03:52:42Z"
+ },
+ {
+ "hn_id": "43790761",
+ "title": "User Profiles: The Achilles' Heel of Web Browsers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43790761",
+ "created_at": "2025-04-25T06:32:45Z"
+ },
+ {
+ "hn_id": "44184713",
+ "title": "Polymer: Development Workflows as Software",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44184713",
+ "created_at": "2025-06-04T19:43:49Z"
+ }
+ ],
+ "top_points": 251,
+ "total_points": 269,
+ "total_comments": 157
+}
+\ No newline at end of file
diff --git a/papers/editflow-benchmarking-optimizing-2026/hn.json b/papers/editflow-benchmarking-optimizing-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/effective-lora-adapter-2026/hn.json b/papers/effective-lora-adapter-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/effectiveness-llmasajudge-code-2025/hn.json b/papers/effectiveness-llmasajudge-code-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45028439",
+ "title": "No evidence ageing/declining populations compromise socio-economic performance",
+ "points": 82,
+ "comments": 101,
+ "url": "https://news.ycombinator.com/item?id=45028439",
+ "created_at": "2025-08-26T16:05:54Z"
+ },
+ {
+ "hn_id": "47213997",
+ "title": "Von Neumann on Consciousness in Quantum Mechanics",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47213997",
+ "created_at": "2026-03-02T04:46:53Z"
+ },
+ {
+ "hn_id": "43557330",
+ "title": "Ultra-high resolution multimodal MRI dense labelled holistic brain atlas",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43557330",
+ "created_at": "2025-04-02T14:48:56Z"
+ }
+ ],
+ "top_points": 82,
+ "total_points": 87,
+ "total_comments": 101
+}
+\ No newline at end of file
diff --git a/papers/efficient-guided-generation-2023/hn.json b/papers/efficient-guided-generation-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37125118",
+ "title": "Show HN: LLMs can generate valid JSON 100% of the time",
+ "points": 854,
+ "comments": 303,
+ "url": "https://news.ycombinator.com/item?id=37125118",
+ "created_at": "2023-08-14T18:52:54Z"
+ },
+ {
+ "hn_id": "40985017",
+ "title": "SpreadsheetLLM: Encoding Spreadsheets for Large Language Models",
+ "points": 190,
+ "comments": 69,
+ "url": "https://news.ycombinator.com/item?id=40985017",
+ "created_at": "2024-07-17T12:16:18Z"
+ },
+ {
+ "hn_id": "35237646",
+ "title": "CoLT5: Faster Long-Range Transformers With Conditional Computation",
+ "points": 123,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=35237646",
+ "created_at": "2023-03-20T19:54:19Z"
+ },
+ {
+ "hn_id": "40976967",
+ "title": "SpreadsheetLLM: Encoding Spreadsheets for Large Language Models",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40976967",
+ "created_at": "2024-07-16T14:29:34Z"
+ },
+ {
+ "hn_id": "35225719",
+ "title": "CoLT5: Faster Long-Range Transformers with Conditional Computation",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35225719",
+ "created_at": "2023-03-20T00:52:41Z"
+ },
+ {
+ "hn_id": "40965811",
+ "title": "SpreadsheetLLM: Encoding Spreadsheets for Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40965811",
+ "created_at": "2024-07-15T07:04:14Z"
+ },
+ {
+ "hn_id": "23908109",
+ "title": "A curated collection of Covid-19 online datasets",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23908109",
+ "created_at": "2020-07-21T16:17:58Z"
+ },
+ {
+ "hn_id": "44597583",
+ "title": "Lizard: An Efficient Linearization Framework for Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44597583",
+ "created_at": "2025-07-17T20:06:18Z"
+ },
+ {
+ "hn_id": "44096969",
+ "title": "Better Zero-Shot Reasoning with Role-Play Prompting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44096969",
+ "created_at": "2025-05-26T12:48:04Z"
+ },
+ {
+ "hn_id": "41058765",
+ "title": "Spreadsheetllm: Encoding Spreadsheets for Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41058765",
+ "created_at": "2024-07-24T16:31:12Z"
+ }
+ ],
+ "top_points": 854,
+ "total_points": 1186,
+ "total_comments": 390
+}
+\ No newline at end of file
diff --git a/papers/efficient-strategy-finetuning-2026/hn.json b/papers/efficient-strategy-finetuning-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/efficient-switchable-safety-2025/hn.json b/papers/efficient-switchable-safety-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "44963444",
+ "title": "ComputerRL: Scaling Reinforcement Learning for Computer Use Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44963444",
+ "created_at": "2025-08-20T16:37:58Z"
+ },
+ {
+ "hn_id": "44116793",
+ "title": "When Models Don't Collapse: On the Consistency of Iterative MLE",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44116793",
+ "created_at": "2025-05-28T15:06:51Z"
+ },
+ {
+ "hn_id": "43291999",
+ "title": "Think Inside the JSON: Reinforcement Strategy for Strict LLM Schema Adherence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43291999",
+ "created_at": "2025-03-07T17:19:08Z"
+ },
+ {
+ "hn_id": "43207715",
+ "title": "GneissWeb: Preparing High Quality Data for LLMs at Scale",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43207715",
+ "created_at": "2025-02-28T16:50:52Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/effilearner-enhancing-efficiency-2024/hn.json b/papers/effilearner-enhancing-efficiency-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "42258289",
+ "title": "A Survey on Employing Large Language Models for Text-to-SQL Tasks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258289",
+ "created_at": "2024-11-27T18:17:00Z"
+ },
+ {
+ "hn_id": "39253748",
+ "title": "A Comprehensive (Bottom-Up) Study on the Security of Arm Cortex-M Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39253748",
+ "created_at": "2024-02-04T19:56:25Z"
+ },
+ {
+ "hn_id": "39521805",
+ "title": "Statistical Games",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39521805",
+ "created_at": "2024-02-27T09:03:19Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/emergent-abilities-large-2022/hn.json b/papers/emergent-abilities-large-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40689833",
+ "title": "Survey of Rickrolling in Academic Literature [pdf]",
+ "points": 69,
+ "comments": 14,
+ "url": "https://news.ycombinator.com/item?id=40689833",
+ "created_at": "2024-06-15T13:54:57Z"
+ },
+ {
+ "hn_id": "37543595",
+ "title": "Ask HN: Transformer alternatives that could have emergent properties when scaled",
+ "points": 6,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=37543595",
+ "created_at": "2023-09-17T10:45:52Z"
+ },
+ {
+ "hn_id": "36349856",
+ "title": "SqueezeLLM: Dense-and-Sparse Quantization",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36349856",
+ "created_at": "2023-06-16T01:43:39Z"
+ },
+ {
+ "hn_id": "35621735",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35621735",
+ "created_at": "2023-04-18T23:06:51Z"
+ },
+ {
+ "hn_id": "36342137",
+ "title": "SqueezeLLM: Lossless 3-bit quantization with improved performance",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36342137",
+ "created_at": "2023-06-15T15:43:48Z"
+ },
+ {
+ "hn_id": "35410181",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35410181",
+ "created_at": "2023-04-02T13:16:17Z"
+ },
+ {
+ "hn_id": "34785902",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34785902",
+ "created_at": "2023-02-14T05:48:21Z"
+ },
+ {
+ "hn_id": "40419434",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40419434",
+ "created_at": "2024-05-20T19:46:53Z"
+ },
+ {
+ "hn_id": "47174820",
+ "title": "Emergent Abilities of Large Language Models (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47174820",
+ "created_at": "2026-02-27T00:58:33Z"
+ },
+ {
+ "hn_id": "41730269",
+ "title": "Emergent Abilities of Large Language Models (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41730269",
+ "created_at": "2024-10-03T12:47:11Z"
+ }
+ ],
+ "top_points": 69,
+ "total_points": 97,
+ "total_comments": 20
+}
+\ No newline at end of file
diff --git a/papers/emergent-abilities-mirage-2023/hn.json b/papers/emergent-abilities-mirage-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35768824",
+ "title": "Are emergent abilities of large language models a mirage?",
+ "points": 154,
+ "comments": 130,
+ "url": "https://news.ycombinator.com/item?id=35768824",
+ "created_at": "2023-05-01T03:32:48Z"
+ },
+ {
+ "hn_id": "37380462",
+ "title": "Large language models converge toward human-like concept organization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37380462",
+ "created_at": "2023-09-04T13:49:33Z"
+ },
+ {
+ "hn_id": "36931866",
+ "title": "Universal and Transferable Adversarial Attacks on LLM",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36931866",
+ "created_at": "2023-07-30T15:04:08Z"
+ },
+ {
+ "hn_id": "37938665",
+ "title": "The Surveillance AI Pipeline",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37938665",
+ "created_at": "2023-10-19T05:00:48Z"
+ },
+ {
+ "hn_id": "38280492",
+ "title": "Ghostbuster: Detecting Text Ghostwritten by Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38280492",
+ "created_at": "2023-11-15T18:36:51Z"
+ },
+ {
+ "hn_id": "37675002",
+ "title": "Reproducing Failures in Fault Signatures",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37675002",
+ "created_at": "2023-09-27T14:17:13Z"
+ },
+ {
+ "hn_id": "47174839",
+ "title": "Are Emergent Abilities of Large Language Models a Mirage? (2023)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47174839",
+ "created_at": "2026-02-27T01:00:02Z"
+ },
+ {
+ "hn_id": "35659049",
+ "title": "Finding Bug-Inducing Program Environments",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35659049",
+ "created_at": "2023-04-21T19:48:54Z"
+ },
+ {
+ "hn_id": "36955679",
+ "title": "A LLM Assisted Exploitation of AI-Guardian",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36955679",
+ "created_at": "2023-08-01T13:28:45Z"
+ },
+ {
+ "hn_id": "36903968",
+ "title": "Universal and Transferable Adversarial Attacks on Aligned Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36903968",
+ "created_at": "2023-07-28T07:30:39Z"
+ }
+ ],
+ "top_points": 154,
+ "total_points": 170,
+ "total_comments": 132
+}
+\ No newline at end of file
diff --git a/papers/emergent-abilities-survey-2025/hn.json b/papers/emergent-abilities-survey-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "44211225",
+ "title": "Deep dive: How 125 multimodal AI models fuse vision and language",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44211225",
+ "created_at": "2025-06-07T17:45:29Z"
+ },
+ {
+ "hn_id": "44755879",
+ "title": "TinyTroupe: An LLM-Powered Multiagent Persona Simulation Toolkit (OSS Paper)",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44755879",
+ "created_at": "2025-08-01T12:38:32Z"
+ },
+ {
+ "hn_id": "47061684",
+ "title": "Investigating the Downstream Effect of AI Assistants on Software Maintainability",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=47061684",
+ "created_at": "2026-02-18T15:02:13Z"
+ },
+ {
+ "hn_id": "45094277",
+ "title": "LLM4ES: Learning User Embeddings from Event Sequences via Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45094277",
+ "created_at": "2025-09-01T16:42:13Z"
+ },
+ {
+ "hn_id": "44583158",
+ "title": "TinyTroupe: An LLM-Powered Multiagent Persona Simulation Toolkit",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44583158",
+ "created_at": "2025-07-16T15:10:55Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 11,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/emergent-misalignment-easy-2026/hn.json b/papers/emergent-misalignment-easy-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/empirical-study-bugs-2026/hn.json b/papers/empirical-study-bugs-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/empirical-study-design-llm-code-2025/hn.json b/papers/empirical-study-design-llm-code-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37862039",
+ "title": "PeaTMOSS: Mining Pre-Trained Models in Open-Source Software",
+ "points": 23,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37862039",
+ "created_at": "2023-10-12T19:35:57Z"
+ },
+ {
+ "hn_id": "42333823",
+ "title": "Show HN: Data Connector – Chat with Your Database and APIs",
+ "points": 17,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42333823",
+ "created_at": "2024-12-05T23:00:20Z"
+ },
+ {
+ "hn_id": "45857764",
+ "title": "Tidally Torn: Why the Most Common Stars May Lack Large, Habitable-Zone Moons",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45857764",
+ "created_at": "2025-11-08T16:18:41Z"
+ },
+ {
+ "hn_id": "46210641",
+ "title": "Is Vibe Coding Safe? Benchmarking Vulnerability of Agent-Generated Code",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46210641",
+ "created_at": "2025-12-09T21:05:49Z"
+ },
+ {
+ "hn_id": "46194269",
+ "title": "Is Vibe Coding Safe? Benchmarking Vulnerability of Agent-Generated Code",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46194269",
+ "created_at": "2025-12-08T16:29:33Z"
+ },
+ {
+ "hn_id": "42535956",
+ "title": "ReAct: Synergizing Reasoning and Acting in Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42535956",
+ "created_at": "2024-12-28T23:45:41Z"
+ },
+ {
+ "hn_id": "45683970",
+ "title": "Parse: LLM Driven Schema Optimization for Reliable Entity Extraction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45683970",
+ "created_at": "2025-10-23T16:42:00Z"
+ },
+ {
+ "hn_id": "47021638",
+ "title": "To ReAct or not to ReAct?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47021638",
+ "created_at": "2026-02-15T06:57:48Z"
+ },
+ {
+ "hn_id": "46200850",
+ "title": "Benchmarking Vulnerability of Agent-Generated Code in Real-World Tasks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46200850",
+ "created_at": "2025-12-09T03:13:01Z"
+ },
+ {
+ "hn_id": "43050120",
+ "title": "Understanding Workers' Internal and External Representations of Complex Data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43050120",
+ "created_at": "2025-02-14T16:31:31Z"
+ }
+ ],
+ "top_points": 23,
+ "total_points": 63,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/empirical-study-generative-2025/hn.json b/papers/empirical-study-generative-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/energyaware-routing-large-2025/hn.json b/papers/energyaware-routing-large-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/engineering-multiagent-llms-2025/hn.json b/papers/engineering-multiagent-llms-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "39285499",
+ "title": "Show HN: DynamiCrafter: Animating Open-Domain Images with Video Diffusion Priors",
+ "points": 6,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39285499",
+ "created_at": "2024-02-07T07:12:57Z"
+ },
+ {
+ "hn_id": "42793447",
+ "title": "Can LLMs demonstrate behavioral self-awareness?",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42793447",
+ "created_at": "2025-01-22T14:54:07Z"
+ },
+ {
+ "hn_id": "42815497",
+ "title": "Tell me about yourself: LLMs are aware of their learned behaviors",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42815497",
+ "created_at": "2025-01-24T17:44:03Z"
+ },
+ {
+ "hn_id": "38011661",
+ "title": "Monarch Mixer: A Simple Sub-Quadratic GEMM-Based Architecture",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38011661",
+ "created_at": "2023-10-25T11:29:10Z"
+ },
+ {
+ "hn_id": "37939342",
+ "title": "Can Large Language Models Explain Themselves? A Study",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37939342",
+ "created_at": "2023-10-19T06:41:38Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 13,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/enhancing-code-generation-2025/hn.json b/papers/enhancing-code-generation-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/enhancing-llm-code-2025/hn.json b/papers/enhancing-llm-code-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43390400",
+ "title": "Deep Learning Is Not So Mysterious or Different",
+ "points": 485,
+ "comments": 126,
+ "url": "https://news.ycombinator.com/item?id=43390400",
+ "created_at": "2025-03-17T16:47:02Z"
+ },
+ {
+ "hn_id": "45291024",
+ "title": "Launch HN: Cactus (YC S25) – AI inference on smartphones",
+ "points": 123,
+ "comments": 63,
+ "url": "https://news.ycombinator.com/item?id=45291024",
+ "created_at": "2025-09-18T15:40:29Z"
+ },
+ {
+ "hn_id": "44430311",
+ "title": "Small language models are the future of agentic AI",
+ "points": 113,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=44430311",
+ "created_at": "2025-07-01T03:33:49Z"
+ },
+ {
+ "hn_id": "44659764",
+ "title": "Mitigating Tool Squatting and Rug Pull Attacks in Model Context Protocol (MCP)",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44659764",
+ "created_at": "2025-07-23T14:42:26Z"
+ },
+ {
+ "hn_id": "44246361",
+ "title": "Small Language Models Are the Future of Agentic AI",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44246361",
+ "created_at": "2025-06-11T11:16:33Z"
+ },
+ {
+ "hn_id": "44003454",
+ "title": "Twist: Teleoperated Whole-Body Imitation System",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44003454",
+ "created_at": "2025-05-16T09:44:32Z"
+ },
+ {
+ "hn_id": "23087191",
+ "title": "A Survey on Dialog Management: Recent Advances and Challenges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23087191",
+ "created_at": "2020-05-06T01:52:26Z"
+ },
+ {
+ "hn_id": "45549900",
+ "title": "Agentic web browsing can't scale with cloud LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45549900",
+ "created_at": "2025-10-11T15:29:17Z"
+ },
+ {
+ "hn_id": "43291939",
+ "title": "Deep Learning Is Not So Mysterious or Different",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43291939",
+ "created_at": "2025-03-07T17:11:27Z"
+ }
+ ],
+ "top_points": 485,
+ "total_points": 737,
+ "total_comments": 234
+}
+\ No newline at end of file
diff --git a/papers/enhancing-llm-factual-2024/hn.json b/papers/enhancing-llm-factual-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43451552",
+ "title": "Blockchain with Proof of Quantum Work",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43451552",
+ "created_at": "2025-03-23T08:24:58Z"
+ },
+ {
+ "hn_id": "39301136",
+ "title": "Ten Hard Problems in Artificial Intelligence We Must Get Right",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39301136",
+ "created_at": "2024-02-08T12:28:48Z"
+ },
+ {
+ "hn_id": "39173354",
+ "title": "Black-Box Access Is Insufficient for Rigorous AI Audits",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39173354",
+ "created_at": "2024-01-29T06:28:23Z"
+ },
+ {
+ "hn_id": "43424742",
+ "title": "Blockchain with Proof of Quantum Work",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43424742",
+ "created_at": "2025-03-20T15:35:28Z"
+ },
+ {
+ "hn_id": "40260848",
+ "title": "Large Language Models for Data Annotation: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40260848",
+ "created_at": "2024-05-04T22:35:48Z"
+ },
+ {
+ "hn_id": "41504752",
+ "title": "Leveraging Large Language Models for Solving Rare MIP Challenges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41504752",
+ "created_at": "2024-09-10T19:45:16Z"
+ },
+ {
+ "hn_id": "41499290",
+ "title": "State and Action Factorization in Power Grids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41499290",
+ "created_at": "2024-09-10T10:25:47Z"
+ },
+ {
+ "hn_id": "40690995",
+ "title": "Rough Set Improved Therapy-Based Metaverse Assisting System",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40690995",
+ "created_at": "2024-06-15T17:04:37Z"
+ },
+ {
+ "hn_id": "39173902",
+ "title": "AI Auditing: The Broken Bus on the Road to AI Accountability",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39173902",
+ "created_at": "2024-01-29T08:04:17Z"
+ },
+ {
+ "hn_id": "40046815",
+ "title": "Exact analytical algorithm for solvent accessible surface area",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40046815",
+ "created_at": "2024-04-15T23:30:21Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 23,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/enhancing-llmbased-quantum-2025/hn.json b/papers/enhancing-llmbased-quantum-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "27075013",
+ "title": "MarioNette: Self-Supervised Sprite Learning",
+ "points": 47,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27075013",
+ "created_at": "2021-05-07T12:09:34Z"
+ },
+ {
+ "hn_id": "40157571",
+ "title": "Retrieval Head Mechanistically Explains Long-Context Factuality",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40157571",
+ "created_at": "2024-04-25T13:49:36Z"
+ },
+ {
+ "hn_id": "44901674",
+ "title": "An interstellar mission to test astrophysical black holes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44901674",
+ "created_at": "2025-08-14T15:34:05Z"
+ },
+ {
+ "hn_id": "44306921",
+ "title": "Large Language Models – The Future of Fundamental Physics?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44306921",
+ "created_at": "2025-06-18T05:35:09Z"
+ },
+ {
+ "hn_id": "23771623",
+ "title": "Politeness Transfer: A Tag and Generate Approach",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23771623",
+ "created_at": "2020-07-08T16:46:23Z"
+ }
+ ],
+ "top_points": 47,
+ "total_points": 52,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/enterprise-ai-coding-requirements-2026/hn.json b/papers/enterprise-ai-coding-requirements-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/equinox-holistic-fair-2025/hn.json b/papers/equinox-holistic-fair-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "42898914",
+ "title": "Gradual Disempowerment: How Even Incremental AI Progress Poses Existential Risks",
+ "points": 87,
+ "comments": 84,
+ "url": "https://news.ycombinator.com/item?id=42898914",
+ "created_at": "2025-02-01T15:12:22Z"
+ }
+ ],
+ "top_points": 87,
+ "total_points": 87,
+ "total_comments": 84
+}
+\ No newline at end of file
diff --git a/papers/eval-benchmarking-llm-agents-survey-2025/hn.json b/papers/eval-benchmarking-llm-agents-survey-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "44120359",
+ "title": "Diffusion vs. Autoregressive Language Models: A Text Embedding Perspective",
+ "points": 19,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44120359",
+ "created_at": "2025-05-28T20:27:45Z"
+ },
+ {
+ "hn_id": "45472586",
+ "title": "Physics of Learning: A Lagrangian perspective to different learning paradigms",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45472586",
+ "created_at": "2025-10-04T11:38:44Z"
+ },
+ {
+ "hn_id": "36931866",
+ "title": "Universal and Transferable Adversarial Attacks on LLM",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36931866",
+ "created_at": "2023-07-30T15:04:08Z"
+ },
+ {
+ "hn_id": "45418635",
+ "title": "Can LLMs Be Creative? Paper: Combinatorial Creativity: A New Frontier",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45418635",
+ "created_at": "2025-09-29T20:53:22Z"
+ },
+ {
+ "hn_id": "41174642",
+ "title": "Case-Based Reasoning for Explainable Depression Detection on Twitter Using LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41174642",
+ "created_at": "2024-08-06T19:55:38Z"
+ },
+ {
+ "hn_id": "36903968",
+ "title": "Universal and Transferable Adversarial Attacks on Aligned Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36903968",
+ "created_at": "2023-07-28T07:30:39Z"
+ }
+ ],
+ "top_points": 19,
+ "total_points": 29,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/evaluating-diverse-large-2023/hn.json b/papers/evaluating-diverse-large-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38283398",
+ "title": "API-Driven Program Synthesis for Testing Static Typing Implementations",
+ "points": 35,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38283398",
+ "created_at": "2023-11-15T22:19:08Z"
+ },
+ {
+ "hn_id": "42158451",
+ "title": "Convolutional Differentiable Logic Gate Networks",
+ "points": 26,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42158451",
+ "created_at": "2024-11-16T19:10:54Z"
+ },
+ {
+ "hn_id": "39967245",
+ "title": "Formal Aspects of Language Modeling",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39967245",
+ "created_at": "2024-04-08T07:47:56Z"
+ },
+ {
+ "hn_id": "42115169",
+ "title": "Convolutional Differentiable Logic Gate Networks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42115169",
+ "created_at": "2024-11-12T13:04:29Z"
+ },
+ {
+ "hn_id": "34101211",
+ "title": "Will we run out of data?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34101211",
+ "created_at": "2022-12-23T01:17:13Z"
+ },
+ {
+ "hn_id": "25056202",
+ "title": "Learning Autocompletion from Real-World Datasets",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25056202",
+ "created_at": "2020-11-11T07:17:33Z"
+ },
+ {
+ "hn_id": "40939773",
+ "title": "Formal Aspects of Language Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40939773",
+ "created_at": "2024-07-11T19:30:45Z"
+ },
+ {
+ "hn_id": "42258010",
+ "title": "Gradient Boosting Trees and LLMs for Tabular Data Few-Shot Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258010",
+ "created_at": "2024-11-27T17:46:47Z"
+ },
+ {
+ "hn_id": "36985212",
+ "title": "Will we run out of data to train LLMs?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36985212",
+ "created_at": "2023-08-03T12:53:23Z"
+ },
+ {
+ "hn_id": "40610622",
+ "title": "Will we run out of data? Limits of LLM scaling based on human-generated data",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40610622",
+ "created_at": "2024-06-07T17:08:29Z"
+ }
+ ],
+ "top_points": 35,
+ "total_points": 81,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/evaluating-efficiency-source-2024/hn.json b/papers/evaluating-efficiency-source-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40370779",
+ "title": "Simultaneous Many-Row Activation in Off-the-Shelf DRAM Chips",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40370779",
+ "created_at": "2024-05-15T18:44:38Z"
+ },
+ {
+ "hn_id": "39368490",
+ "title": "Keyframer: Empowering Animation Design Using Large Language Models (Apple)",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39368490",
+ "created_at": "2024-02-14T10:48:19Z"
+ },
+ {
+ "hn_id": "40286055",
+ "title": "Forklift: An Extensible Neural Lifter",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40286055",
+ "created_at": "2024-05-07T14:39:26Z"
+ },
+ {
+ "hn_id": "43426799",
+ "title": "Aardvark weather: end-to-end data-driven weather forecasting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43426799",
+ "created_at": "2025-03-20T18:10:12Z"
+ },
+ {
+ "hn_id": "43211832",
+ "title": "Heat as a Witness of Quantum Properties",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43211832",
+ "created_at": "2025-02-28T21:48:33Z"
+ },
+ {
+ "hn_id": "41245268",
+ "title": "Dwellers in the Deep: Biological Consequences of Dark Oxygen",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41245268",
+ "created_at": "2024-08-14T12:25:02Z"
+ },
+ {
+ "hn_id": "40948891",
+ "title": "Fast-moving stars around an intermediate-mass black hole in Omega Centauri",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40948891",
+ "created_at": "2024-07-12T20:03:03Z"
+ },
+ {
+ "hn_id": "39050109",
+ "title": "Mission: Impossible Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39050109",
+ "created_at": "2024-01-19T00:38:50Z"
+ },
+ {
+ "hn_id": "39026660",
+ "title": "Mission: Impossible Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39026660",
+ "created_at": "2024-01-17T12:11:54Z"
+ },
+ {
+ "hn_id": "41284222",
+ "title": "Assessing the Learning Limits of LLMs with Synthetic Impossible Languages",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41284222",
+ "created_at": "2024-08-18T18:27:15Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 29,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/evaluating-embeddable-language-2025/hn.json b/papers/evaluating-embeddable-language-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/evaluating-judges-as-2025/hn.json b/papers/evaluating-judges-as-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40160728",
+ "title": "CatLIP: Clip Vision Accuracy with 2.7x Faster Pre-Training on Web-Scale Data",
+ "points": 48,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=40160728",
+ "created_at": "2024-04-25T17:46:04Z"
+ },
+ {
+ "hn_id": "43686458",
+ "title": "NPB-Rust: NAS Parallel Benchmarks in Rust",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43686458",
+ "created_at": "2025-04-14T21:21:43Z"
+ },
+ {
+ "hn_id": "41517885",
+ "title": "Towards Large Language Models as Copilots for Theorem Proving in Lean",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41517885",
+ "created_at": "2024-09-12T05:34:47Z"
+ },
+ {
+ "hn_id": "40086186",
+ "title": "Toward Self-Improvement of LLMs via Imagination, Searching, and Criticizing",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40086186",
+ "created_at": "2024-04-19T12:51:23Z"
+ },
+ {
+ "hn_id": "43781749",
+ "title": "A Comprehensive Benchmark for C-to-Safe-Rust Transpilation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43781749",
+ "created_at": "2025-04-24T12:08:53Z"
+ },
+ {
+ "hn_id": "44327775",
+ "title": "Approximating Language Model Training Data from Weights",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44327775",
+ "created_at": "2025-06-20T13:56:11Z"
+ },
+ {
+ "hn_id": "44086818",
+ "title": "Gen2seg: Generative Models Enable Generalizable Instance Segmentation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44086818",
+ "created_at": "2025-05-25T10:20:25Z"
+ },
+ {
+ "hn_id": "40139677",
+ "title": "Toward Self-Improvement of LLMs via Imagination, Searching, and Criticizing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40139677",
+ "created_at": "2024-04-24T02:10:20Z"
+ },
+ {
+ "hn_id": "40116933",
+ "title": "Toward Self-Improvement of LLMs via Imagination, Searching, and Criticizing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40116933",
+ "created_at": "2024-04-22T18:02:16Z"
+ },
+ {
+ "hn_id": "45349444",
+ "title": "Seeing Is Deceiving:Mirror-Based Lidar Spoofing for Autonomous Vehicle Deception",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45349444",
+ "created_at": "2025-09-23T16:39:48Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 71,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/evaluating-language-models-2024/hn.json b/papers/evaluating-language-models-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41567138",
+ "title": "Can Generative Multi-Agents Spontaneously Form a Society?",
+ "points": 48,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=41567138",
+ "created_at": "2024-09-17T12:55:14Z"
+ },
+ {
+ "hn_id": "43921813",
+ "title": "Human-Like Episodic Memory for Infinite Context LLMs",
+ "points": 27,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43921813",
+ "created_at": "2025-05-08T00:21:21Z"
+ },
+ {
+ "hn_id": "40021906",
+ "title": "Wu's Method Can Boost AlphaGeometry to Outperform Gold Medalists at IMO Geometry",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40021906",
+ "created_at": "2024-04-13T10:06:11Z"
+ },
+ {
+ "hn_id": "24247130",
+ "title": "Manticore: A 4096-core RISC-V Chiplet Arch for Ultra-efficient FP Computing",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24247130",
+ "created_at": "2020-08-22T20:45:30Z"
+ },
+ {
+ "hn_id": "40015493",
+ "title": "Show HN: Symbolic AI at Silver Medal, Boosts AlphaGeometry to Beat IMO Geo Gold",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40015493",
+ "created_at": "2024-04-12T17:36:41Z"
+ },
+ {
+ "hn_id": "39691144",
+ "title": "Adding NVMe SSDs to Enable and Accelerate 100B Model Fine-Tuning on a Single GPU",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39691144",
+ "created_at": "2024-03-13T13:44:20Z"
+ },
+ {
+ "hn_id": "41317807",
+ "title": "Human-Like Episodic Memory for Infinite Context LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41317807",
+ "created_at": "2024-08-22T07:52:12Z"
+ },
+ {
+ "hn_id": "40001562",
+ "title": "Symbolic AI at Silver Medal, Boosts AlphaGeometry to Beat Gold at IMO Geometry",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40001562",
+ "created_at": "2024-04-11T12:53:16Z"
+ },
+ {
+ "hn_id": "37165307",
+ "title": "Taboo and Collaborative Knowledge Production: Evidence from Wikipedia",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37165307",
+ "created_at": "2023-08-17T17:34:16Z"
+ },
+ {
+ "hn_id": "24208779",
+ "title": "Manticore: A 4096-core RISC-V Chiplet Arch for Ultra-efficient FP Computing",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24208779",
+ "created_at": "2020-08-19T10:00:12Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 109,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/evaluating-llm-reasoning-2025/hn.json b/papers/evaluating-llm-reasoning-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45838564",
+ "title": "LLMs encode how difficult problems are",
+ "points": 174,
+ "comments": 38,
+ "url": "https://news.ycombinator.com/item?id=45838564",
+ "created_at": "2025-11-06T18:29:03Z"
+ },
+ {
+ "hn_id": "46370038",
+ "title": "A Search for Radio Technosignatures from Interstellar Object 3I/Atlas",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46370038",
+ "created_at": "2025-12-23T22:07:08Z"
+ },
+ {
+ "hn_id": "46425525",
+ "title": "Optimal Software Pipelining and Warp Specialization for Tensor Core GPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46425525",
+ "created_at": "2025-12-29T20:54:07Z"
+ },
+ {
+ "hn_id": "45751115",
+ "title": "DeepSeek-OCR: Contexts Optical Compression",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45751115",
+ "created_at": "2025-10-29T18:33:29Z"
+ },
+ {
+ "hn_id": "46069881",
+ "title": "Conformal Prediction for Compositional Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46069881",
+ "created_at": "2025-11-27T15:03:53Z"
+ },
+ {
+ "hn_id": "38152071",
+ "title": "Reality3DSketch: Rapid 3D Modeling of Objects from Single Freehand Sketches",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38152071",
+ "created_at": "2023-11-05T15:41:49Z"
+ },
+ {
+ "hn_id": "32056080",
+ "title": "Data-Driven Offline Optimization for Architecting Hardware Accelerators",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32056080",
+ "created_at": "2022-07-11T13:48:52Z"
+ },
+ {
+ "hn_id": "46021507",
+ "title": "World-in-World: World Models in a Closed-Loop World",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46021507",
+ "created_at": "2025-11-23T07:25:35Z"
+ },
+ {
+ "hn_id": "46369891",
+ "title": "The size of 3I/ATLAS from non-gravitational acceleration",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46369891",
+ "created_at": "2025-12-23T21:51:08Z"
+ },
+ {
+ "hn_id": "38101172",
+ "title": "Locomotion Through Step Placement with Straight Legs and Rolling Contacts",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38101172",
+ "created_at": "2023-11-01T16:57:11Z"
+ }
+ ],
+ "top_points": 174,
+ "total_points": 190,
+ "total_comments": 40
+}
+\ No newline at end of file
diff --git a/papers/evaluating-mitigating-errors-2025/hn.json b/papers/evaluating-mitigating-errors-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45381333",
+ "title": "Federation of Agents: Semantics-Aware, Large-Scale Communication Fabric",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45381333",
+ "created_at": "2025-09-26T01:02:53Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/evaluating-reducing-deceptive-2025/hn.json b/papers/evaluating-reducing-deceptive-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46727603",
+ "title": "Not all Chess960 positions are equally complex",
+ "points": 57,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=46727603",
+ "created_at": "2026-01-23T02:27:30Z"
+ },
+ {
+ "hn_id": "46574101",
+ "title": "Not all Chess960 positions are equally complex",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46574101",
+ "created_at": "2026-01-11T09:52:04Z"
+ },
+ {
+ "hn_id": "38083568",
+ "title": "OpenCog Hyperon: A Framework for AGI at the Human Level and Beyond",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38083568",
+ "created_at": "2023-10-31T12:13:24Z"
+ },
+ {
+ "hn_id": "46586213",
+ "title": "Not all Chess960 positions are equally complex",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46586213",
+ "created_at": "2026-01-12T09:46:37Z"
+ }
+ ],
+ "top_points": 57,
+ "total_points": 62,
+ "total_comments": 28
+}
+\ No newline at end of file
diff --git a/papers/evaluating-robustness-chinchilla-2025/hn.json b/papers/evaluating-robustness-chinchilla-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45417771",
+ "title": "What the F*ck Is Artificial General Intelligence?",
+ "points": 59,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=45417771",
+ "created_at": "2025-09-29T19:31:22Z"
+ },
+ {
+ "hn_id": "43622263",
+ "title": "GIScience in the Era of Artificial Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43622263",
+ "created_at": "2025-04-08T14:33:08Z"
+ },
+ {
+ "hn_id": "43548425",
+ "title": "What the Fuck Is Artificial General Intelligence?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43548425",
+ "created_at": "2025-04-01T16:05:49Z"
+ }
+ ],
+ "top_points": 59,
+ "total_points": 61,
+ "total_comments": 45
+}
+\ No newline at end of file
diff --git a/papers/evaluation-code-llms-2024/hn.json b/papers/evaluation-code-llms-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "24767717",
+ "title": "DiffTune: Optimizing CPU Simulator Parameters with Differentiable Surrogates",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24767717",
+ "created_at": "2020-10-13T17:29:40Z"
+ },
+ {
+ "hn_id": "45533732",
+ "title": "Agentic Context Engineering",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45533732",
+ "created_at": "2025-10-09T22:30:41Z"
+ },
+ {
+ "hn_id": "45522649",
+ "title": "Agentic Context Engineering: Evolving Contexts for Self-Improving LMs",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45522649",
+ "created_at": "2025-10-09T01:56:20Z"
+ },
+ {
+ "hn_id": "42367885",
+ "title": "Semantic Retrieval at Walmart",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42367885",
+ "created_at": "2024-12-09T16:54:59Z"
+ },
+ {
+ "hn_id": "45578786",
+ "title": "Agentic Context Engineering: Evolving Contexts for Self-Improving LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45578786",
+ "created_at": "2025-10-14T11:35:40Z"
+ },
+ {
+ "hn_id": "45554565",
+ "title": "Agentic Context Engineering: Evolving Contexts for SelfImproving Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45554565",
+ "created_at": "2025-10-12T02:15:40Z"
+ },
+ {
+ "hn_id": "45516763",
+ "title": "Agentic Context Engineering: Evolving Contexts for SelfImproving Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45516763",
+ "created_at": "2025-10-08T14:44:57Z"
+ },
+ {
+ "hn_id": "34409379",
+ "title": "Red-Teaming the Stable Diffusion Safety Filter",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34409379",
+ "created_at": "2023-01-17T05:12:51Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 22,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/evaluation-llm-code-2024/hn.json b/papers/evaluation-llm-code-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "39274918",
+ "title": "Better Call GPT: Comparing large language models against lawyers [pdf]",
+ "points": 389,
+ "comments": 264,
+ "url": "https://news.ycombinator.com/item?id=39274918",
+ "created_at": "2024-02-06T15:04:39Z"
+ },
+ {
+ "hn_id": "42021222",
+ "title": "Fast and Accurate Deep Reconfigurable Spiking Inference Accelerator Architecture",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42021222",
+ "created_at": "2024-11-01T20:28:32Z"
+ },
+ {
+ "hn_id": "41926182",
+ "title": "We discovered a way to measure LLM bias while building a recruitment tool",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41926182",
+ "created_at": "2024-10-23T15:41:33Z"
+ },
+ {
+ "hn_id": "42576715",
+ "title": "Reinforcement Learning for Multi-Intersection Traffic Signal Control",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42576715",
+ "created_at": "2025-01-02T17:51:07Z"
+ },
+ {
+ "hn_id": "38177348",
+ "title": "CleanCoNLL: A Nearly Noise-Free Named Entity Recognition Dataset",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38177348",
+ "created_at": "2023-11-07T14:47:31Z"
+ }
+ ],
+ "top_points": 389,
+ "total_points": 394,
+ "total_comments": 265
+}
+\ No newline at end of file
diff --git a/papers/everything-you-wanted-2025/hn.json b/papers/everything-you-wanted-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "27146649",
+ "title": "Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and Gauges",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27146649",
+ "created_at": "2021-05-13T20:00:26Z"
+ },
+ {
+ "hn_id": "45166677",
+ "title": "Geometric Deep Learning Grids, Groups, Graphs, Geodesics, and Gauges [pdf]",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45166677",
+ "created_at": "2025-09-08T10:39:40Z"
+ },
+ {
+ "hn_id": "42855137",
+ "title": "Why a Race to Artificial Superintelligence Is Self-Defeating [pdf]",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42855137",
+ "created_at": "2025-01-28T17:27:43Z"
+ },
+ {
+ "hn_id": "43788230",
+ "title": "Show HN: A new way to verify remote AI model execution (no TEEs, no ZK)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43788230",
+ "created_at": "2025-04-24T22:31:33Z"
+ },
+ {
+ "hn_id": "44796040",
+ "title": "From Large to Super-Tiny: End-to-End Optimization for Cost-Efficient LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44796040",
+ "created_at": "2025-08-05T09:39:59Z"
+ },
+ {
+ "hn_id": "44968425",
+ "title": "Consumer Autonomy or Illusion? Rethinking Consumer Agency in Age of Algorithms",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44968425",
+ "created_at": "2025-08-21T02:16:50Z"
+ },
+ {
+ "hn_id": "45483510",
+ "title": "A Convex Formulation of Compliant Contact Between Filaments and Rigid Bodies",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45483510",
+ "created_at": "2025-10-05T17:33:41Z"
+ },
+ {
+ "hn_id": "42836005",
+ "title": "Autonomy-of-Experts Models (ArXiv)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42836005",
+ "created_at": "2025-01-27T00:43:16Z"
+ },
+ {
+ "hn_id": "42008373",
+ "title": "Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and Gauges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42008373",
+ "created_at": "2024-10-31T16:19:04Z"
+ },
+ {
+ "hn_id": "30395596",
+ "title": "Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and Gauges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30395596",
+ "created_at": "2022-02-19T09:10:06Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 23,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/evidence-phase-transitions-2025/hn.json b/papers/evidence-phase-transitions-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "33793174",
+ "title": "Program Repair",
+ "points": 25,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=33793174",
+ "created_at": "2022-11-29T20:56:48Z"
+ },
+ {
+ "hn_id": "38422264",
+ "title": "Prompting Frameworks for Large Language Models: A Survey",
+ "points": 25,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=38422264",
+ "created_at": "2023-11-26T15:22:00Z"
+ },
+ {
+ "hn_id": "46665309",
+ "title": "Reverse Engineering the ESP32-C3 Wi-Fi Drivers for Static Worst-Case Analysis",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46665309",
+ "created_at": "2026-01-18T06:27:12Z"
+ },
+ {
+ "hn_id": "33745326",
+ "title": "Program Repair",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33745326",
+ "created_at": "2022-11-25T18:26:49Z"
+ },
+ {
+ "hn_id": "42911811",
+ "title": "Preserving Culinary Traditions. A Crowdsourced Digital Collection of Cookbooks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42911811",
+ "created_at": "2025-02-02T21:04:34Z"
+ },
+ {
+ "hn_id": "38391666",
+ "title": "Prompting Frameworks for Large Language Models: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38391666",
+ "created_at": "2023-11-23T11:28:55Z"
+ },
+ {
+ "hn_id": "42204850",
+ "title": "SEFD: Semantic-Enhanced Framework for Detecting LLM-Generated Text",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42204850",
+ "created_at": "2024-11-21T14:54:19Z"
+ },
+ {
+ "hn_id": "38473609",
+ "title": "AviationGPT: A Large Language Model for the Aviation Domain",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38473609",
+ "created_at": "2023-11-30T14:00:57Z"
+ },
+ {
+ "hn_id": "38388226",
+ "title": "Prompting Frameworks for Large Language Models: A Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38388226",
+ "created_at": "2023-11-23T01:55:17Z"
+ }
+ ],
+ "top_points": 25,
+ "total_points": 71,
+ "total_comments": 10
+}
+\ No newline at end of file
diff --git a/papers/evolving-ai-longitudinal-2026/hn.json b/papers/evolving-ai-longitudinal-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46676395",
+ "title": "Too Helpful to Be Safe: User-Mediated Attacks on Planning and Web-Use Agents",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46676395",
+ "created_at": "2026-01-19T08:39:39Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/evolving-excellence-automated-2025/hn.json b/papers/evolving-excellence-automated-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "25471098",
+ "title": "Causality Is Graphically Simple",
+ "points": 90,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=25471098",
+ "created_at": "2020-12-18T19:48:36Z"
+ },
+ {
+ "hn_id": "45574705",
+ "title": "StreamingVLM: Real-Time Understanding for Infinite Video Streams",
+ "points": 33,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45574705",
+ "created_at": "2025-10-14T00:02:18Z"
+ },
+ {
+ "hn_id": "45591789",
+ "title": "StreamingVLM: Real-Time Understanding for Infinite Video Streams",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45591789",
+ "created_at": "2025-10-15T13:02:15Z"
+ },
+ {
+ "hn_id": "42362464",
+ "title": "RoboHanger: Learning Generalizable Robotic Hanger Insertion for Diverse Garments",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42362464",
+ "created_at": "2024-12-09T02:05:35Z"
+ }
+ ],
+ "top_points": 90,
+ "total_points": 125,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/experimental-evidence-productivity-2023/hn.json b/papers/experimental-evidence-productivity-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/explainable-finegrained-safeguarding-2025/hn.json b/papers/explainable-finegrained-safeguarding-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45657595",
+ "title": "Binary Retrieval-Augmented Reward Mitigates Hallucinations",
+ "points": 44,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=45657595",
+ "created_at": "2025-10-21T16:14:28Z"
+ },
+ {
+ "hn_id": "43198812",
+ "title": "Symmetries of Living Systems",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43198812",
+ "created_at": "2025-02-27T21:41:54Z"
+ },
+ {
+ "hn_id": "45664388",
+ "title": "Query Decomposition for RAG",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45664388",
+ "created_at": "2025-10-22T02:47:42Z"
+ }
+ ],
+ "top_points": 44,
+ "total_points": 53,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/exploring-aiaugmented-sensemaking-2026/hn.json b/papers/exploring-aiaugmented-sensemaking-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/exploring-dataefficient-adaptation-2024/hn.json b/papers/exploring-dataefficient-adaptation-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39651926",
+ "title": "An all-optical general-purpose CPU and optical computer architecture",
+ "points": 197,
+ "comments": 103,
+ "url": "https://news.ycombinator.com/item?id=39651926",
+ "created_at": "2024-03-09T14:49:53Z"
+ },
+ {
+ "hn_id": "33426789",
+ "title": "Yoneda Hacking: The Algebra of Attacker Actions",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33426789",
+ "created_at": "2022-11-01T20:10:20Z"
+ },
+ {
+ "hn_id": "42496507",
+ "title": "Online Advertising Is a Regrettable Necessity",
+ "points": 6,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=42496507",
+ "created_at": "2024-12-23T18:27:49Z"
+ },
+ {
+ "hn_id": "41961564",
+ "title": "Easy real-time collision detection",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41961564",
+ "created_at": "2024-10-27T11:06:23Z"
+ },
+ {
+ "hn_id": "39610408",
+ "title": "Polyamorous Scheduling is NP-hard",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39610408",
+ "created_at": "2024-03-05T23:27:01Z"
+ },
+ {
+ "hn_id": "39329353",
+ "title": "Training microrobots to swim by a large language model",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39329353",
+ "created_at": "2024-02-10T19:21:39Z"
+ },
+ {
+ "hn_id": "41537027",
+ "title": "Towards Battery-Free Wireless Sensing via Radio-Frequency Energy Harvesting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41537027",
+ "created_at": "2024-09-14T02:26:33Z"
+ },
+ {
+ "hn_id": "39352140",
+ "title": "Detecting Multimedia Generated by Large AI Models: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39352140",
+ "created_at": "2024-02-12T23:36:45Z"
+ },
+ {
+ "hn_id": "45763351",
+ "title": "VaultDB: A Real-World Pilot of SMPC Within a Clinical Research Network",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45763351",
+ "created_at": "2025-10-30T18:24:42Z"
+ },
+ {
+ "hn_id": "41981519",
+ "title": "Easy real-time collision detection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41981519",
+ "created_at": "2024-10-29T09:41:11Z"
+ }
+ ],
+ "top_points": 197,
+ "total_points": 227,
+ "total_comments": 106
+}
+\ No newline at end of file
diff --git a/papers/exploring-large-language-2024/hn.json b/papers/exploring-large-language-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "39294383",
+ "title": "Escalation Risks from Language Models in Military and Diplomatic Decision-Making",
+ "points": 52,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=39294383",
+ "created_at": "2024-02-07T21:12:01Z"
+ },
+ {
+ "hn_id": "39279295",
+ "title": "Escalation Risks from Language Models in Military and Diplomatic Decision-Making",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39279295",
+ "created_at": "2024-02-06T19:30:13Z"
+ }
+ ],
+ "top_points": 52,
+ "total_points": 54,
+ "total_comments": 12
+}
+\ No newline at end of file
diff --git a/papers/exploring-parameterefficient-finetuning-2023/hn.json b/papers/exploring-parameterefficient-finetuning-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "32632312",
+ "title": "Exploring the Role of the Cybercrime Underground in the Russia-Ukraine Conflict",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32632312",
+ "created_at": "2022-08-28T21:36:55Z"
+ },
+ {
+ "hn_id": "35662520",
+ "title": "Learning to Program with Natural Language",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35662520",
+ "created_at": "2023-04-22T01:45:40Z"
+ },
+ {
+ "hn_id": "37866902",
+ "title": "Getting Bored of Cyberwar",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37866902",
+ "created_at": "2023-10-13T05:03:06Z"
+ },
+ {
+ "hn_id": "37232173",
+ "title": "GPT-NER: Named Entity Recognition via Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37232173",
+ "created_at": "2023-08-23T05:23:52Z"
+ },
+ {
+ "hn_id": "37168933",
+ "title": "Fast as Chita: Neural Network Pruning with Combinatorial Optimization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37168933",
+ "created_at": "2023-08-17T22:16:16Z"
+ },
+ {
+ "hn_id": "35984221",
+ "title": "SLiC-HF: Sequence Likelihood Calibration with Human Feedback",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35984221",
+ "created_at": "2023-05-18T04:48:32Z"
+ },
+ {
+ "hn_id": "35263649",
+ "title": "A comprehensive capacity analysis of GPT-3 and GPT-3.5 models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35263649",
+ "created_at": "2023-03-22T16:39:00Z"
+ },
+ {
+ "hn_id": "37232871",
+ "title": "Vanilla Transformer SOTA for Traffic Forecasting [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37232871",
+ "created_at": "2023-08-23T07:33:46Z"
+ },
+ {
+ "hn_id": "37958375",
+ "title": "Revealing the structure of language model capabilities",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37958375",
+ "created_at": "2023-10-20T16:40:14Z"
+ },
+ {
+ "hn_id": "35670419",
+ "title": "Fully Autonomous Programming with Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35670419",
+ "created_at": "2023-04-22T20:05:33Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 22,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/explosive-growth-from-2023/hn.json b/papers/explosive-growth-from-2023/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "44349782",
+ "title": "Explosive Growth from AI Automation: A Review of the Arguments",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44349782",
+ "created_at": "2025-06-22T19:54:31Z"
+ },
+ {
+ "hn_id": "35699839",
+ "title": "GPT4 can surpass humans in Theory of Mind test, with appropriate prompt",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35699839",
+ "created_at": "2023-04-25T12:59:15Z"
+ },
+ {
+ "hn_id": "36486250",
+ "title": "Detectability of Supermassive Dark Stars with the Roman Space Telescope",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36486250",
+ "created_at": "2023-06-26T21:40:38Z"
+ },
+ {
+ "hn_id": "36441038",
+ "title": "A Simple and Effective Pruning Approach for Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36441038",
+ "created_at": "2023-06-23T00:13:33Z"
+ },
+ {
+ "hn_id": "36176290",
+ "title": "LLM Itself Can Read and Generate CXR Images",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36176290",
+ "created_at": "2023-06-03T12:55:40Z"
+ },
+ {
+ "hn_id": "41629931",
+ "title": "LLM-Powered Text Simulation Attack Against ID-Free Recommender Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41629931",
+ "created_at": "2024-09-23T20:07:05Z"
+ },
+ {
+ "hn_id": "35745610",
+ "title": "Boosting Theory-of-Mind Performance in Large Language Models via Prompting",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=35745610",
+ "created_at": "2023-04-28T19:01:15Z"
+ },
+ {
+ "hn_id": "41601215",
+ "title": "Ranking of popular image generation AI models (incl. Flux) from 2M votes",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41601215",
+ "created_at": "2024-09-20T12:13:32Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 14,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/f2a-innovative-approach-2024/hn.json b/papers/f2a-innovative-approach-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "24805792",
+ "title": "Refinement Types: A Tutorial",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24805792",
+ "created_at": "2020-10-16T22:55:03Z"
+ },
+ {
+ "hn_id": "41913877",
+ "title": "Bypassing the Popularity Bias: Repurposing Models for Long-Tail Recommendation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41913877",
+ "created_at": "2024-10-22T13:11:35Z"
+ },
+ {
+ "hn_id": "24882449",
+ "title": "The Nvidia PilotNet Experiments",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24882449",
+ "created_at": "2020-10-24T22:35:53Z"
+ },
+ {
+ "hn_id": "42978639",
+ "title": "DocVLM: Make Your VLM an Efficient Reader",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42978639",
+ "created_at": "2025-02-07T23:20:57Z"
+ },
+ {
+ "hn_id": "42645393",
+ "title": "Searching Latent Program Spaces",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42645393",
+ "created_at": "2025-01-09T13:46:21Z"
+ },
+ {
+ "hn_id": "38004580",
+ "title": "Gesture Recognition for FMCW Radar on the Edge",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38004580",
+ "created_at": "2023-10-24T19:59:44Z"
+ },
+ {
+ "hn_id": "24800126",
+ "title": "Refinement Types: A Tutorial",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24800126",
+ "created_at": "2020-10-16T12:29:06Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 13,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/failure-modes-llm-2025/hn.json b/papers/failure-modes-llm-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46055177",
+ "title": "Image Diffusion Models Exhibit Emergent Temporal Propagation in Videos",
+ "points": 124,
+ "comments": 22,
+ "url": "https://news.ycombinator.com/item?id=46055177",
+ "created_at": "2025-11-26T07:55:49Z"
+ },
+ {
+ "hn_id": "44313278",
+ "title": "S1: Simple Test-Time Scaling",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44313278",
+ "created_at": "2025-06-18T21:06:55Z"
+ },
+ {
+ "hn_id": "43005221",
+ "title": "s1: Simple Test-Time Scaling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43005221",
+ "created_at": "2025-02-10T21:13:00Z"
+ },
+ {
+ "hn_id": "42979455",
+ "title": "Test-time scaling new approach: extra test-time compute improves LLM reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42979455",
+ "created_at": "2025-02-08T01:23:41Z"
+ }
+ ],
+ "top_points": 124,
+ "total_points": 131,
+ "total_comments": 22
+}
+\ No newline at end of file
diff --git a/papers/fair-comprehensive-evaluation-2026/hn.json b/papers/fair-comprehensive-evaluation-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/fara7b-efficient-agentic-2025/hn.json b/papers/fara7b-efficient-agentic-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46650465",
+ "title": "Show HN: Agint Flow – design software as a graph, then compile the graph to code",
+ "points": 5,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46650465",
+ "created_at": "2026-01-16T18:56:09Z"
+ },
+ {
+ "hn_id": "46380330",
+ "title": "Breakthrough Listen Observations of 3I/Atlas with the Green Bank Telescope",
+ "points": 3,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46380330",
+ "created_at": "2025-12-24T23:14:21Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 8,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/fast-controlled-generation-2025/hn.json b/papers/fast-controlled-generation-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35472750",
+ "title": "A radiation hard RISC-V microprocessor for high-energy physics applications",
+ "points": 111,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=35472750",
+ "created_at": "2023-04-06T18:54:30Z"
+ },
+ {
+ "hn_id": "44397503",
+ "title": "Exploiting Local KV Cache Asymmetry for Long-Context LLMs",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44397503",
+ "created_at": "2025-06-27T15:22:27Z"
+ },
+ {
+ "hn_id": "39976086",
+ "title": "Physics of Language Models: Part 3.3, Knowledge Capacity Scaling Laws",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39976086",
+ "created_at": "2024-04-09T03:56:53Z"
+ },
+ {
+ "hn_id": "47104697",
+ "title": "Reasoning Models Fabricate 75% of Their Explanations (ArXiv:2505.05410)",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47104697",
+ "created_at": "2026-02-21T21:01:00Z"
+ },
+ {
+ "hn_id": "44211549",
+ "title": "Oracular Programming: A Modular Foundation for Building LLM-Enabled Software",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44211549",
+ "created_at": "2025-06-07T18:30:04Z"
+ },
+ {
+ "hn_id": "43975695",
+ "title": "AWRS SMC: Fast new algorithm for guiding LLMs as Bayesian inference",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43975695",
+ "created_at": "2025-05-13T17:50:54Z"
+ },
+ {
+ "hn_id": "43949744",
+ "title": "Reasoning Models Don't Always Say What They Think",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43949744",
+ "created_at": "2025-05-10T23:07:01Z"
+ },
+ {
+ "hn_id": "45274922",
+ "title": "Candidates evoke identity and issues on TikTok",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45274922",
+ "created_at": "2025-09-17T12:15:44Z"
+ },
+ {
+ "hn_id": "44028643",
+ "title": "Reasoning Models Don't Always Say What They Think",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44028643",
+ "created_at": "2025-05-19T11:29:32Z"
+ },
+ {
+ "hn_id": "43726013",
+ "title": "Parameter-Efficient Fine-Tuning of LLMs for Personality Detection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43726013",
+ "created_at": "2025-04-18T08:06:49Z"
+ }
+ ],
+ "top_points": 111,
+ "total_points": 138,
+ "total_comments": 47
+}
+\ No newline at end of file
diff --git a/papers/fast-inference-from-2022/hn.json b/papers/fast-inference-from-2022/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "44830408",
+ "title": "Flipper Zero dark web firmware bypasses rolling code security",
+ "points": 486,
+ "comments": 315,
+ "url": "https://news.ycombinator.com/item?id=44830408",
+ "created_at": "2025-08-07T21:10:42Z"
+ },
+ {
+ "hn_id": "42217418",
+ "title": "Samurai: Adapting Segment Anything Model for Zero-Shot Visual Tracking",
+ "points": 55,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42217418",
+ "created_at": "2024-11-22T21:14:30Z"
+ },
+ {
+ "hn_id": "46099881",
+ "title": "Training Foundation Models on a Full-Stack AMD Platform",
+ "points": 26,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46099881",
+ "created_at": "2025-11-30T20:02:36Z"
+ },
+ {
+ "hn_id": "37387448",
+ "title": "Fast Inference from Transformers via Speculative Decoding",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=37387448",
+ "created_at": "2023-09-05T03:17:05Z"
+ },
+ {
+ "hn_id": "46071379",
+ "title": "Training Foundation Models on a Full-Stack AMD Platform",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46071379",
+ "created_at": "2025-11-27T17:28:29Z"
+ }
+ ],
+ "top_points": 486,
+ "total_points": 571,
+ "total_comments": 318
+}
+\ No newline at end of file
diff --git a/papers/featurizeddecomposition-join-lowcost-2025/hn.json b/papers/featurizeddecomposition-join-lowcost-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "45529216",
+ "title": "DeepMind's paper reveals Google's new direction on RAG: In-Context Retreival",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45529216",
+ "created_at": "2025-10-09T15:38:33Z"
+ },
+ {
+ "hn_id": "42418821",
+ "title": "Specifications: The missing link to make development of LLM an eng discipline",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42418821",
+ "created_at": "2024-12-14T19:07:39Z"
+ },
+ {
+ "hn_id": "33980774",
+ "title": "Graph algorithms for predicting subcellular localization at the pathway level",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33980774",
+ "created_at": "2022-12-14T06:51:58Z"
+ },
+ {
+ "hn_id": "33453848",
+ "title": "The friendship paradox in real and model networks (2020)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33453848",
+ "created_at": "2022-11-03T16:52:43Z"
+ },
+ {
+ "hn_id": "29539537",
+ "title": "Internet, on the Ground by Nick Merrill",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29539537",
+ "created_at": "2021-12-13T13:49:47Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 11,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/federate-router-learning-2026/hn.json b/papers/federate-router-learning-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46925532",
+ "title": "Convergent Discovery of Critical Phenomena Mathematics Across Disciplines",
+ "points": 4,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46925532",
+ "created_at": "2026-02-07T17:16:44Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/first-look-at-2024/hn.json b/papers/first-look-at-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40099807",
+ "title": "How to avoid machine learning pitfalls",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40099807",
+ "created_at": "2024-04-20T18:44:43Z"
+ },
+ {
+ "hn_id": "28100666",
+ "title": "How to avoid machine learning pitfalls: a guide for academic researchers",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28100666",
+ "created_at": "2021-08-07T18:16:43Z"
+ },
+ {
+ "hn_id": "40686765",
+ "title": "Converting In-Context Learning to Weights in Linearized-Attention Transformers",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40686765",
+ "created_at": "2024-06-15T01:28:23Z"
+ },
+ {
+ "hn_id": "32344842",
+ "title": "On the independence between consciousness and computational intelligence",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=32344842",
+ "created_at": "2022-08-04T16:16:07Z"
+ },
+ {
+ "hn_id": "28106281",
+ "title": "How to avoid machine learning pitfalls: a guide for academic researchers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28106281",
+ "created_at": "2021-08-08T12:43:38Z"
+ },
+ {
+ "hn_id": "28105257",
+ "title": "How to avoid machine learning pitfalls: a guide for academic researchers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28105257",
+ "created_at": "2021-08-08T09:10:08Z"
+ },
+ {
+ "hn_id": "28088621",
+ "title": "Poison Ink: Robust and Invisible Backdoor Attack",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28088621",
+ "created_at": "2021-08-06T15:36:58Z"
+ },
+ {
+ "hn_id": "35087020",
+ "title": "How to avoid machine learning pitfalls: a guide for academic researchers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35087020",
+ "created_at": "2023-03-09T21:32:21Z"
+ },
+ {
+ "hn_id": "28088769",
+ "title": "A Survey of Honeypots and Honeynets for Internet of Things",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28088769",
+ "created_at": "2021-08-06T15:45:56Z"
+ },
+ {
+ "hn_id": "44197658",
+ "title": "Quantum Mixed-State Self-Attention Network",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44197658",
+ "created_at": "2025-06-06T03:44:14Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 31,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/five-fatal-assumptions-2026/hn.json b/papers/five-fatal-assumptions-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47279778",
+ "title": "Nested Training for Mutual Adaptation in Human-AI Teaming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47279778",
+ "created_at": "2026-03-06T19:21:19Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/flockvote-llmempowered-agentbased-2025/hn.json b/papers/flockvote-llmempowered-agentbased-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "10762409",
+ "title": "Scientific publications should be anonymous",
+ "points": 128,
+ "comments": 76,
+ "url": "https://news.ycombinator.com/item?id=10762409",
+ "created_at": "2015-12-19T02:50:25Z"
+ },
+ {
+ "hn_id": "31318574",
+ "title": "Flares from black hole binaries: black hole shadows via light-curve tomography",
+ "points": 43,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=31318574",
+ "created_at": "2022-05-09T19:24:38Z"
+ },
+ {
+ "hn_id": "29549353",
+ "title": "Self-attention Does Not Need O(n^2) Memory",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29549353",
+ "created_at": "2021-12-14T08:01:16Z"
+ },
+ {
+ "hn_id": "25405164",
+ "title": "Emergent Quantumness in Neural Networks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25405164",
+ "created_at": "2020-12-13T08:33:43Z"
+ },
+ {
+ "hn_id": "46720522",
+ "title": "Accurate and efficient thermal modeling for 2.5D/3D heterogeneous chiplets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46720522",
+ "created_at": "2026-01-22T15:29:20Z"
+ },
+ {
+ "hn_id": "47240426",
+ "title": "Learning-Based Multi-Stage Strategy for Aircraft to Evade Missile",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47240426",
+ "created_at": "2026-03-03T23:09:24Z"
+ },
+ {
+ "hn_id": "29576916",
+ "title": "Self-Attention does not need O(n^2) Memory",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29576916",
+ "created_at": "2021-12-16T10:35:59Z"
+ }
+ ],
+ "top_points": 128,
+ "total_points": 180,
+ "total_comments": 77
+}
+\ No newline at end of file
diff --git a/papers/flowsteer-interactive-agentic-2026/hn.json b/papers/flowsteer-interactive-agentic-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/forgetful-but-faithful-2025/hn.json b/papers/forgetful-but-faithful-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "45963729",
+ "title": "The Fundamental Limits of LLMs at Scale",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45963729",
+ "created_at": "2025-11-18T11:26:02Z"
+ },
+ {
+ "hn_id": "43193918",
+ "title": "Ringworlds and Dyson spheres can be stable",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43193918",
+ "created_at": "2025-02-27T12:48:58Z"
+ },
+ {
+ "hn_id": "46341968",
+ "title": "Distributional AGI Safety (DeepMind)",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46341968",
+ "created_at": "2025-12-21T03:25:58Z"
+ },
+ {
+ "hn_id": "47097399",
+ "title": "The Fundamental Limits of LLMs at Scale",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47097399",
+ "created_at": "2026-02-21T04:07:37Z"
+ },
+ {
+ "hn_id": "46344905",
+ "title": "Distributional AGI Safety",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46344905",
+ "created_at": "2025-12-21T14:01:56Z"
+ },
+ {
+ "hn_id": "43148731",
+ "title": "None of the Others: General Technique to Distinguish Reasoning from Memorization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43148731",
+ "created_at": "2025-02-23T12:12:21Z"
+ },
+ {
+ "hn_id": "38818811",
+ "title": "Johnsen-Rahbek Capstan Clutch: A High Torque Electrostatic Clutch",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38818811",
+ "created_at": "2023-12-30T20:32:13Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 26,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/forgetting-forget-attention-2025/hn.json b/papers/forgetting-forget-attention-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "45653884",
+ "title": "Evaluating Agentic Cybersecurity in Attack/Defense CTFs: Offensive Is Not Better",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45653884",
+ "created_at": "2025-10-21T09:08:37Z"
+ },
+ {
+ "hn_id": "41326321",
+ "title": "Controlled Decoding from Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41326321",
+ "created_at": "2024-08-23T05:03:42Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/formal-verification-llmgenerated-2025/hn.json b/papers/formal-verification-llmgenerated-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "44268286",
+ "title": "Geometry from Quantum Temporal Correlations",
+ "points": 60,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=44268286",
+ "created_at": "2025-06-13T13:21:47Z"
+ },
+ {
+ "hn_id": "43847316",
+ "title": "EDGS: Eliminating Densification for Efficient Convergence of 3DGS",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43847316",
+ "created_at": "2025-04-30T16:16:24Z"
+ },
+ {
+ "hn_id": "43844343",
+ "title": "Let Me Grok for You: Accelerating Grokking via Embedding Transfer",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43844343",
+ "created_at": "2025-04-30T12:38:42Z"
+ },
+ {
+ "hn_id": "36321227",
+ "title": "Correct Compilation of Semiring Contractions (2022)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36321227",
+ "created_at": "2023-06-14T03:53:22Z"
+ },
+ {
+ "hn_id": "27997501",
+ "title": "So you want to analyze Scheme programs with Datalog?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27997501",
+ "created_at": "2021-07-29T15:13:22Z"
+ },
+ {
+ "hn_id": "43182283",
+ "title": "Demonstrating specification gaming in reasoning models",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43182283",
+ "created_at": "2025-02-26T09:49:49Z"
+ },
+ {
+ "hn_id": "44465492",
+ "title": "Few-Shot Learning for Industrial Time Series: Screw-Fastening Process Monitoring",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44465492",
+ "created_at": "2025-07-04T15:41:35Z"
+ },
+ {
+ "hn_id": "43852518",
+ "title": "TSP Accelerator Powered by SOT-MRAMs and Hierarchical Clustering",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43852518",
+ "created_at": "2025-05-01T00:56:16Z"
+ }
+ ],
+ "top_points": 60,
+ "total_points": 71,
+ "total_comments": 28
+}
+\ No newline at end of file
diff --git a/papers/formulaone-prompting-adaptive-2026/hn.json b/papers/formulaone-prompting-adaptive-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/foundational-automatic-evaluators-2025/hn.json b/papers/foundational-automatic-evaluators-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45657595",
+ "title": "Binary Retrieval-Augmented Reward Mitigates Hallucinations",
+ "points": 44,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=45657595",
+ "created_at": "2025-10-21T16:14:28Z"
+ },
+ {
+ "hn_id": "42984225",
+ "title": "Leveraging Multimodal LLM for Inspirational User Interface Search",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42984225",
+ "created_at": "2025-02-08T16:52:28Z"
+ },
+ {
+ "hn_id": "45876369",
+ "title": "Diagnosing Representation Dynamics in NER Model Extension",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45876369",
+ "created_at": "2025-11-10T14:30:09Z"
+ }
+ ],
+ "top_points": 44,
+ "total_points": 47,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/from-benchmarks-business-2025/hn.json b/papers/from-benchmarks-business-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/from-code-courtroom-2025/hn.json b/papers/from-code-courtroom-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "43978357",
+ "title": "Type-constrained code generation with language models",
+ "points": 257,
+ "comments": 127,
+ "url": "https://news.ycombinator.com/item?id=43978357",
+ "created_at": "2025-05-13T22:15:30Z"
+ },
+ {
+ "hn_id": "45141762",
+ "title": "Fantastic pretraining optimizers and where to find them",
+ "points": 42,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=45141762",
+ "created_at": "2025-09-05T18:15:42Z"
+ },
+ {
+ "hn_id": "30665928",
+ "title": "PERCEPT: Online change-point detection using topological data analysis",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30665928",
+ "created_at": "2022-03-13T21:31:04Z"
+ },
+ {
+ "hn_id": "43997113",
+ "title": "An Empirical Study on the Performance and Energy Usage of Compiled Python Code",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43997113",
+ "created_at": "2025-05-15T17:12:36Z"
+ },
+ {
+ "hn_id": "39686242",
+ "title": "Random Networks are not Random Functions",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39686242",
+ "created_at": "2024-03-12T23:39:00Z"
+ },
+ {
+ "hn_id": "44461553",
+ "title": "SegmentAnyMuscle: A muscle segmentation model across different locations in MRI",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44461553",
+ "created_at": "2025-07-04T06:01:44Z"
+ },
+ {
+ "hn_id": "43926603",
+ "title": "Pearch.ai beat LinkedIn's AI search in a head-to-head benchmark",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43926603",
+ "created_at": "2025-05-08T14:50:43Z"
+ },
+ {
+ "hn_id": "43908546",
+ "title": "Performance and Energy Usage of Compiled Python",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43908546",
+ "created_at": "2025-05-06T19:03:58Z"
+ }
+ ],
+ "top_points": 257,
+ "total_points": 317,
+ "total_comments": 131
+}
+\ No newline at end of file
diff --git a/papers/from-evaluation-enhancement-2025/hn.json b/papers/from-evaluation-enhancement-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43091339",
+ "title": "DeepSeek Native Sparse Attention",
+ "points": 16,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43091339",
+ "created_at": "2025-02-18T16:17:40Z"
+ },
+ {
+ "hn_id": "43086831",
+ "title": "Native Sparse Attention: Hardware-Aligned, Natively Trainable Sparse Attention",
+ "points": 15,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43086831",
+ "created_at": "2025-02-18T07:04:47Z"
+ },
+ {
+ "hn_id": "43098140",
+ "title": "NSA: Hardware-Aligned and Natively Trainable Sparse Attention",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43098140",
+ "created_at": "2025-02-19T03:12:01Z"
+ },
+ {
+ "hn_id": "44304578",
+ "title": "Serving Large Language Models on Huawei CloudMatrix384",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44304578",
+ "created_at": "2025-06-17T22:18:43Z"
+ },
+ {
+ "hn_id": "45259423",
+ "title": "Human+AI loops stay stable even with quantization",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45259423",
+ "created_at": "2025-09-16T08:08:10Z"
+ },
+ {
+ "hn_id": "43318708",
+ "title": "MAML: Towards a Faster Web in Developing Regions",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43318708",
+ "created_at": "2025-03-10T10:03:48Z"
+ },
+ {
+ "hn_id": "46445614",
+ "title": "Mechanical non-reciprocity programmed by shear jamming in soft composite solids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46445614",
+ "created_at": "2025-12-31T16:32:15Z"
+ },
+ {
+ "hn_id": "44739937",
+ "title": "Double Duty: FPGA Architecture to Enable Concurrent LUT and Adder Chain Usage",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44739937",
+ "created_at": "2025-07-30T21:53:00Z"
+ },
+ {
+ "hn_id": "44668806",
+ "title": "LLMs are Bayesian, in Expectation, not in Realization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44668806",
+ "created_at": "2025-07-24T09:39:43Z"
+ },
+ {
+ "hn_id": "43773523",
+ "title": "Robotic Squirrel Pinto: A latched spring actuated robot for jumping and perching",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43773523",
+ "created_at": "2025-04-23T15:51:24Z"
+ }
+ ],
+ "top_points": 16,
+ "total_points": 50,
+ "total_comments": 8
+}
+\ No newline at end of file
diff --git a/papers/from-firewalls-frontiers-2025/hn.json b/papers/from-firewalls-frontiers-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "44979024",
+ "title": "Inter-APU Communication on AMD MI300A Systems via Infinity Fabric: A Deep Dive",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44979024",
+ "created_at": "2025-08-21T22:43:45Z"
+ },
+ {
+ "hn_id": "45361132",
+ "title": "Opal: An Operator Algebra View of RLHF",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45361132",
+ "created_at": "2025-09-24T14:42:11Z"
+ },
+ {
+ "hn_id": "45260309",
+ "title": "\"My Boyfriend Is AI\": Computational Analysis of Human-AI Companionship",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45260309",
+ "created_at": "2025-09-16T10:15:49Z"
+ },
+ {
+ "hn_id": "37649077",
+ "title": "Lmsys-Chat-1M: A Large-Scale Real-World LLM Conversation Dataset",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37649077",
+ "created_at": "2023-09-25T19:16:05Z"
+ },
+ {
+ "hn_id": "43537705",
+ "title": "Cerebras Wafer-Scale Integration vs. Nvidia GPU-Based Systems for AI",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43537705",
+ "created_at": "2025-03-31T17:48:00Z"
+ },
+ {
+ "hn_id": "37911895",
+ "title": "A Large-Scale Real-World LLM Conversation Dataset",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37911895",
+ "created_at": "2023-10-17T08:04:27Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 13,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/from-fluent-verifiable-2026/hn.json b/papers/from-fluent-verifiable-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/from-gains-strains-2025/hn.json b/papers/from-gains-strains-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "29005793",
+ "title": "Bugs in our pockets: the risks of client-side scanning",
+ "points": 204,
+ "comments": 131,
+ "url": "https://news.ycombinator.com/item?id=29005793",
+ "created_at": "2021-10-26T20:24:05Z"
+ },
+ {
+ "hn_id": "28956546",
+ "title": "Bugs in Our Pockets: The Risks of Client-Side Scanning",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28956546",
+ "created_at": "2021-10-22T12:44:28Z"
+ },
+ {
+ "hn_id": "28875180",
+ "title": "Bugs in Our Pockets: The Risks of Client-Side Scanning",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28875180",
+ "created_at": "2021-10-15T07:10:35Z"
+ },
+ {
+ "hn_id": "28921166",
+ "title": "Bugs in Our Pockets: The Risks of Client-Side Scanning (2021)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28921166",
+ "created_at": "2021-10-19T17:52:50Z"
+ },
+ {
+ "hn_id": "28887043",
+ "title": "Bugs in Our Pockets: The Risks of Client-Side Scanning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28887043",
+ "created_at": "2021-10-16T11:10:22Z"
+ },
+ {
+ "hn_id": "45609137",
+ "title": "Modeling Developer Burnout with GenAI Adoption",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45609137",
+ "created_at": "2025-10-16T18:43:48Z"
+ },
+ {
+ "hn_id": "43884165",
+ "title": "Can Transformers Reason Logically? A Study in SAT Solving",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43884165",
+ "created_at": "2025-05-04T03:09:31Z"
+ },
+ {
+ "hn_id": "33334207",
+ "title": "Creating a Dynamic Quadrupedal Robotic Goalkeeper with Reinforcement Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33334207",
+ "created_at": "2022-10-25T18:14:15Z"
+ },
+ {
+ "hn_id": "28905207",
+ "title": "Bugs in Our Pockets: The Risks of Client-Side Scanning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28905207",
+ "created_at": "2021-10-18T13:26:29Z"
+ }
+ ],
+ "top_points": 204,
+ "total_points": 221,
+ "total_comments": 132
+}
+\ No newline at end of file
diff --git a/papers/from-helpfulness-toxic-2026/hn.json b/papers/from-helpfulness-toxic-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/from-horizontal-layering-2026/hn.json b/papers/from-horizontal-layering-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/from-llm-reasoning-2025/hn.json b/papers/from-llm-reasoning-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "44407745",
+ "title": "The Unreasonable Effectiveness of Mathematical Experiments",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44407745",
+ "created_at": "2025-06-28T20:07:21Z"
+ },
+ {
+ "hn_id": "43889722",
+ "title": "Mega Mass Assembly with JWST: The MIRI EGS Galaxy and AGN Survey",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43889722",
+ "created_at": "2025-05-04T21:26:16Z"
+ },
+ {
+ "hn_id": "44660406",
+ "title": "Show HN: Single-agent long-horizon reasoning within one LLM run",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44660406",
+ "created_at": "2025-07-23T15:35:17Z"
+ },
+ {
+ "hn_id": "45680925",
+ "title": "CausalRAG: Integrating Causal Graphs into RAG",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45680925",
+ "created_at": "2025-10-23T12:10:04Z"
+ }
+ ],
+ "top_points": 8,
+ "total_points": 20,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/from-poisoned-aware-2025/hn.json b/papers/from-poisoned-aware-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "37832599",
+ "title": "HyperAttention: Long-Context Attention in Near-Linear Time",
+ "points": 73,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=37832599",
+ "created_at": "2023-10-10T14:31:28Z"
+ },
+ {
+ "hn_id": "33227427",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 34,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=33227427",
+ "created_at": "2022-10-16T21:43:27Z"
+ },
+ {
+ "hn_id": "28876487",
+ "title": "Offline Reinforcement Learning with Implicit Q-Learning",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28876487",
+ "created_at": "2021-10-15T11:05:12Z"
+ },
+ {
+ "hn_id": "33232042",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=33232042",
+ "created_at": "2022-10-17T11:18:16Z"
+ },
+ {
+ "hn_id": "33200244",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33200244",
+ "created_at": "2022-10-14T06:28:28Z"
+ },
+ {
+ "hn_id": "33192776",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33192776",
+ "created_at": "2022-10-13T15:57:00Z"
+ },
+ {
+ "hn_id": "44594017",
+ "title": "Ask HN : AI to Detect Counterfeit Adderall",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44594017",
+ "created_at": "2025-07-17T14:47:39Z"
+ },
+ {
+ "hn_id": "42021531",
+ "title": "Understanding Warmup-Stable-Decay Learning Rates",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42021531",
+ "created_at": "2024-11-01T21:02:29Z"
+ }
+ ],
+ "top_points": 73,
+ "total_points": 133,
+ "total_comments": 24
+}
+\ No newline at end of file
diff --git a/papers/from-single-multiagent-2026/hn.json b/papers/from-single-multiagent-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47150074",
+ "title": "Large-Scale Study of GitHub Pull Requests: How AI Coding Agents Modify Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47150074",
+ "created_at": "2026-02-25T11:15:17Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/from-task-solving-2026/hn.json b/papers/from-task-solving-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/frontier-models-in-context-scheming-2024/hn.json b/papers/frontier-models-in-context-scheming-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "42404110",
+ "title": "Frontier Models are Capable of In-context Scheming",
+ "points": 10,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42404110",
+ "created_at": "2024-12-12T22:31:30Z"
+ },
+ {
+ "hn_id": "42606772",
+ "title": "Frontier Models are Capable of In-context Scheming",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42606772",
+ "created_at": "2025-01-06T01:56:41Z"
+ },
+ {
+ "hn_id": "44046454",
+ "title": "Frontier Models are Capable of In-context Scheming",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44046454",
+ "created_at": "2025-05-20T22:11:18Z"
+ },
+ {
+ "hn_id": "41888579",
+ "title": "A (sorta) recent paper about model collapse has got me thinking",
+ "points": 3,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=41888579",
+ "created_at": "2024-10-19T16:01:09Z"
+ },
+ {
+ "hn_id": "46437575",
+ "title": "Frontier Models are Capable of In-context Scheming",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46437575",
+ "created_at": "2025-12-30T20:26:54Z"
+ },
+ {
+ "hn_id": "42690532",
+ "title": "Frontier Models are Capable of In-context Scheming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42690532",
+ "created_at": "2025-01-13T22:43:34Z"
+ },
+ {
+ "hn_id": "44109495",
+ "title": "Frontier Models are Capable of In-context Scheming",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44109495",
+ "created_at": "2025-05-27T18:33:42Z"
+ },
+ {
+ "hn_id": "41908935",
+ "title": "(Somewhat) Recent paper on model collapse",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=41908935",
+ "created_at": "2024-10-21T21:55:41Z"
+ },
+ {
+ "hn_id": "38613400",
+ "title": "SparQ Attention: Bandwidth-Efficient LLM Inference",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38613400",
+ "created_at": "2023-12-12T15:28:26Z"
+ }
+ ],
+ "top_points": 10,
+ "total_points": 27,
+ "total_comments": 8
+}
+\ No newline at end of file
diff --git a/papers/frontiermath-benchmark-evaluating-2024/hn.json b/papers/frontiermath-benchmark-evaluating-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45873709",
+ "title": "The Drain of Scientific Publishing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45873709",
+ "created_at": "2025-11-10T08:21:43Z"
+ },
+ {
+ "hn_id": "39032813",
+ "title": "Adapting Standard Retrieval Benchmarks to Evaluate Generated Answers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39032813",
+ "created_at": "2024-01-17T20:13:37Z"
+ },
+ {
+ "hn_id": "25074836",
+ "title": "Principles of Quantum Communication Theory: A Modern Approach",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25074836",
+ "created_at": "2020-11-12T20:53:00Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/fundamental-language-models-2025/hn.json b/papers/fundamental-language-models-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "25734627",
+ "title": "AnyDB: An Architecture-Less DBMS for Any Workload",
+ "points": 76,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=25734627",
+ "created_at": "2021-01-11T19:16:48Z"
+ },
+ {
+ "hn_id": "46612901",
+ "title": "HiGP: A high-performance Python package for Gaussian Process",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46612901",
+ "created_at": "2026-01-14T06:11:08Z"
+ },
+ {
+ "hn_id": "28264796",
+ "title": "How to Fairly Share a Watermelon",
+ "points": 4,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=28264796",
+ "created_at": "2021-08-22T12:07:33Z"
+ },
+ {
+ "hn_id": "44477965",
+ "title": "Establishing Best Practices for Building Rigorous Agentic Benchmarks",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44477965",
+ "created_at": "2025-07-06T04:58:16Z"
+ },
+ {
+ "hn_id": "25548440",
+ "title": "The Theory of Interstellar Trade",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=25548440",
+ "created_at": "2020-12-27T03:02:24Z"
+ },
+ {
+ "hn_id": "28445518",
+ "title": "Find Bugs in Static Bug Finders",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28445518",
+ "created_at": "2021-09-07T14:46:30Z"
+ },
+ {
+ "hn_id": "44463319",
+ "title": "Establishing Best Practices for Building Rigorous Agentic Benchmarks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44463319",
+ "created_at": "2025-07-04T10:46:05Z"
+ },
+ {
+ "hn_id": "2314112",
+ "title": "Paul Krugman on the \"Theory Of Interstellar Trade\"",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=2314112",
+ "created_at": "2011-03-11T17:37:27Z"
+ },
+ {
+ "hn_id": "24426717",
+ "title": "Kilt: A Benchmark for Knowledge Intensive Language Tasks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24426717",
+ "created_at": "2020-09-09T22:38:30Z"
+ }
+ ],
+ "top_points": 76,
+ "total_points": 99,
+ "total_comments": 13
+}
+\ No newline at end of file
diff --git a/papers/future-ml-systems-2022/hn.json b/papers/future-ml-systems-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40689833",
+ "title": "Survey of Rickrolling in Academic Literature [pdf]",
+ "points": 69,
+ "comments": 14,
+ "url": "https://news.ycombinator.com/item?id=40689833",
+ "created_at": "2024-06-15T13:54:57Z"
+ },
+ {
+ "hn_id": "37543595",
+ "title": "Ask HN: Transformer alternatives that could have emergent properties when scaled",
+ "points": 6,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=37543595",
+ "created_at": "2023-09-17T10:45:52Z"
+ },
+ {
+ "hn_id": "36349856",
+ "title": "SqueezeLLM: Dense-and-Sparse Quantization",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36349856",
+ "created_at": "2023-06-16T01:43:39Z"
+ },
+ {
+ "hn_id": "35621735",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35621735",
+ "created_at": "2023-04-18T23:06:51Z"
+ },
+ {
+ "hn_id": "36342137",
+ "title": "SqueezeLLM: Lossless 3-bit quantization with improved performance",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36342137",
+ "created_at": "2023-06-15T15:43:48Z"
+ },
+ {
+ "hn_id": "35410181",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35410181",
+ "created_at": "2023-04-02T13:16:17Z"
+ },
+ {
+ "hn_id": "34785902",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34785902",
+ "created_at": "2023-02-14T05:48:21Z"
+ },
+ {
+ "hn_id": "40419434",
+ "title": "Emergent Abilities of Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40419434",
+ "created_at": "2024-05-20T19:46:53Z"
+ },
+ {
+ "hn_id": "47174820",
+ "title": "Emergent Abilities of Large Language Models (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47174820",
+ "created_at": "2026-02-27T00:58:33Z"
+ },
+ {
+ "hn_id": "41730269",
+ "title": "Emergent Abilities of Large Language Models (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41730269",
+ "created_at": "2024-10-03T12:47:11Z"
+ }
+ ],
+ "top_points": 69,
+ "total_points": 97,
+ "total_comments": 20
+}
+\ No newline at end of file
diff --git a/papers/future-software-reuse-2025/hn.json b/papers/future-software-reuse-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43905792",
+ "title": "Unveiling the Hidden: Movie Genre and User Bias in Spoiler Detection",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43905792",
+ "created_at": "2025-05-06T14:49:36Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/fuzz4all-universal-fuzzing-2023/hn.json b/papers/fuzz4all-universal-fuzzing-2023/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43975423",
+ "title": "Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)",
+ "points": 237,
+ "comments": 112,
+ "url": "https://news.ycombinator.com/item?id=43975423",
+ "created_at": "2025-05-13T17:26:38Z"
+ },
+ {
+ "hn_id": "41321960",
+ "title": "Why is this a research paper? HybridRAG = VectorRAG context and GraphRAG context",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41321960",
+ "created_at": "2024-08-22T16:31:57Z"
+ },
+ {
+ "hn_id": "37079205",
+ "title": "Effective Model for LK-99: Potential Avenue for New Superconductivity Research",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=37079205",
+ "created_at": "2023-08-10T17:39:55Z"
+ },
+ {
+ "hn_id": "43702068",
+ "title": "HybridRAG: Integrating Knowledge Graphs and Vector RAG",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43702068",
+ "created_at": "2025-04-16T06:15:57Z"
+ },
+ {
+ "hn_id": "35080011",
+ "title": "Magnushammer: A Transformer-Based Approach to Premise Selection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35080011",
+ "created_at": "2023-03-09T10:42:59Z"
+ },
+ {
+ "hn_id": "32339463",
+ "title": "A Fast Text-Driven Approach for Generating Artistic Content",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32339463",
+ "created_at": "2022-08-04T04:43:48Z"
+ },
+ {
+ "hn_id": "40516562",
+ "title": "Frugal random exploration strategy for shape recognition using stat. geom",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40516562",
+ "created_at": "2024-05-29T20:23:09Z"
+ },
+ {
+ "hn_id": "34364362",
+ "title": "Bug Hunters Perspectives: Challenges and Benefits of the Bug Bounty Ecosystem",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34364362",
+ "created_at": "2023-01-13T05:44:13Z"
+ },
+ {
+ "hn_id": "35181128",
+ "title": "Quantum Microscopy of Cancer Cells at the Heisenberg Limit",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35181128",
+ "created_at": "2023-03-16T12:45:37Z"
+ }
+ ],
+ "top_points": 237,
+ "total_points": 253,
+ "total_comments": 117
+}
+\ No newline at end of file
diff --git a/papers/fveval-understanding-language-2024/hn.json b/papers/fveval-understanding-language-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "42020243",
+ "title": "FVEval: Language Model Capabilities in Formal Verification of Digital Hardware",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42020243",
+ "created_at": "2024-11-01T18:46:28Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/gaia-benchmark-general-2023/hn.json b/papers/gaia-benchmark-general-2023/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "38388990",
+ "title": "Meta: Gaia - A Benchmark for General AI Assistants",
+ "points": 36,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=38388990",
+ "created_at": "2023-11-23T03:43:15Z"
+ },
+ {
+ "hn_id": "39143540",
+ "title": "The Optimal Choice of Hypothesis Is the Weakest, Not the Shortest",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39143540",
+ "created_at": "2024-01-26T15:14:52Z"
+ },
+ {
+ "hn_id": "42413236",
+ "title": "Fast and Efficient Memory Reclamation for Serverless MicroVMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42413236",
+ "created_at": "2024-12-13T23:18:15Z"
+ },
+ {
+ "hn_id": "37985842",
+ "title": "Eureka: Human-Level Reward Design via Coding Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37985842",
+ "created_at": "2023-10-23T14:06:23Z"
+ },
+ {
+ "hn_id": "37968009",
+ "title": "Eureka: Human-Level Reward Design via Coding Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37968009",
+ "created_at": "2023-10-21T16:09:03Z"
+ },
+ {
+ "hn_id": "29504080",
+ "title": "DeepMind's PolyViT: A multi-modal AI model",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29504080",
+ "created_at": "2021-12-09T22:45:22Z"
+ },
+ {
+ "hn_id": "38401986",
+ "title": "Gaia: A Benchmark for General AI Assistants",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38401986",
+ "created_at": "2023-11-24T09:17:33Z"
+ },
+ {
+ "hn_id": "38011924",
+ "title": "Eureka: Human level reward design via coding large language models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38011924",
+ "created_at": "2023-10-25T12:09:56Z"
+ }
+ ],
+ "top_points": 36,
+ "total_points": 51,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/gate-integrated-assessment-2025/hn.json b/papers/gate-integrated-assessment-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "22915584",
+ "title": "Beyond the Code: Mining Self-Admitted Technical Debt in Issue Tracker Systems",
+ "points": 97,
+ "comments": 57,
+ "url": "https://news.ycombinator.com/item?id=22915584",
+ "created_at": "2020-04-19T12:55:42Z"
+ },
+ {
+ "hn_id": "35118999",
+ "title": "Baldur: Whole-Proof Generation and Repair with Large Language Models",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35118999",
+ "created_at": "2023-03-12T11:42:38Z"
+ },
+ {
+ "hn_id": "44439235",
+ "title": "Wider or Deeper? Scaling LLM Inference-Time Compute with Adaptive Tree Search",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44439235",
+ "created_at": "2025-07-02T00:30:12Z"
+ },
+ {
+ "hn_id": "44312317",
+ "title": "Self-Supervised Contrastive Learning Approximates Supervised CL",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44312317",
+ "created_at": "2025-06-18T18:45:30Z"
+ },
+ {
+ "hn_id": "38902550",
+ "title": "Baldur: Whole-Proof Generation and Repair with Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38902550",
+ "created_at": "2024-01-07T16:32:16Z"
+ },
+ {
+ "hn_id": "45179163",
+ "title": "Outcome-Based Exploration for LLM Reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45179163",
+ "created_at": "2025-09-09T08:30:12Z"
+ },
+ {
+ "hn_id": "35437352",
+ "title": "Baldur: Whole-Proof Generation and Repair with Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35437352",
+ "created_at": "2023-04-04T10:07:28Z"
+ },
+ {
+ "hn_id": "35181128",
+ "title": "Quantum Microscopy of Cancer Cells at the Heisenberg Limit",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35181128",
+ "created_at": "2023-03-16T12:45:37Z"
+ },
+ {
+ "hn_id": "30711465",
+ "title": "Bam: A Case for Enabling Fine-Grain High Throughput GPU-Access to Storage",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30711465",
+ "created_at": "2022-03-17T14:20:24Z"
+ }
+ ],
+ "top_points": 97,
+ "total_points": 115,
+ "total_comments": 57
+}
+\ No newline at end of file
diff --git a/papers/gdpval-evaluating-ai-2025/hn.json b/papers/gdpval-evaluating-ai-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "33314496",
+ "title": "A study of malicious CVE proof of concept exploits in GitHub",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33314496",
+ "created_at": "2022-10-24T09:30:54Z"
+ },
+ {
+ "hn_id": "45836230",
+ "title": "The Distribution of Earth-Impacting Interstellar Objects",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45836230",
+ "created_at": "2025-11-06T15:21:24Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/gemma-2-improving-2024/hn.json b/papers/gemma-2-improving-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41421591",
+ "title": "Inductive or deductive? Rethinking the fundamental reasoning abilities of LLMs",
+ "points": 107,
+ "comments": 169,
+ "url": "https://news.ycombinator.com/item?id=41421591",
+ "created_at": "2024-09-02T00:49:06Z"
+ },
+ {
+ "hn_id": "15289917",
+ "title": "Benefits of Napping in Healthy Adults (2009) [pdf]",
+ "points": 88,
+ "comments": 38,
+ "url": "https://news.ycombinator.com/item?id=15289917",
+ "created_at": "2017-09-20T00:43:51Z"
+ },
+ {
+ "hn_id": "30180281",
+ "title": "Computational Thinking and Thinking about Computing (2008)",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=30180281",
+ "created_at": "2022-02-02T17:01:25Z"
+ },
+ {
+ "hn_id": "24385172",
+ "title": "Benefits of napping: nap length, time of day, age, and experience with napping",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24385172",
+ "created_at": "2020-09-05T17:15:40Z"
+ },
+ {
+ "hn_id": "44790511",
+ "title": "The Space of AI: Real-World Lessons on AI's Impact on Developers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44790511",
+ "created_at": "2025-08-04T19:40:00Z"
+ },
+ {
+ "hn_id": "40656984",
+ "title": "Large Language Models' Detection of Political Orientation in Newspapers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40656984",
+ "created_at": "2024-06-12T11:49:20Z"
+ },
+ {
+ "hn_id": "22864688",
+ "title": "Benefits of Napping in Healthy Adults",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22864688",
+ "created_at": "2020-04-14T11:24:01Z"
+ },
+ {
+ "hn_id": "41278284",
+ "title": "Inductive or Deductive? Rethinking the Fundamental Reasoning Abilities of LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41278284",
+ "created_at": "2024-08-17T21:50:29Z"
+ },
+ {
+ "hn_id": "41260958",
+ "title": "Y Social: An LLM-Powered Social Media Digital Twin",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41260958",
+ "created_at": "2024-08-15T22:07:50Z"
+ },
+ {
+ "hn_id": "44858350",
+ "title": "The Space of AI: Real-World Lessons on AI's Impact on Developers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44858350",
+ "created_at": "2025-08-10T21:14:15Z"
+ }
+ ],
+ "top_points": 107,
+ "total_points": 213,
+ "total_comments": 208
+}
+\ No newline at end of file
diff --git a/papers/generative-agents-interactive-2023/hn.json b/papers/generative-agents-interactive-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37128293",
+ "title": "Show HN: AI-town, run your own custom AI world SIM with JavaScript",
+ "points": 429,
+ "comments": 115,
+ "url": "https://news.ycombinator.com/item?id=37128293",
+ "created_at": "2023-08-14T23:46:02Z"
+ },
+ {
+ "hn_id": "35517649",
+ "title": "Generative Agents: Interactive Simulacra of Human Behavior",
+ "points": 391,
+ "comments": 252,
+ "url": "https://news.ycombinator.com/item?id=35517649",
+ "created_at": "2023-04-10T21:32:13Z"
+ },
+ {
+ "hn_id": "36230750",
+ "title": "I'm afraid I can't do that: Prompt refusal in generative language models",
+ "points": 179,
+ "comments": 166,
+ "url": "https://news.ycombinator.com/item?id=36230750",
+ "created_at": "2023-06-07T18:03:25Z"
+ },
+ {
+ "hn_id": "34702988",
+ "title": "Discovery of an Exceptionally Rare Nearby and Energetic Gamma-Ray Burst",
+ "points": 90,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=34702988",
+ "created_at": "2023-02-08T01:44:54Z"
+ },
+ {
+ "hn_id": "40212925",
+ "title": "Show HN: LLM-powered NPCs running on your hardware",
+ "points": 24,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=40212925",
+ "created_at": "2024-04-30T16:34:46Z"
+ },
+ {
+ "hn_id": "35511843",
+ "title": "Generative Agents: Interactive Simulacra of Human Behavior",
+ "points": 13,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35511843",
+ "created_at": "2023-04-10T13:11:19Z"
+ },
+ {
+ "hn_id": "36232330",
+ "title": "Show HN: GalenAI – An AI Powered Search Engine for Clinicians",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36232330",
+ "created_at": "2023-06-07T19:37:30Z"
+ },
+ {
+ "hn_id": "40481871",
+ "title": "Exploring Autonomous Agents Through the Lens of Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40481871",
+ "created_at": "2024-05-26T13:08:05Z"
+ },
+ {
+ "hn_id": "39214022",
+ "title": "Exploring Encrypted Keyboards to Defeat Client-Side Scanning in E2EE Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39214022",
+ "created_at": "2024-02-01T09:04:19Z"
+ },
+ {
+ "hn_id": "35512936",
+ "title": "CrossCode: Multi-Level Visualization of Program Execution",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35512936",
+ "created_at": "2023-04-10T14:44:26Z"
+ }
+ ],
+ "top_points": 429,
+ "total_points": 1133,
+ "total_comments": 573
+}
+\ No newline at end of file
diff --git a/papers/generative-ai-at-2023/hn.json b/papers/generative-ai-at-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43577957",
+ "title": "A Study of Undefined Behavior Across Foreign Function Boundaries in Rust Libs",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43577957",
+ "created_at": "2025-04-04T03:10:05Z"
+ },
+ {
+ "hn_id": "36513194",
+ "title": "On the Planning Abilities of Large Language Models – A Critical Investigation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36513194",
+ "created_at": "2023-06-28T21:57:00Z"
+ },
+ {
+ "hn_id": "31457199",
+ "title": "Masked image modeling advances 3D medical image analysis",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31457199",
+ "created_at": "2022-05-21T12:15:54Z"
+ },
+ {
+ "hn_id": "36053359",
+ "title": "Why Is the Winner the Best?",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36053359",
+ "created_at": "2023-05-24T02:27:19Z"
+ },
+ {
+ "hn_id": "44041341",
+ "title": "Grounded in Context: Retrieval-Based Method for Hallucination Detection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44041341",
+ "created_at": "2025-05-20T13:23:42Z"
+ },
+ {
+ "hn_id": "39736862",
+ "title": "The Planning Abilities of LLMs: A Critical Investigation (2023)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39736862",
+ "created_at": "2024-03-17T18:45:17Z"
+ },
+ {
+ "hn_id": "38586493",
+ "title": "On the Planning Abilities of Large Language Models: A Critical Investigation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38586493",
+ "created_at": "2023-12-09T21:57:24Z"
+ },
+ {
+ "hn_id": "37627101",
+ "title": "How Robust Is Google's Bard to Adversarial Image Attacks?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37627101",
+ "created_at": "2023-09-23T20:20:29Z"
+ },
+ {
+ "hn_id": "37158226",
+ "title": "What Types of Questions Require Conversation to Answer? AskReddit Study",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37158226",
+ "created_at": "2023-08-17T07:07:27Z"
+ },
+ {
+ "hn_id": "36105713",
+ "title": "On the Planning Abilities of Large Language Models – A Critical Investigation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36105713",
+ "created_at": "2023-05-28T16:51:29Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 16,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/generative-ai-computational-2025/hn.json b/papers/generative-ai-computational-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "40876840",
+ "title": "LivePortrait: A fast, controllable portrait animation model",
+ "points": 203,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=40876840",
+ "created_at": "2024-07-04T18:02:50Z"
+ },
+ {
+ "hn_id": "24576451",
+ "title": "It's Not Just Size That Matters: Small Models with Performance Similar to GPT-3",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24576451",
+ "created_at": "2020-09-24T08:10:46Z"
+ },
+ {
+ "hn_id": "26393219",
+ "title": "It's Not Just Size That Matters Small Language Models Are Also Few-Shot Learners",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26393219",
+ "created_at": "2021-03-08T23:43:29Z"
+ },
+ {
+ "hn_id": "28436460",
+ "title": "Hosting Industry Centralization and Consolidation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28436460",
+ "created_at": "2021-09-06T18:19:31Z"
+ },
+ {
+ "hn_id": "37515238",
+ "title": "Bayes' Rays: Uncertainty Quantification for Neural Radiance Fields",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37515238",
+ "created_at": "2023-09-14T21:42:16Z"
+ },
+ {
+ "hn_id": "35194358",
+ "title": "Petals: Collaborative Inference and Fine-Tuning of Large Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35194358",
+ "created_at": "2023-03-17T07:40:54Z"
+ },
+ {
+ "hn_id": "40598084",
+ "title": "Reconstructing Training Data from Document Understanding Models",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40598084",
+ "created_at": "2024-06-06T14:50:43Z"
+ },
+ {
+ "hn_id": "41655851",
+ "title": "The WMDP Benchmark: Measuring and Reducing Malicious Use with Unlearning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41655851",
+ "created_at": "2024-09-26T08:20:13Z"
+ },
+ {
+ "hn_id": "24551849",
+ "title": "It's Not Just Size That Matters:Small Language Models Are Also Few-Shot Learners",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24551849",
+ "created_at": "2020-09-22T07:23:22Z"
+ }
+ ],
+ "top_points": 203,
+ "total_points": 226,
+ "total_comments": 26
+}
+\ No newline at end of file
diff --git a/papers/generative-ai-paradox-2026/hn.json b/papers/generative-ai-paradox-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/genetic-instruct-scaling-2024/hn.json b/papers/genetic-instruct-scaling-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "41204287",
+ "title": "Apple Intelligence Foundation Language Models",
+ "points": 56,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=41204287",
+ "created_at": "2024-08-09T18:38:35Z"
+ },
+ {
+ "hn_id": "40570738",
+ "title": "Video-MME: The First-Ever Comprehensive Evaluation Benchmark of Multi-Modal LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40570738",
+ "created_at": "2024-06-04T04:38:36Z"
+ },
+ {
+ "hn_id": "40200892",
+ "title": "Fine Tuning LLM for Enterprise: Practical Guidelines and Recommendations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40200892",
+ "created_at": "2024-04-29T16:53:53Z"
+ }
+ ],
+ "top_points": 56,
+ "total_points": 60,
+ "total_comments": 23
+}
+\ No newline at end of file
diff --git a/papers/geocodegpt-large-language-2024/hn.json b/papers/geocodegpt-large-language-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/geometry-thought-how-2026/hn.json b/papers/geometry-thought-how-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/gittaskbench-2025/hn.json b/papers/gittaskbench-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45461547",
+ "title": "1-Bit RIS-Aided Index Modulation with Quantum Annealing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45461547",
+ "created_at": "2025-10-03T11:15:06Z"
+ },
+ {
+ "hn_id": "44438536",
+ "title": "CoVE: Compressed Vocabulary Expansion Makes Better LLM-Based Recommender Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44438536",
+ "created_at": "2025-07-01T22:29:49Z"
+ },
+ {
+ "hn_id": "46791479",
+ "title": "HetGPU: The pursuit of making binary compatibility towards GPUs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46791479",
+ "created_at": "2026-01-28T05:37:10Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 5,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/give-positive-review-2025/hn.json b/papers/give-positive-review-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "45643976",
+ "title": "Modeling Others' Minds as Code",
+ "points": 66,
+ "comments": 42,
+ "url": "https://news.ycombinator.com/item?id=45643976",
+ "created_at": "2025-10-20T13:54:38Z"
+ },
+ {
+ "hn_id": "46730926",
+ "title": "RT Superconductivity at 298K in Ternary LaScH System at High-Pressure Conditions",
+ "points": 14,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=46730926",
+ "created_at": "2026-01-23T10:45:37Z"
+ },
+ {
+ "hn_id": "33603266",
+ "title": "Quantum time superposition of photons moving forwards and backwards in time",
+ "points": 4,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=33603266",
+ "created_at": "2022-11-15T00:02:40Z"
+ },
+ {
+ "hn_id": "45464721",
+ "title": "Room-Temperature Superconductivity at High-Pressure Conditions",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45464721",
+ "created_at": "2025-10-03T16:25:45Z"
+ },
+ {
+ "hn_id": "37111986",
+ "title": "Experimental Superposition of Time Directions (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37111986",
+ "created_at": "2023-08-13T17:23:17Z"
+ }
+ ],
+ "top_points": 66,
+ "total_points": 88,
+ "total_comments": 50
+}
+\ No newline at end of file
diff --git a/papers/glimprouter-efficient-collaborative-2026/hn.json b/papers/glimprouter-efficient-collaborative-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/glmdialog-noisetolerant-pretraining-2023/hn.json b/papers/glmdialog-noisetolerant-pretraining-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/gorilla-large-language-2023/hn.json b/papers/gorilla-large-language-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36888948",
+ "title": "Google Med-Palm M: Towards Generalist Biomedical AI",
+ "points": 110,
+ "comments": 87,
+ "url": "https://news.ycombinator.com/item?id=36888948",
+ "created_at": "2023-07-27T04:32:46Z"
+ },
+ {
+ "hn_id": "39594687",
+ "title": "Sigmoid Loss for Language Image Pre-Training (2023)",
+ "points": 32,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39594687",
+ "created_at": "2024-03-04T19:17:17Z"
+ },
+ {
+ "hn_id": "41539236",
+ "title": "Teaching Models to Express Their Uncertainty in Words (2022)",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41539236",
+ "created_at": "2024-09-14T11:57:40Z"
+ },
+ {
+ "hn_id": "36183062",
+ "title": "Gorilla: Large Language Model Connected with APIs",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36183062",
+ "created_at": "2023-06-04T04:19:26Z"
+ },
+ {
+ "hn_id": "31609508",
+ "title": "Attribution-Based Explanations That Provide Recourse Cannot Be Robust",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=31609508",
+ "created_at": "2022-06-03T15:20:31Z"
+ },
+ {
+ "hn_id": "39271919",
+ "title": "Augmenting Scholarly Documents Through AI-Powered Interactive Reading Interfaces",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39271919",
+ "created_at": "2024-02-06T07:46:42Z"
+ },
+ {
+ "hn_id": "36069263",
+ "title": "Gorilla: Large Language Model Connected with APIs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36069263",
+ "created_at": "2023-05-25T11:13:58Z"
+ },
+ {
+ "hn_id": "36111250",
+ "title": "How Language Model Hallucinations Can Snowball",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36111250",
+ "created_at": "2023-05-29T06:20:14Z"
+ },
+ {
+ "hn_id": "36075589",
+ "title": "Model Evaluation for Extreme Risks",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36075589",
+ "created_at": "2023-05-25T20:16:30Z"
+ },
+ {
+ "hn_id": "37299645",
+ "title": "Objects in JWST's mirrors are closer than they appear",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37299645",
+ "created_at": "2023-08-28T19:58:02Z"
+ }
+ ],
+ "top_points": 110,
+ "total_points": 168,
+ "total_comments": 90
+}
+\ No newline at end of file
diff --git a/papers/gpqa-graduatelevel-googleproof-2023/hn.json b/papers/gpqa-graduatelevel-googleproof-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36961465",
+ "title": "Show HN: IdentityLM, cryptographic proof of identity via language model output",
+ "points": 4,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=36961465",
+ "created_at": "2023-08-01T19:36:54Z"
+ },
+ {
+ "hn_id": "34514345",
+ "title": "A Watermark for Large Language Models",
+ "points": 4,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=34514345",
+ "created_at": "2023-01-25T04:16:29Z"
+ },
+ {
+ "hn_id": "34531450",
+ "title": "A Watermark for Large Language Models",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34531450",
+ "created_at": "2023-01-26T13:39:16Z"
+ },
+ {
+ "hn_id": "38277213",
+ "title": "A Watermark for Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38277213",
+ "created_at": "2023-11-15T14:53:55Z"
+ },
+ {
+ "hn_id": "34521489",
+ "title": "A Watermark for Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34521489",
+ "created_at": "2023-01-25T17:43:46Z"
+ },
+ {
+ "hn_id": "42195926",
+ "title": "Modified Gravity Constraints from Full Shape Modeling of Clustering in DESI 2024",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42195926",
+ "created_at": "2024-11-20T17:02:03Z"
+ },
+ {
+ "hn_id": "34829003",
+ "title": "A Watermark for Large Language Models [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34829003",
+ "created_at": "2023-02-17T00:38:35Z"
+ },
+ {
+ "hn_id": "38530334",
+ "title": "Parametric Building Wireframe Reconstruction from Aerial Lidar Point Clouds",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38530334",
+ "created_at": "2023-12-05T13:19:29Z"
+ },
+ {
+ "hn_id": "38415451",
+ "title": "Double the performance per MAC unit in ML accelerators",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38415451",
+ "created_at": "2023-11-25T18:37:03Z"
+ },
+ {
+ "hn_id": "38408983",
+ "title": "Fast DNN Accelerator Architectures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38408983",
+ "created_at": "2023-11-24T22:16:05Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 25,
+ "total_comments": 8
+}
+\ No newline at end of file
diff --git a/papers/gpt4-technical-report-2023/hn.json b/papers/gpt4-technical-report-2023/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "35804556",
+ "title": "SparseGPT: Language Models Can Be Accurately Pruned in One-Shot",
+ "points": 211,
+ "comments": 62,
+ "url": "https://news.ycombinator.com/item?id=35804556",
+ "created_at": "2023-05-03T16:44:19Z"
+ },
+ {
+ "hn_id": "37285396",
+ "title": "PMET: Precise Model Editing in a Transformer",
+ "points": 119,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=37285396",
+ "created_at": "2023-08-27T18:35:14Z"
+ },
+ {
+ "hn_id": "37712713",
+ "title": "Fake News Detectors Are Biased Against Texts Generated by Large Language Models",
+ "points": 17,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=37712713",
+ "created_at": "2023-09-30T04:10:26Z"
+ },
+ {
+ "hn_id": "47335095",
+ "title": "I designed a bfloat16/FP8 alternative in a week using LLMs",
+ "points": 3,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=47335095",
+ "created_at": "2026-03-11T13:08:40Z"
+ },
+ {
+ "hn_id": "35431143",
+ "title": "GPT-4 Technical Report",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35431143",
+ "created_at": "2023-04-03T20:54:25Z"
+ },
+ {
+ "hn_id": "35191967",
+ "title": "OpenAI: GPT-4 Technical Report",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35191967",
+ "created_at": "2023-03-17T02:07:00Z"
+ },
+ {
+ "hn_id": "38646734",
+ "title": "ClimSim: A large multi-scale dataset for hybrid physics-ML climate emulation",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38646734",
+ "created_at": "2023-12-14T20:22:28Z"
+ },
+ {
+ "hn_id": "40108707",
+ "title": "Development of \"Cangaru\" GAI, GPT, LLM Accountable Reporting and Use Guidelines",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40108707",
+ "created_at": "2024-04-21T19:57:36Z"
+ },
+ {
+ "hn_id": "34868424",
+ "title": "Binary Embedding-Based Retrieval at Tencent",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34868424",
+ "created_at": "2023-02-20T14:34:05Z"
+ }
+ ],
+ "top_points": 211,
+ "total_points": 357,
+ "total_comments": 94
+}
+\ No newline at end of file
diff --git a/papers/gptoss-good-comprehensive-2025/hn.json b/papers/gptoss-good-comprehensive-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42807387",
+ "title": "A Faster Quantum Fourier Transform",
+ "points": 89,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=42807387",
+ "created_at": "2025-01-23T19:49:59Z"
+ },
+ {
+ "hn_id": "44792686",
+ "title": "Language Models Improve When Pretraining Data Matches Target Tasks",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44792686",
+ "created_at": "2025-08-04T23:48:16Z"
+ },
+ {
+ "hn_id": "43091208",
+ "title": "Show HN: Fray: A controlled concurrency testing framework for the JVM",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43091208",
+ "created_at": "2025-02-18T16:11:24Z"
+ },
+ {
+ "hn_id": "44982554",
+ "title": "Is GPT-OSS Good? A Comprehensive Evaluation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44982554",
+ "created_at": "2025-08-22T09:36:04Z"
+ },
+ {
+ "hn_id": "37315357",
+ "title": "Are ChatGPT and GPT-4 Good Poker Players? – A Pre-Flop Analysis",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37315357",
+ "created_at": "2023-08-29T23:05:56Z"
+ },
+ {
+ "hn_id": "44658474",
+ "title": "Scalable Chrysopoeia via (N,2n) Reactions Driven by Deuterium-Tritium Fusion",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44658474",
+ "created_at": "2025-07-23T12:30:10Z"
+ },
+ {
+ "hn_id": "37656429",
+ "title": "Are ChatGPT and GPT-4 Good Poker Players? – A Pre-Flop Analysis",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37656429",
+ "created_at": "2023-09-26T09:03:09Z"
+ },
+ {
+ "hn_id": "37409091",
+ "title": "Are ChatGPT and GPT-4 Good Poker Players? Yes but Not Game Theory Optimal",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37409091",
+ "created_at": "2023-09-06T18:27:32Z"
+ },
+ {
+ "hn_id": "45319150",
+ "title": "A Qualitative Study of Co-Creation, Communication, Flow, Trust in Vibe Coding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45319150",
+ "created_at": "2025-09-21T01:14:55Z"
+ },
+ {
+ "hn_id": "43175795",
+ "title": "Probing Non-Equilibrium Topological Order on a Quantum Processor",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43175795",
+ "created_at": "2025-02-25T18:53:09Z"
+ }
+ ],
+ "top_points": 89,
+ "total_points": 112,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/gpts-are-gpts-labor-market-2023/hn.json b/papers/gpts-are-gpts-labor-market-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35226364",
+ "title": "GPTs Are GPTs: An Early Look at the Labor Market Impact Potential of LLMs",
+ "points": 190,
+ "comments": 230,
+ "url": "https://news.ycombinator.com/item?id=35226364",
+ "created_at": "2023-03-20T02:04:37Z"
+ },
+ {
+ "hn_id": "34600232",
+ "title": "DetectGPT: Zero-Shot Machine-Generated Text Detection",
+ "points": 64,
+ "comments": 56,
+ "url": "https://news.ycombinator.com/item?id=34600232",
+ "created_at": "2023-01-31T19:12:56Z"
+ },
+ {
+ "hn_id": "37847563",
+ "title": "Grande: Gradient-Based Decision Tree Ensembles",
+ "points": 25,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37847563",
+ "created_at": "2023-10-11T17:32:38Z"
+ },
+ {
+ "hn_id": "34543315",
+ "title": "DetectGPT: Detecting if a passage was written by a language model",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34543315",
+ "created_at": "2023-01-27T06:42:32Z"
+ },
+ {
+ "hn_id": "43556236",
+ "title": "HiRAG: RAG with Hierarchical Knowledge",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43556236",
+ "created_at": "2025-04-02T13:06:12Z"
+ },
+ {
+ "hn_id": "39745657",
+ "title": "Raft: Adapting Language Model to Domain Specific RAG",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39745657",
+ "created_at": "2024-03-18T15:12:18Z"
+ },
+ {
+ "hn_id": "37640509",
+ "title": "Clustering Compact RISC-V-Based Vector Units to Maximize Computing Efficiency",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37640509",
+ "created_at": "2023-09-25T07:14:34Z"
+ },
+ {
+ "hn_id": "47400835",
+ "title": "An early look at the labor market impact potential of LLMs (2023)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47400835",
+ "created_at": "2026-03-16T16:05:22Z"
+ },
+ {
+ "hn_id": "35236455",
+ "title": "A Recipe for Watermarking Diffusion Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35236455",
+ "created_at": "2023-03-20T18:38:07Z"
+ },
+ {
+ "hn_id": "37667449",
+ "title": "Baichuan 2: Open Large-Scale Language Models. (ArXiv:2309.10305v1 [Cs.cl])",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37667449",
+ "created_at": "2023-09-26T23:38:48Z"
+ }
+ ],
+ "top_points": 190,
+ "total_points": 297,
+ "total_comments": 288
+}
+\ No newline at end of file
diff --git a/papers/granite-code-models-2024/hn.json b/papers/granite-code-models-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "39385811",
+ "title": "Personality trait recognition using ECG spectrograms and deep learning",
+ "points": 48,
+ "comments": 40,
+ "url": "https://news.ycombinator.com/item?id=39385811",
+ "created_at": "2024-02-15T17:49:03Z"
+ },
+ {
+ "hn_id": "31324857",
+ "title": "Panoptic Neural Fields: A Semantic Object-Aware Neural Scene Representation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31324857",
+ "created_at": "2022-05-10T08:38:46Z"
+ },
+ {
+ "hn_id": "42912008",
+ "title": "HarmBench: A Standardized Evaluation Framework for Robust Refusal",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42912008",
+ "created_at": "2025-02-02T21:26:17Z"
+ },
+ {
+ "hn_id": "35991015",
+ "title": "Penguin Huddling: A Continuum Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35991015",
+ "created_at": "2023-05-18T17:08:38Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 52,
+ "total_comments": 40
+}
+\ No newline at end of file
diff --git a/papers/graphbased-agent-memory-2026/hn.json b/papers/graphbased-agent-memory-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/graphcodeagent-dual-graphguided-2025/hn.json b/papers/graphcodeagent-dual-graphguided-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40120846",
+ "title": "FPGA Architecture for Deep Learning: Survey and Future Directions",
+ "points": 128,
+ "comments": 52,
+ "url": "https://news.ycombinator.com/item?id=40120846",
+ "created_at": "2024-04-22T21:13:51Z"
+ },
+ {
+ "hn_id": "46728063",
+ "title": "New York Times games are hard: A computational perspective",
+ "points": 73,
+ "comments": 33,
+ "url": "https://news.ycombinator.com/item?id=46728063",
+ "created_at": "2026-01-23T03:31:44Z"
+ },
+ {
+ "hn_id": "44819042",
+ "title": "Solving the compute crisis with physics-based ASICs",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44819042",
+ "created_at": "2025-08-06T23:29:40Z"
+ },
+ {
+ "hn_id": "42799267",
+ "title": "The Mathematics of Artificial Intelligence",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42799267",
+ "created_at": "2025-01-23T00:51:02Z"
+ },
+ {
+ "hn_id": "22958362",
+ "title": "Chip Placement with Deep Reinforcement Learning",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22958362",
+ "created_at": "2020-04-23T17:21:46Z"
+ },
+ {
+ "hn_id": "35662520",
+ "title": "Learning to Program with Natural Language",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35662520",
+ "created_at": "2023-04-22T01:45:40Z"
+ },
+ {
+ "hn_id": "44020812",
+ "title": "AI Agents vs. Agentic AI: A Conceptual Taxonomy, Applications and Challenges",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44020812",
+ "created_at": "2025-05-18T12:20:18Z"
+ },
+ {
+ "hn_id": "44002229",
+ "title": "Superposition of Features Creates Power Law Performance in LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44002229",
+ "created_at": "2025-05-16T05:58:20Z"
+ },
+ {
+ "hn_id": "35658291",
+ "title": "The Enmity Paradox",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35658291",
+ "created_at": "2023-04-21T18:52:22Z"
+ },
+ {
+ "hn_id": "24889330",
+ "title": "Chip Placement with Deep Reinforcement Learning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24889330",
+ "created_at": "2020-10-25T19:50:29Z"
+ }
+ ],
+ "top_points": 128,
+ "total_points": 229,
+ "total_comments": 89
+}
+\ No newline at end of file
diff --git a/papers/greencode-learning-optimize-2025/hn.json b/papers/greencode-learning-optimize-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/greenserv-energyefficient-contextaware-2026/hn.json b/papers/greenserv-energyefficient-contextaware-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47150074",
+ "title": "Large-Scale Study of GitHub Pull Requests: How AI Coding Agents Modify Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47150074",
+ "created_at": "2026-02-25T11:15:17Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/grok-4-model-2025/hn.json b/papers/grok-4-model-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/grokking-generalization-beyond-2022/hn.json b/papers/grokking-generalization-beyond-2022/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "36133058",
+ "title": "Grokking: Generalization Beyond Overfitting on Small Algorithmic Datasets",
+ "points": 13,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36133058",
+ "created_at": "2023-05-31T00:30:07Z"
+ },
+ {
+ "hn_id": "35696690",
+ "title": "Grokking: Generalization Beyond Overfitting on Small Algorithmic Datasets",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35696690",
+ "created_at": "2023-04-25T05:02:30Z"
+ },
+ {
+ "hn_id": "31958624",
+ "title": "Grokking: Generalization Beyond Overfitting on Small Algorithmic Datasets",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=31958624",
+ "created_at": "2022-07-02T12:56:57Z"
+ }
+ ],
+ "top_points": 13,
+ "total_points": 18,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/grokking-modular-arithmetic-2023/hn.json b/papers/grokking-modular-arithmetic-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/gsmplus-comprehensive-benchmark-2024/hn.json b/papers/gsmplus-comprehensive-benchmark-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42306766",
+ "title": "Beyond Language Models: Byte Models Are Digital World Simulators",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42306766",
+ "created_at": "2024-12-03T14:58:15Z"
+ },
+ {
+ "hn_id": "46502322",
+ "title": "Beyond Language Models: Byte Models Are Digital World Simulators (2024)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46502322",
+ "created_at": "2026-01-05T18:06:20Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/gspr-aligning-llm-2025/hn.json b/papers/gspr-aligning-llm-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "44169594",
+ "title": "Show HN: Cognee – Open-Source AI Memory Layer That Remembers Context",
+ "points": 9,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44169594",
+ "created_at": "2025-06-03T13:05:15Z"
+ }
+ ],
+ "top_points": 9,
+ "total_points": 9,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/guiding-llms-right-2024/hn.json b/papers/guiding-llms-right-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "22749961",
+ "title": "HouseGAN: Generate Realistic Floor Plan Layouts from Relational Graphs",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=22749961",
+ "created_at": "2020-04-01T15:51:08Z"
+ },
+ {
+ "hn_id": "46586960",
+ "title": "Show HN: Two-line change, 30% RAG boost",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46586960",
+ "created_at": "2026-01-12T11:20:16Z"
+ },
+ {
+ "hn_id": "40775759",
+ "title": "Assessing the Emergent Symbolic Reasoning Abilities of LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40775759",
+ "created_at": "2024-06-24T13:24:57Z"
+ },
+ {
+ "hn_id": "26385237",
+ "title": "Seer: Self-Supervised Pretraining of Visual Features in the Wild",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26385237",
+ "created_at": "2021-03-08T13:03:02Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 5,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/haieval-measuring-humanai-2025/hn.json b/papers/haieval-measuring-humanai-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "25314295",
+ "title": "Neural Teleportation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25314295",
+ "created_at": "2020-12-05T13:14:38Z"
+ },
+ {
+ "hn_id": "41124882",
+ "title": "Luck, skill, and depth of competition in games and social hierarchies",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41124882",
+ "created_at": "2024-08-01T00:08:49Z"
+ },
+ {
+ "hn_id": "46208288",
+ "title": "Autodeleveraging: Impossibilities and Optimization",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46208288",
+ "created_at": "2025-12-09T18:07:46Z"
+ },
+ {
+ "hn_id": "42348424",
+ "title": "Enhancing Mathematical Reasoning in LLMs with Background Operators",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42348424",
+ "created_at": "2024-12-07T09:23:20Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 7,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/hairtrigger-alignment-blackbox-2026/hn.json b/papers/hairtrigger-alignment-blackbox-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/haps-hierarchical-llm-2026/hn.json b/papers/haps-hierarchical-llm-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/hardware-security-benchmarking-2024/hn.json b/papers/hardware-security-benchmarking-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/harmtransform-transforming-explicit-2025/hn.json b/papers/harmtransform-transforming-explicit-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "43825422",
+ "title": "Jetbrains actively deleting negative reviews for AI plugin",
+ "points": 14,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=43825422",
+ "created_at": "2025-04-28T19:58:23Z"
+ },
+ {
+ "hn_id": "45881371",
+ "title": "Evaluating in Silico Creativity: An Expert Review of AI Chess Compositions",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45881371",
+ "created_at": "2025-11-10T21:46:55Z"
+ },
+ {
+ "hn_id": "45743257",
+ "title": "Linear effects, exceptions, resources: Curry-Howard destructors correspondence",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45743257",
+ "created_at": "2025-10-29T06:17:03Z"
+ },
+ {
+ "hn_id": "46433603",
+ "title": "Training AI Co-Scientists Using Rubric Rewards [Meta Superintelligence Labs]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46433603",
+ "created_at": "2025-12-30T14:25:11Z"
+ }
+ ],
+ "top_points": 14,
+ "total_points": 19,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/harnessing-language-coordination-2024/hn.json b/papers/harnessing-language-coordination-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "42448193",
+ "title": "No More Adam: Learning Rate Scaling at Initialization Is All You Need",
+ "points": 91,
+ "comments": 28,
+ "url": "https://news.ycombinator.com/item?id=42448193",
+ "created_at": "2024-12-18T04:49:55Z"
+ },
+ {
+ "hn_id": "43402629",
+ "title": "Drowning in Documents: Consequences of Scaling Reranker Inference",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43402629",
+ "created_at": "2025-03-18T18:04:19Z"
+ },
+ {
+ "hn_id": "41858887",
+ "title": "Language Models Encode Numbers Using Digit Representations in Base 10",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41858887",
+ "created_at": "2024-10-16T13:35:00Z"
+ },
+ {
+ "hn_id": "39033716",
+ "title": "Large Language Models for Generative Information Extraction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39033716",
+ "created_at": "2024-01-17T21:26:22Z"
+ }
+ ],
+ "top_points": 91,
+ "total_points": 97,
+ "total_comments": 28
+}
+\ No newline at end of file
diff --git a/papers/hazard-analysis-framework-2022/hn.json b/papers/hazard-analysis-framework-2022/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "32281497",
+ "title": "A hazard analysis framework for code synthesis large language models",
+ "points": 18,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32281497",
+ "created_at": "2022-07-29T20:39:18Z"
+ },
+ {
+ "hn_id": "41138059",
+ "title": "LazyLLM: Dynamic Token Pruning for Efficient Long Context LLM Inference",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41138059",
+ "created_at": "2024-08-02T11:50:08Z"
+ },
+ {
+ "hn_id": "32250707",
+ "title": "DayDreamer: World models for physical robot learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32250707",
+ "created_at": "2022-07-27T14:20:33Z"
+ }
+ ],
+ "top_points": 18,
+ "total_points": 22,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/hcast-humancalibrated-autonomy-2025/hn.json b/papers/hcast-humancalibrated-autonomy-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "39916282",
+ "title": "The Solution of the Zodiac Killer's 340-Character Cipher",
+ "points": 83,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=39916282",
+ "created_at": "2024-04-03T11:57:04Z"
+ },
+ {
+ "hn_id": "36145235",
+ "title": "Whose Opinions Do Language Models Reflect?",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36145235",
+ "created_at": "2023-05-31T22:26:38Z"
+ },
+ {
+ "hn_id": "44247421",
+ "title": "Mixed-Chip Clusters Enable Efficient Large-Scale AI Training",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44247421",
+ "created_at": "2025-06-11T13:28:31Z"
+ },
+ {
+ "hn_id": "36096237",
+ "title": "Not yet Another Digital ID: Privacy-Preserving Humanitarian Aid Distribution",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36096237",
+ "created_at": "2023-05-27T16:57:29Z"
+ },
+ {
+ "hn_id": "43819675",
+ "title": "When Gaussian Meets Surfel: Ultra-Fast High-Fidelity Radiance Field Rendering",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43819675",
+ "created_at": "2025-04-28T10:33:15Z"
+ },
+ {
+ "hn_id": "44503713",
+ "title": "Praise: Enhancing Product Descriptions with LLM-Driven Structured Insights",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44503713",
+ "created_at": "2025-07-08T20:21:27Z"
+ }
+ ],
+ "top_points": 83,
+ "total_points": 96,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/hearsay-benchmark-do-2026/hn.json b/papers/hearsay-benchmark-do-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/heterogeneous-multiagent-reinforcement-2024/hn.json b/papers/heterogeneous-multiagent-reinforcement-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42073801",
+ "title": "Evaluating the world model implicit in a generative model",
+ "points": 159,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=42073801",
+ "created_at": "2024-11-07T05:51:32Z"
+ },
+ {
+ "hn_id": "40107787",
+ "title": "Lossless Acceleration of LLM via Adaptive N-Gram Parallel Decoding",
+ "points": 136,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=40107787",
+ "created_at": "2024-04-21T18:02:40Z"
+ },
+ {
+ "hn_id": "40757551",
+ "title": "Evaluating the World Model Implicit in a Generative Model",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40757551",
+ "created_at": "2024-06-22T09:05:47Z"
+ },
+ {
+ "hn_id": "40300570",
+ "title": "HCC Is All You Need",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40300570",
+ "created_at": "2024-05-08T17:17:45Z"
+ },
+ {
+ "hn_id": "41625255",
+ "title": "The MLIR Transform Dialect. Your compiler is more powerful than you think",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41625255",
+ "created_at": "2024-09-23T12:13:03Z"
+ },
+ {
+ "hn_id": "39459395",
+ "title": "Unsupervised Evaluation of Code LLMs with Round-Trip Correctness",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39459395",
+ "created_at": "2024-02-21T20:53:25Z"
+ },
+ {
+ "hn_id": "39380575",
+ "title": "If Turing played piano with an artificial partner",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39380575",
+ "created_at": "2024-02-15T09:08:58Z"
+ },
+ {
+ "hn_id": "35520943",
+ "title": "ChatGPT Empowered Long-Step Robot Control in Various Environments",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35520943",
+ "created_at": "2023-04-11T04:43:42Z"
+ },
+ {
+ "hn_id": "41439259",
+ "title": "Help Finding LLM and Proof Based Refactoring Reference",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41439259",
+ "created_at": "2024-09-03T21:11:48Z"
+ },
+ {
+ "hn_id": "35594579",
+ "title": "Overview of the James Webb Space Telescope Mission",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35594579",
+ "created_at": "2023-04-16T21:49:06Z"
+ }
+ ],
+ "top_points": 159,
+ "total_points": 310,
+ "total_comments": 70
+}
+\ No newline at end of file
diff --git a/papers/hidden-progress-deep-2022/hn.json b/papers/hidden-progress-deep-2022/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "40975320",
+ "title": "Large models of what? Mistaking engineering achievements for linguistic agency",
+ "points": 184,
+ "comments": 156,
+ "url": "https://news.ycombinator.com/item?id=40975320",
+ "created_at": "2024-07-16T10:54:31Z"
+ },
+ {
+ "hn_id": "41371123",
+ "title": "Is the Hubble crisis connected with the extinction of dinosaurs? (2022)",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41371123",
+ "created_at": "2024-08-27T18:35:38Z"
+ },
+ {
+ "hn_id": "25080547",
+ "title": "Discovering Reinforcement Learning Algorithms",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25080547",
+ "created_at": "2020-11-13T09:14:29Z"
+ },
+ {
+ "hn_id": "42657991",
+ "title": "Progress in Deep Learning: SGD Learns Parities Near the Computational Limit",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42657991",
+ "created_at": "2025-01-10T17:55:55Z"
+ },
+ {
+ "hn_id": "32795736",
+ "title": "No Grammar to Rule Them All: A Survey of JSON-Style DSLs for Visualization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32795736",
+ "created_at": "2022-09-11T00:27:05Z"
+ },
+ {
+ "hn_id": "44561609",
+ "title": "One Token to Fool LLM-as-a-Judge",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44561609",
+ "created_at": "2025-07-14T15:51:17Z"
+ },
+ {
+ "hn_id": "39484586",
+ "title": "What Artificial Neural Networks Can Tell Us About Human Language Acquisition",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39484586",
+ "created_at": "2024-02-23T18:47:05Z"
+ },
+ {
+ "hn_id": "23982601",
+ "title": "Discovering Reinforcement Learning Algorithms",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23982601",
+ "created_at": "2020-07-29T01:30:36Z"
+ },
+ {
+ "hn_id": "27891525",
+ "title": "Detecting Oxbow Code in Erlang Codebases with the Highest Degree of Certainty",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27891525",
+ "created_at": "2021-07-20T09:13:52Z"
+ }
+ ],
+ "top_points": 184,
+ "total_points": 205,
+ "total_comments": 156
+}
+\ No newline at end of file
diff --git a/papers/hidden-risks-llm-web-code-2025/hn.json b/papers/hidden-risks-llm-web-code-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43991256",
+ "title": "LLMs get lost in multi-turn conversation",
+ "points": 374,
+ "comments": 259,
+ "url": "https://news.ycombinator.com/item?id=43991256",
+ "created_at": "2025-05-15T02:28:42Z"
+ },
+ {
+ "hn_id": "43369815",
+ "title": "A Proof of the Collatz Conjecture",
+ "points": 6,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=43369815",
+ "created_at": "2025-03-15T03:46:44Z"
+ },
+ {
+ "hn_id": "43249977",
+ "title": "A Proof of the Collatz Conjecture",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43249977",
+ "created_at": "2025-03-04T03:36:15Z"
+ },
+ {
+ "hn_id": "45392597",
+ "title": "Fast and Accurate Long Text Generation with Few-Step Diffusion Language Models",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45392597",
+ "created_at": "2025-09-27T01:22:24Z"
+ },
+ {
+ "hn_id": "35475791",
+ "title": "Eight things to know about large language models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35475791",
+ "created_at": "2023-04-06T23:11:43Z"
+ },
+ {
+ "hn_id": "35444967",
+ "title": "Eight Things to Know about Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35444967",
+ "created_at": "2023-04-04T19:46:22Z"
+ },
+ {
+ "hn_id": "43894376",
+ "title": "CrashFixer: A crash resolution agent for the Linux kernel",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43894376",
+ "created_at": "2025-05-05T12:31:05Z"
+ },
+ {
+ "hn_id": "31062922",
+ "title": "Are You Muted?: A Privacy Analysis of Mute Buttons in Video Conferencing",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=31062922",
+ "created_at": "2022-04-17T18:16:21Z"
+ },
+ {
+ "hn_id": "44652385",
+ "title": "Fixed point thm in metric spaces and its application to the Collatz conjecture",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44652385",
+ "created_at": "2025-07-22T20:07:15Z"
+ }
+ ],
+ "top_points": 374,
+ "total_points": 399,
+ "total_comments": 266
+}
+\ No newline at end of file
diff --git a/papers/hiding-ai-traffic-2025/hn.json b/papers/hiding-ai-traffic-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "40689052",
+ "title": "Microarchitectural Security of AWS Firecracker VMM for Serverless Cloud (2023)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40689052",
+ "created_at": "2024-06-15T11:25:54Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/hintaugmented-reranking-efficient-2025/hn.json b/papers/hintaugmented-reranking-efficient-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "25277281",
+ "title": "Who Is Debugging the Debuggers? Exposing Debug Bugs in Optimized Binaries",
+ "points": 98,
+ "comments": 22,
+ "url": "https://news.ycombinator.com/item?id=25277281",
+ "created_at": "2020-12-02T15:38:48Z"
+ },
+ {
+ "hn_id": "46246586",
+ "title": "Can You Learn to See Without Images? Procedural Warm-Up for Vision Transformers",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46246586",
+ "created_at": "2025-12-12T17:50:09Z"
+ },
+ {
+ "hn_id": "42916126",
+ "title": "Fanar: An Arabic-Centric Multimodal Generative AI Platform",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42916126",
+ "created_at": "2025-02-03T08:28:03Z"
+ },
+ {
+ "hn_id": "25283677",
+ "title": "Who’s Debugging the Debuggers? Exposing Bugs in Debug Information",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=25283677",
+ "created_at": "2020-12-03T00:21:15Z"
+ }
+ ],
+ "top_points": 98,
+ "total_points": 103,
+ "total_comments": 24
+}
+\ No newline at end of file
diff --git a/papers/hogyan-igazodjunk-el-2026/hn.json b/papers/hogyan-igazodjunk-el-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/holistic-eval-llms-code-2025/hn.json b/papers/holistic-eval-llms-code-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "42557775",
+ "title": "Mulberry: Empowering MLLM with o1-like Reasoning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42557775",
+ "created_at": "2024-12-31T10:22:36Z"
+ },
+ {
+ "hn_id": "46425525",
+ "title": "Optimal Software Pipelining and Warp Specialization for Tensor Core GPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46425525",
+ "created_at": "2025-12-29T20:54:07Z"
+ },
+ {
+ "hn_id": "46069881",
+ "title": "Conformal Prediction for Compositional Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46069881",
+ "created_at": "2025-11-27T15:03:53Z"
+ },
+ {
+ "hn_id": "46363503",
+ "title": "Layout-Aware Text Editing for Efficient Conversion of Academic PDFs to Markdown",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46363503",
+ "created_at": "2025-12-23T08:26:53Z"
+ },
+ {
+ "hn_id": "43150514",
+ "title": "Intuitive physics understanding emerges from self-supervised pretraining",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43150514",
+ "created_at": "2025-02-23T16:27:24Z"
+ },
+ {
+ "hn_id": "46021507",
+ "title": "World-in-World: World Models in a Closed-Loop World",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46021507",
+ "created_at": "2025-11-23T07:25:35Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 10,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/how-ai-impacts-2026/hn.json b/papers/how-ai-impacts-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46821360",
+ "title": "How AI impacts skill formation",
+ "points": 236,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=46821360",
+ "created_at": "2026-01-30T07:06:47Z"
+ }
+ ],
+ "top_points": 236,
+ "total_points": 236,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/how-beginning-programmers-2024/hn.json b/papers/how-beginning-programmers-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/how-data-mixing-2025/hn.json b/papers/how-data-mixing-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46415244",
+ "title": "A Profit-Based Measure of Lending Discrimination",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46415244",
+ "created_at": "2025-12-28T22:37:15Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/how-do-ai-2025/hn.json b/papers/how-do-ai-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46544369",
+ "title": "Valori – Deterministic Substrate for AI (Code and ArXiv Paper)",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46544369",
+ "created_at": "2026-01-08T18:11:44Z"
+ },
+ {
+ "hn_id": "46581822",
+ "title": "iOS as Acceleration",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46581822",
+ "created_at": "2026-01-11T23:48:28Z"
+ },
+ {
+ "hn_id": "46438777",
+ "title": "Exploiting Prime Selection Vulnerabilities in Public Key Cryptography (RSA)",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46438777",
+ "created_at": "2025-12-30T22:24:57Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 9,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/how-does-controllability-2025/hn.json b/papers/how-does-controllability-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36979886",
+ "title": "Observation of zero resistance above 100 K in Pb₁₀₋ₓCuₓ(PO₄)₆O",
+ "points": 779,
+ "comments": 372,
+ "url": "https://news.ycombinator.com/item?id=36979886",
+ "created_at": "2023-08-03T00:43:14Z"
+ },
+ {
+ "hn_id": "45553577",
+ "title": "Meta Superintelligence Labs' first paper is about RAG",
+ "points": 423,
+ "comments": 271,
+ "url": "https://news.ycombinator.com/item?id=45553577",
+ "created_at": "2025-10-11T23:16:05Z"
+ },
+ {
+ "hn_id": "44502527",
+ "title": "Dynamical origin of Theia, the last giant impactor on Earth",
+ "points": 96,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=44502527",
+ "created_at": "2025-07-08T18:10:46Z"
+ },
+ {
+ "hn_id": "43374283",
+ "title": "AutoHete: An Automatic and Efficient Heterogeneous Training System for LLMs",
+ "points": 44,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43374283",
+ "created_at": "2025-03-15T18:22:37Z"
+ },
+ {
+ "hn_id": "41262642",
+ "title": "AI and the value of privacy-preserving tools to distinguish who is real online",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41262642",
+ "created_at": "2024-08-16T02:37:29Z"
+ },
+ {
+ "hn_id": "45213397",
+ "title": "Refrag: Rethinking RAG Based Decoding",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45213397",
+ "created_at": "2025-09-11T16:22:46Z"
+ },
+ {
+ "hn_id": "45164490",
+ "title": "Refrag: Rethinking RAG Based Decoding",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45164490",
+ "created_at": "2025-09-08T03:53:27Z"
+ },
+ {
+ "hn_id": "42871314",
+ "title": "Is Your Image a Good Storyteller?",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42871314",
+ "created_at": "2025-01-29T21:20:31Z"
+ },
+ {
+ "hn_id": "41274485",
+ "title": "AI and the value of privacy-preserving tools to distinguish who is real online",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41274485",
+ "created_at": "2024-08-17T13:35:48Z"
+ },
+ {
+ "hn_id": "47286294",
+ "title": "MLP Memory: A Retriever-Pretrained Memory for Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47286294",
+ "created_at": "2026-03-07T10:26:16Z"
+ }
+ ],
+ "top_points": 779,
+ "total_points": 1364,
+ "total_comments": 691
+}
+\ No newline at end of file
diff --git a/papers/how-far-we-2025/hn.json b/papers/how-far-we-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "38869223",
+ "title": "Show HN: RAGatouille, a simple lib to use&train top retrieval models in RAG apps",
+ "points": 15,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=38869223",
+ "created_at": "2024-01-04T16:48:34Z"
+ },
+ {
+ "hn_id": "46439655",
+ "title": "Stable-Pretraining-v1: Foundation Model Research Made Simple",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46439655",
+ "created_at": "2025-12-30T23:51:39Z"
+ },
+ {
+ "hn_id": "43063462",
+ "title": "The hierarchy in HNSW is not necessary in high dimensions",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43063462",
+ "created_at": "2025-02-15T23:19:07Z"
+ },
+ {
+ "hn_id": "33870608",
+ "title": "Clustering – Basic Concepts and Methods",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33870608",
+ "created_at": "2022-12-05T19:30:19Z"
+ },
+ {
+ "hn_id": "45665498",
+ "title": "A Fine-Grained Purpose-Based Access Control System for Large Data Warehouses",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45665498",
+ "created_at": "2025-10-22T06:24:49Z"
+ },
+ {
+ "hn_id": "42962673",
+ "title": "Paradoxical Behavior in Collatz Sequences",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42962673",
+ "created_at": "2025-02-06T14:33:11Z"
+ },
+ {
+ "hn_id": "46504193",
+ "title": "Evolution Without an Oracle: Driving Effective Evolution with LLM Judges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46504193",
+ "created_at": "2026-01-05T20:12:58Z"
+ },
+ {
+ "hn_id": "42517812",
+ "title": "Improving feature interactions at Pinterest under industry constraints",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42517812",
+ "created_at": "2024-12-26T21:05:19Z"
+ },
+ {
+ "hn_id": "29450974",
+ "title": "ColBERTv2: Effective and Efficient Retrieval via Lightweight Late Interaction",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29450974",
+ "created_at": "2021-12-05T17:36:32Z"
+ }
+ ],
+ "top_points": 15,
+ "total_points": 38,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/how-much-does-2024/hn.json b/papers/how-much-does-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39164950",
+ "title": "Lumiere: A Space-Time Diffusion Model for Video Generation",
+ "points": 17,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39164950",
+ "created_at": "2024-01-28T12:14:51Z"
+ },
+ {
+ "hn_id": "42054102",
+ "title": "TextLap: Customizing Language Models for Text-to-Layout Planning",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42054102",
+ "created_at": "2024-11-05T18:41:30Z"
+ },
+ {
+ "hn_id": "39390245",
+ "title": "Lumiere: A Space-Time Diffusion Model for Video Generation",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39390245",
+ "created_at": "2024-02-15T22:40:42Z"
+ },
+ {
+ "hn_id": "38036218",
+ "title": "Zephyr 7B",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38036218",
+ "created_at": "2023-10-27T09:06:34Z"
+ },
+ {
+ "hn_id": "45255604",
+ "title": "High-Dimensional Statistics",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45255604",
+ "created_at": "2025-09-15T22:13:10Z"
+ },
+ {
+ "hn_id": "42306347",
+ "title": "Auto-RAG",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42306347",
+ "created_at": "2024-12-03T14:25:36Z"
+ },
+ {
+ "hn_id": "39158651",
+ "title": "Lumiere: A Space-Time Diffusion Model for Video Generation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39158651",
+ "created_at": "2024-01-27T18:59:57Z"
+ },
+ {
+ "hn_id": "39128778",
+ "title": "Meta Prompting by OpenAI and Mirac Suzgun Stanford",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39128778",
+ "created_at": "2024-01-25T12:23:06Z"
+ },
+ {
+ "hn_id": "44299612",
+ "title": "Developing RAG Based LLM Systems from PDFs: An Experience Report (2024)",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44299612",
+ "created_at": "2025-06-17T14:22:29Z"
+ },
+ {
+ "hn_id": "41890489",
+ "title": "How much does AI impact development speed?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41890489",
+ "created_at": "2024-10-19T20:22:43Z"
+ }
+ ],
+ "top_points": 17,
+ "total_points": 49,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/how-personnel-security-2025/hn.json b/papers/how-personnel-security-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42602347",
+ "title": "Did we miss P In CAP? Partial Progress Conjecture under Asynchrony",
+ "points": 42,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42602347",
+ "created_at": "2025-01-05T15:23:00Z"
+ },
+ {
+ "hn_id": "44805436",
+ "title": "Quantum machine learning via vector embeddings",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44805436",
+ "created_at": "2025-08-05T22:46:47Z"
+ },
+ {
+ "hn_id": "43382159",
+ "title": "Do Emotions Affect Argument Convincingness?",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43382159",
+ "created_at": "2025-03-16T20:48:09Z"
+ },
+ {
+ "hn_id": "44777459",
+ "title": "Hypertokens: Holographic Associative Memory in Tokenized LLMs",
+ "points": 3,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=44777459",
+ "created_at": "2025-08-03T16:00:47Z"
+ },
+ {
+ "hn_id": "42982812",
+ "title": "STP: Self-Play LLM Theorem Provers with Iterative Conjecturing and Proving",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42982812",
+ "created_at": "2025-02-08T13:26:22Z"
+ },
+ {
+ "hn_id": "42933721",
+ "title": "Querying Databases with Function Calling",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42933721",
+ "created_at": "2025-02-04T15:36:46Z"
+ },
+ {
+ "hn_id": "35475791",
+ "title": "Eight things to know about large language models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35475791",
+ "created_at": "2023-04-06T23:11:43Z"
+ },
+ {
+ "hn_id": "35444967",
+ "title": "Eight Things to Know about Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35444967",
+ "created_at": "2023-04-04T19:46:22Z"
+ },
+ {
+ "hn_id": "44302232",
+ "title": "An evaluation of LLMs for generating movie reviews",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44302232",
+ "created_at": "2025-06-17T18:28:17Z"
+ },
+ {
+ "hn_id": "43919128",
+ "title": "Quantifying the Fermi paradox via passive SETI",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43919128",
+ "created_at": "2025-05-07T18:32:13Z"
+ }
+ ],
+ "top_points": 42,
+ "total_points": 76,
+ "total_comments": 14
+}
+\ No newline at end of file
diff --git a/papers/human-interaction-evals-llm-2024/hn.json b/papers/human-interaction-evals-llm-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "40416657",
+ "title": "26× Faster Inference with Layer-Condensed KV Cache for Large Language Models",
+ "points": 127,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=40416657",
+ "created_at": "2024-05-20T15:33:44Z"
+ },
+ {
+ "hn_id": "36564350",
+ "title": "Relay Mining: Verifiable Multi-Tenant Distributed Rate Limiting",
+ "points": 41,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=36564350",
+ "created_at": "2023-07-02T18:41:41Z"
+ },
+ {
+ "hn_id": "39811260",
+ "title": "Explorer: Exploration-Guided Reasoning for Textual Reinforcement Learning",
+ "points": 25,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39811260",
+ "created_at": "2024-03-24T22:53:25Z"
+ },
+ {
+ "hn_id": "40198763",
+ "title": "Self-Playing Adversarial Language Game Enhances LLM Reasoning",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40198763",
+ "created_at": "2024-04-29T14:28:57Z"
+ },
+ {
+ "hn_id": "40583053",
+ "title": "The cool and the cruel: separating hard parts of LWE secrets",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40583053",
+ "created_at": "2024-06-05T09:37:29Z"
+ },
+ {
+ "hn_id": "40077383",
+ "title": "What are human values, and how do we align AI to them?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40077383",
+ "created_at": "2024-04-18T15:42:56Z"
+ },
+ {
+ "hn_id": "35617015",
+ "title": "Least-to-Most Prompting Enables Complex Reasoning in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35617015",
+ "created_at": "2023-04-18T17:27:21Z"
+ },
+ {
+ "hn_id": "41577224",
+ "title": "Relativistic elastic membranes: rotating disks and Dyson spheres",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41577224",
+ "created_at": "2024-09-18T08:25:23Z"
+ },
+ {
+ "hn_id": "40065265",
+ "title": "What are human values, and how do we align AI to them?[pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40065265",
+ "created_at": "2024-04-17T14:36:19Z"
+ }
+ ],
+ "top_points": 127,
+ "total_points": 205,
+ "total_comments": 25
+}
+\ No newline at end of file
diff --git a/papers/humanevalcomm-benchmarking-communication-2024/hn.json b/papers/humanevalcomm-benchmarking-communication-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45291024",
+ "title": "Launch HN: Cactus (YC S25) – AI inference on smartphones",
+ "points": 123,
+ "comments": 63,
+ "url": "https://news.ycombinator.com/item?id=45291024",
+ "created_at": "2025-09-18T15:40:29Z"
+ },
+ {
+ "hn_id": "44430311",
+ "title": "Small language models are the future of agentic AI",
+ "points": 113,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=44430311",
+ "created_at": "2025-07-01T03:33:49Z"
+ },
+ {
+ "hn_id": "36165862",
+ "title": "The feasibility of artificial consciousness through the lens of neuroscience",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36165862",
+ "created_at": "2023-06-02T14:49:24Z"
+ },
+ {
+ "hn_id": "44246361",
+ "title": "Small Language Models Are the Future of Agentic AI",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44246361",
+ "created_at": "2025-06-11T11:16:33Z"
+ },
+ {
+ "hn_id": "41137040",
+ "title": "Positive Mass in General Relativity Without Energy Conditions",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=41137040",
+ "created_at": "2024-08-02T08:19:18Z"
+ },
+ {
+ "hn_id": "39941576",
+ "title": "Jailbreaking Leading Safety-Aligned LLMs with Simple Adaptive Attacks",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39941576",
+ "created_at": "2024-04-05T12:30:05Z"
+ },
+ {
+ "hn_id": "40310614",
+ "title": "The AI Review Lottery: Widespread AI-Assisted Peer Reviews Boost Paper Scores",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40310614",
+ "created_at": "2024-05-09T17:31:58Z"
+ },
+ {
+ "hn_id": "45549900",
+ "title": "Agentic web browsing can't scale with cloud LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45549900",
+ "created_at": "2025-10-11T15:29:17Z"
+ },
+ {
+ "hn_id": "36179769",
+ "title": "The feasibility of artificial consciousness through the lens of neuroscience",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36179769",
+ "created_at": "2023-06-03T19:30:29Z"
+ },
+ {
+ "hn_id": "23527095",
+ "title": "MLOS: An Infrastructure for Automated Software Performance Engineering",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=23527095",
+ "created_at": "2020-06-15T13:31:04Z"
+ }
+ ],
+ "top_points": 123,
+ "total_points": 257,
+ "total_comments": 116
+}
+\ No newline at end of file
diff --git a/papers/hybridflow-resourceadaptive-subtask-2025/hn.json b/papers/hybridflow-resourceadaptive-subtask-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45769971",
+ "title": "Reasoning models reason well, until they don't",
+ "points": 218,
+ "comments": 217,
+ "url": "https://news.ycombinator.com/item?id=45769971",
+ "created_at": "2025-10-31T09:23:41Z"
+ },
+ {
+ "hn_id": "46438811",
+ "title": "A Course in Ring Theory",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46438811",
+ "created_at": "2025-12-30T22:27:10Z"
+ },
+ {
+ "hn_id": "46518323",
+ "title": "Beyond Full Builds: GPU Optimized LLM Framework with Minimal Executable Programs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46518323",
+ "created_at": "2026-01-06T20:37:18Z"
+ },
+ {
+ "hn_id": "46714925",
+ "title": "SlimEdge: Lightweight Distributed DNN Deployment on Constrained Hardware",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46714925",
+ "created_at": "2026-01-22T03:27:40Z"
+ },
+ {
+ "hn_id": "46633391",
+ "title": "The Imitation Game: Using LLMs as Chatbots to Combat Chat-Based Cybercrimes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46633391",
+ "created_at": "2026-01-15T14:55:40Z"
+ },
+ {
+ "hn_id": "46064544",
+ "title": "The Iceberg Index: Measuring Workforce Exposure Across the AI Economy",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46064544",
+ "created_at": "2025-11-27T01:45:43Z"
+ }
+ ],
+ "top_points": 218,
+ "total_points": 229,
+ "total_comments": 218
+}
+\ No newline at end of file
diff --git a/papers/hyperagent-generalist-software-2024/hn.json b/papers/hyperagent-generalist-software-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "41783122",
+ "title": "INT-FlashAttention: Enabling Flash Attention for INT8 Quantization",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41783122",
+ "created_at": "2024-10-09T00:04:36Z"
+ },
+ {
+ "hn_id": "39868006",
+ "title": "Applied Category Theory in the Wolfram Language Using Categorica I",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39868006",
+ "created_at": "2024-03-29T19:26:54Z"
+ },
+ {
+ "hn_id": "41760024",
+ "title": "Irrelevant Alternatives Bias Large Language Model Hiring Decisions",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41760024",
+ "created_at": "2024-10-06T20:27:12Z"
+ },
+ {
+ "hn_id": "41798265",
+ "title": "INT8 FlashAttention",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41798265",
+ "created_at": "2024-10-10T12:47:46Z"
+ },
+ {
+ "hn_id": "33121142",
+ "title": "Device Tracking via Linux TCP Source Port Selection Algorithm",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33121142",
+ "created_at": "2022-10-07T13:41:38Z"
+ },
+ {
+ "hn_id": "37610935",
+ "title": "Quantum Confusions, Cleared Up (or so I hope)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37610935",
+ "created_at": "2023-09-22T12:09:32Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 18,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/identifying-inaccurate-descriptions-2024/hn.json b/papers/identifying-inaccurate-descriptions-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42969750",
+ "title": "HippoRAG: Neurobiologically Inspired Long-Term Memory for LLMs (2024)",
+ "points": 65,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42969750",
+ "created_at": "2025-02-07T05:34:59Z"
+ },
+ {
+ "hn_id": "44351798",
+ "title": "Tensor Manipulation Unit (TMU): Reconfigurable, Near-Memory, High-Throughput AI",
+ "points": 58,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=44351798",
+ "created_at": "2025-06-23T01:43:11Z"
+ },
+ {
+ "hn_id": "40471638",
+ "title": "Not All Language Model Features Are Linear",
+ "points": 9,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=40471638",
+ "created_at": "2024-05-25T00:18:52Z"
+ },
+ {
+ "hn_id": "42708598",
+ "title": "HippoRAG: Neurobiologically Inspired Long-Term Memory for Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42708598",
+ "created_at": "2025-01-15T08:18:03Z"
+ },
+ {
+ "hn_id": "42389836",
+ "title": "From Explicit CoT to Implicit CoT: Learning to Internalize CoT Step by Step",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42389836",
+ "created_at": "2024-12-11T16:57:02Z"
+ },
+ {
+ "hn_id": "41386088",
+ "title": "Diffusion Models Are Real-Time Game Engines",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41386088",
+ "created_at": "2024-08-29T00:49:38Z"
+ },
+ {
+ "hn_id": "41139190",
+ "title": "Ranking Large Language Models Without Ground Truth",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41139190",
+ "created_at": "2024-08-02T14:44:52Z"
+ },
+ {
+ "hn_id": "41107497",
+ "title": "From Explicit Cot to Implicit Cot: Learning to Internalize Cot Step by Step",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41107497",
+ "created_at": "2024-07-30T09:36:30Z"
+ },
+ {
+ "hn_id": "39580207",
+ "title": "Comparing Inferential Strategies of Humans and LLMs in Deductive Reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39580207",
+ "created_at": "2024-03-03T11:34:52Z"
+ },
+ {
+ "hn_id": "41486754",
+ "title": "Diffusion models are real-time game engines",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41486754",
+ "created_at": "2024-09-09T09:20:00Z"
+ }
+ ],
+ "top_points": 65,
+ "total_points": 146,
+ "total_comments": 24
+}
+\ No newline at end of file
diff --git a/papers/illusion-insight-reasoning-2026/hn.json b/papers/illusion-insight-reasoning-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/immaculate-practical-llm-2026/hn.json b/papers/immaculate-practical-llm-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/impact-large-language-2024/hn.json b/papers/impact-large-language-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40975320",
+ "title": "Large models of what? Mistaking engineering achievements for linguistic agency",
+ "points": 184,
+ "comments": 156,
+ "url": "https://news.ycombinator.com/item?id=40975320",
+ "created_at": "2024-07-16T10:54:31Z"
+ },
+ {
+ "hn_id": "27364777",
+ "title": "Event-based backpropagation for exact gradients in spiking neural networks",
+ "points": 119,
+ "comments": 37,
+ "url": "https://news.ycombinator.com/item?id=27364777",
+ "created_at": "2021-06-02T04:17:14Z"
+ },
+ {
+ "hn_id": "41352091",
+ "title": "Realistic Synthetic UGC: A Scaffolding Approach to Generating Online Discussions",
+ "points": 35,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=41352091",
+ "created_at": "2024-08-25T22:32:32Z"
+ },
+ {
+ "hn_id": "24514218",
+ "title": "EventProp: Backpropagation for Exact Gradients in Spiking Neural Networks",
+ "points": 8,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24514218",
+ "created_at": "2020-09-18T08:13:29Z"
+ },
+ {
+ "hn_id": "44934611",
+ "title": "Scientific and technological knowledge grows linearly over time",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44934611",
+ "created_at": "2025-08-17T20:22:11Z"
+ },
+ {
+ "hn_id": "40488641",
+ "title": "Kolmogorov-Arnold Networks (KANs) for Time Series Analysis",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40488641",
+ "created_at": "2024-05-27T07:54:04Z"
+ },
+ {
+ "hn_id": "41566236",
+ "title": "The Impact of LLMs on Open-Source Innovation: Evidence from GitHub Copilot",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41566236",
+ "created_at": "2024-09-17T10:35:50Z"
+ },
+ {
+ "hn_id": "39693481",
+ "title": "Neural Exec: Learning Execution Triggers for Prompt Injection Attacks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39693481",
+ "created_at": "2024-03-13T16:22:05Z"
+ },
+ {
+ "hn_id": "39469976",
+ "title": "Seasons: Signal and Energy Aware Sensing on iNtermittent Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39469976",
+ "created_at": "2024-02-22T17:09:07Z"
+ },
+ {
+ "hn_id": "25196609",
+ "title": "GuessTheMusic: Song Identification from EEG Response",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25196609",
+ "created_at": "2020-11-24T08:58:28Z"
+ }
+ ],
+ "top_points": 184,
+ "total_points": 358,
+ "total_comments": 200
+}
+\ No newline at end of file
diff --git a/papers/implementing-grassroots-logic-2026/hn.json b/papers/implementing-grassroots-logic-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/importanceaware-data-selection-2025/hn.json b/papers/importanceaware-data-selection-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "10641304",
+ "title": "SceneNet: Understanding Real World Scenes with Synthetic Data",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=10641304",
+ "created_at": "2015-11-28T15:35:43Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 5,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/improving-factuality-reasoning-2023/hn.json b/papers/improving-factuality-reasoning-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "34541836",
+ "title": "MusicLM: Generating music from text",
+ "points": 291,
+ "comments": 107,
+ "url": "https://news.ycombinator.com/item?id=34541836",
+ "created_at": "2023-01-27T02:44:37Z"
+ },
+ {
+ "hn_id": "39454961",
+ "title": "How does one detect hallucinations?",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39454961",
+ "created_at": "2024-02-21T15:27:36Z"
+ },
+ {
+ "hn_id": "36102668",
+ "title": "Improving Factuality and Reasoning in Language Models Through Multiagent Debate",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36102668",
+ "created_at": "2023-05-28T10:03:03Z"
+ },
+ {
+ "hn_id": "36097897",
+ "title": "Improving Factuality and Reasoning in Language Models Through Multiagent Debate",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36097897",
+ "created_at": "2023-05-27T20:19:32Z"
+ },
+ {
+ "hn_id": "36124743",
+ "title": "“According To..“ Prompting LLMs Improves Quoting from Pre-Training Data",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36124743",
+ "created_at": "2023-05-30T13:37:40Z"
+ },
+ {
+ "hn_id": "36963354",
+ "title": "“According to” Prompting Language Models Improves Quoting from Pre-Training Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36963354",
+ "created_at": "2023-08-01T21:33:48Z"
+ },
+ {
+ "hn_id": "45576976",
+ "title": "From Automation to Autonomy",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45576976",
+ "created_at": "2025-10-14T06:48:24Z"
+ },
+ {
+ "hn_id": "45962516",
+ "title": "Nearest Neighbor Speculative Decoding for LLM Generation and Attribution",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45962516",
+ "created_at": "2025-11-18T08:00:42Z"
+ },
+ {
+ "hn_id": "36326434",
+ "title": "Zero-shot lip-to-speech synthesis with face image based voice control",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36326434",
+ "created_at": "2023-06-14T14:21:56Z"
+ },
+ {
+ "hn_id": "36116514",
+ "title": "Learning to Generate Novel Scientific Directions with Contextualized Discovery",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36116514",
+ "created_at": "2023-05-29T18:23:59Z"
+ }
+ ],
+ "top_points": 291,
+ "total_points": 312,
+ "total_comments": 112
+}
+\ No newline at end of file
diff --git a/papers/improving-llm-reasoning-2024/hn.json b/papers/improving-llm-reasoning-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "37985510",
+ "title": "Magnetic Fusion Plasma Drive",
+ "points": 14,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37985510",
+ "created_at": "2023-10-23T13:43:37Z"
+ },
+ {
+ "hn_id": "41291801",
+ "title": "MINT-1T: Open-Source Multimodal Dataset with One Trillion Tokens",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41291801",
+ "created_at": "2024-08-19T15:19:51Z"
+ },
+ {
+ "hn_id": "41633709",
+ "title": "A Preliminary Study of O1 in Medicine: Are We Closer to an AI Doctor",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41633709",
+ "created_at": "2024-09-24T06:46:42Z"
+ },
+ {
+ "hn_id": "41319942",
+ "title": "The Vizier Gaussian Process Bandit Algorithm",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41319942",
+ "created_at": "2024-08-22T13:19:32Z"
+ },
+ {
+ "hn_id": "41334001",
+ "title": "The Vizier Gaussian Process Bandit Algorithm",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41334001",
+ "created_at": "2024-08-23T23:26:19Z"
+ },
+ {
+ "hn_id": "41651058",
+ "title": "Towards Empathetic Conversational Recommender Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41651058",
+ "created_at": "2024-09-25T19:37:54Z"
+ }
+ ],
+ "top_points": 14,
+ "total_points": 23,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/incontext-distillation-selfconsistency-2025/hn.json b/papers/incontext-distillation-selfconsistency-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45854862",
+ "title": "Making Democracy Work: Fixing and Simplifying Egalitarian Paxos",
+ "points": 180,
+ "comments": 56,
+ "url": "https://news.ycombinator.com/item?id=45854862",
+ "created_at": "2025-11-08T07:29:35Z"
+ },
+ {
+ "hn_id": "46289799",
+ "title": "Beaver: An Efficient Deterministic LLM Verifier",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46289799",
+ "created_at": "2025-12-16T15:33:02Z"
+ },
+ {
+ "hn_id": "39125875",
+ "title": "Are Vision Transformers More Data Hungry Than Newborn Visual Systems?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39125875",
+ "created_at": "2024-01-25T03:21:20Z"
+ }
+ ],
+ "top_points": 180,
+ "total_points": 182,
+ "total_comments": 57
+}
+\ No newline at end of file
diff --git a/papers/incontext-learning-learning-2025/hn.json b/papers/incontext-learning-learning-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42807387",
+ "title": "A Faster Quantum Fourier Transform",
+ "points": 89,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=42807387",
+ "created_at": "2025-01-23T19:49:59Z"
+ },
+ {
+ "hn_id": "43496244",
+ "title": "Parameter-free KV cache compression for memory-efficient long-context LLMs",
+ "points": 65,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=43496244",
+ "created_at": "2025-03-27T18:07:41Z"
+ },
+ {
+ "hn_id": "43695562",
+ "title": "M1: Towards Scalable Test-Time Compute with Mamba Reasoning Models",
+ "points": 33,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=43695562",
+ "created_at": "2025-04-15T17:00:18Z"
+ },
+ {
+ "hn_id": "44024987",
+ "title": "Can You Trust Code Copilots? Evaluating LLMs from a Code Security Perspec",
+ "points": 11,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44024987",
+ "created_at": "2025-05-18T23:09:48Z"
+ },
+ {
+ "hn_id": "43116772",
+ "title": "AI Alignment at Your Discretion",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43116772",
+ "created_at": "2025-02-20T16:33:53Z"
+ },
+ {
+ "hn_id": "45284415",
+ "title": "Is In-Context Learning Learning?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45284415",
+ "created_at": "2025-09-18T02:27:54Z"
+ },
+ {
+ "hn_id": "45350535",
+ "title": "DeepMind Paper on Virtual Agent Economies",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45350535",
+ "created_at": "2025-09-23T17:54:23Z"
+ },
+ {
+ "hn_id": "45282518",
+ "title": "Virtual Agent Economies",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45282518",
+ "created_at": "2025-09-17T23:06:36Z"
+ },
+ {
+ "hn_id": "45268153",
+ "title": "Virtual Agent Economies",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45268153",
+ "created_at": "2025-09-16T21:14:43Z"
+ },
+ {
+ "hn_id": "45250763",
+ "title": "Advancing Deep Search Agents with Knowledge Graphs and Multi-Turn RL",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45250763",
+ "created_at": "2025-09-15T15:22:49Z"
+ }
+ ],
+ "top_points": 89,
+ "total_points": 210,
+ "total_comments": 30
+}
+\ No newline at end of file
diff --git a/papers/indirect-prompt-injections-2025/hn.json b/papers/indirect-prompt-injections-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "42657501",
+ "title": "The GAN is dead; long live the GAN - A Modern GAN Baseline",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42657501",
+ "created_at": "2025-01-10T17:07:45Z"
+ },
+ {
+ "hn_id": "39202830",
+ "title": "Low-Resource Languages Jailbreak GPT-4",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39202830",
+ "created_at": "2024-01-31T12:11:05Z"
+ },
+ {
+ "hn_id": "28839434",
+ "title": "User-driven design and evaluation of Liquid Types in Java",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28839434",
+ "created_at": "2021-10-12T13:32:25Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 5,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/inducing-vulnerable-code-2025/hn.json b/papers/inducing-vulnerable-code-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44353071",
+ "title": "Companies should be liable for the serious privacy concerns of LLMs",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44353071",
+ "created_at": "2025-06-23T06:41:35Z"
+ },
+ {
+ "hn_id": "44642760",
+ "title": "Diffusion Beats Autoregressive in Data-Constrained Settings",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44642760",
+ "created_at": "2025-07-22T02:45:19Z"
+ },
+ {
+ "hn_id": "44653340",
+ "title": "Diffusion Beats Autoregressive in Data-Constrained Settings",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44653340",
+ "created_at": "2025-07-22T21:43:31Z"
+ },
+ {
+ "hn_id": "47213997",
+ "title": "Von Neumann on Consciousness in Quantum Mechanics",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47213997",
+ "created_at": "2026-03-02T04:46:53Z"
+ },
+ {
+ "hn_id": "45232738",
+ "title": "Correctness-Guaranteed Code Generation via Constrained Decoding",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45232738",
+ "created_at": "2025-09-13T15:13:22Z"
+ },
+ {
+ "hn_id": "42829895",
+ "title": "HTAP Databases: A Survey",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42829895",
+ "created_at": "2025-01-26T13:15:26Z"
+ },
+ {
+ "hn_id": "43974319",
+ "title": "Can Third-Parties Read Our Emotions?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43974319",
+ "created_at": "2025-05-13T15:56:02Z"
+ },
+ {
+ "hn_id": "44325072",
+ "title": "Sekai: A Video Dataset Towards World Exploration",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44325072",
+ "created_at": "2025-06-20T05:51:05Z"
+ },
+ {
+ "hn_id": "44902095",
+ "title": "AlgoTune: Can Language Models Speed Up General-Purpose Numerical Programs?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44902095",
+ "created_at": "2025-08-14T16:04:10Z"
+ },
+ {
+ "hn_id": "44329807",
+ "title": "SwarmAgentic: Automated Agentic System Generation via Swarm Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44329807",
+ "created_at": "2025-06-20T17:13:34Z"
+ }
+ ],
+ "top_points": 9,
+ "total_points": 32,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/inference-scaling-flaws-2024/hn.json b/papers/inference-scaling-flaws-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "39229755",
+ "title": "Arrows of Time for Large Language Models",
+ "points": 6,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=39229755",
+ "created_at": "2024-02-02T15:33:39Z"
+ },
+ {
+ "hn_id": "42258272",
+ "title": "Inference Scaling FLaws: The Limits of LLM Resampling with Imperfect Verifiers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258272",
+ "created_at": "2024-11-27T18:15:21Z"
+ },
+ {
+ "hn_id": "38482212",
+ "title": "Language Models: A Guide for the Perplexed",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38482212",
+ "created_at": "2023-12-01T02:18:03Z"
+ },
+ {
+ "hn_id": "46384504",
+ "title": "Dark Patterns and Deceptive Designs in Chinese and Japanese F2P Mobile Games",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46384504",
+ "created_at": "2025-12-25T14:10:50Z"
+ },
+ {
+ "hn_id": "38475261",
+ "title": "Language Models: A Guide for the Perplexed",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38475261",
+ "created_at": "2023-11-30T16:13:10Z"
+ },
+ {
+ "hn_id": "42740309",
+ "title": "Language Models: A Guide for the Perplexed (2023)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42740309",
+ "created_at": "2025-01-17T17:00:34Z"
+ },
+ {
+ "hn_id": "42709928",
+ "title": "Language Models: A Guide for the Perplexed",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42709928",
+ "created_at": "2025-01-15T11:58:08Z"
+ },
+ {
+ "hn_id": "39745066",
+ "title": "Arrows of Time for Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39745066",
+ "created_at": "2024-03-18T14:29:48Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 18,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/inference-scaling-laws-2024/hn.json b/papers/inference-scaling-laws-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44805436",
+ "title": "Quantum machine learning via vector embeddings",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44805436",
+ "created_at": "2025-08-05T22:46:47Z"
+ },
+ {
+ "hn_id": "39606796",
+ "title": "Dialect prejudice predicts AI decisions about people's character",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39606796",
+ "created_at": "2024-03-05T17:46:09Z"
+ },
+ {
+ "hn_id": "40308877",
+ "title": "A Survey on the Real Power of ChatGPT",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40308877",
+ "created_at": "2024-05-09T14:55:57Z"
+ },
+ {
+ "hn_id": "41196057",
+ "title": "Deceptive AI is most convincing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41196057",
+ "created_at": "2024-08-08T20:45:23Z"
+ },
+ {
+ "hn_id": "37528261",
+ "title": "An Exact Equivalence for Finite Classification Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37528261",
+ "created_at": "2023-09-15T19:47:22Z"
+ },
+ {
+ "hn_id": "39654130",
+ "title": "Information Flow Routes: Automatically Interpreting Language Models at Scale",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39654130",
+ "created_at": "2024-03-09T19:31:41Z"
+ },
+ {
+ "hn_id": "39653620",
+ "title": "Bert for Information Retrieval: Survey, Applications, Resources, and Challenges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39653620",
+ "created_at": "2024-03-09T18:14:39Z"
+ },
+ {
+ "hn_id": "47111778",
+ "title": "Deception Analysis with Artificial Intelligence an Interdisciplinary Perspective",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47111778",
+ "created_at": "2026-02-22T15:30:25Z"
+ },
+ {
+ "hn_id": "39671122",
+ "title": "Dialect predicts AI decisions about character, employability, and criminality",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39671122",
+ "created_at": "2024-03-11T17:39:22Z"
+ },
+ {
+ "hn_id": "45265393",
+ "title": "Coordinating \"7B Humans\" is hard",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45265393",
+ "created_at": "2025-09-16T17:44:31Z"
+ }
+ ],
+ "top_points": 11,
+ "total_points": 29,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/inferenceonly-prompt-projection-2026/hn.json b/papers/inferenceonly-prompt-projection-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/information-capacity-evaluating-2025/hn.json b/papers/information-capacity-evaluating-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42718166",
+ "title": "Titans: Learning to Memorize at Test Time",
+ "points": 161,
+ "comments": 35,
+ "url": "https://news.ycombinator.com/item?id=42718166",
+ "created_at": "2025-01-15T22:39:49Z"
+ },
+ {
+ "hn_id": "42028873",
+ "title": "Spann: Highly-Efficient Billion-Scale Approximate Nearest Neighbor Search (2021)",
+ "points": 124,
+ "comments": 33,
+ "url": "https://news.ycombinator.com/item?id=42028873",
+ "created_at": "2024-11-02T20:02:23Z"
+ },
+ {
+ "hn_id": "42688392",
+ "title": "Titans: Learning to Memorize at Test Time",
+ "points": 115,
+ "comments": 15,
+ "url": "https://news.ycombinator.com/item?id=42688392",
+ "created_at": "2025-01-13T20:11:14Z"
+ },
+ {
+ "hn_id": "42270468",
+ "title": "Physics in Next-Token Prediction",
+ "points": 28,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42270468",
+ "created_at": "2024-11-29T03:10:50Z"
+ },
+ {
+ "hn_id": "45952746",
+ "title": "TabPFN-2.5: Advancing the State of the Art in Tabular Foundation Models",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45952746",
+ "created_at": "2025-11-17T11:38:20Z"
+ },
+ {
+ "hn_id": "42710451",
+ "title": "Titans: Learning to Memorize at Test Time",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=42710451",
+ "created_at": "2025-01-15T13:16:03Z"
+ },
+ {
+ "hn_id": "42274748",
+ "title": "Physics-Informed Machine Learning: A Survey",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42274748",
+ "created_at": "2024-11-29T16:04:38Z"
+ },
+ {
+ "hn_id": "2893666",
+ "title": "Every hour of TV watched after age 25 reduces life expectancy by 22 minutes",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=2893666",
+ "created_at": "2011-08-17T01:44:53Z"
+ },
+ {
+ "hn_id": "2891660",
+ "title": "Every hour of TV watching shortens life by 22 minutes",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=2891660",
+ "created_at": "2011-08-16T15:58:19Z"
+ },
+ {
+ "hn_id": "33898229",
+ "title": "Teaching Algorithmic Reasoning via In-Context Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33898229",
+ "created_at": "2022-12-07T18:36:38Z"
+ }
+ ],
+ "top_points": 161,
+ "total_points": 449,
+ "total_comments": 92
+}
+\ No newline at end of file
diff --git a/papers/institutional-ai-governance-2026/hn.json b/papers/institutional-ai-governance-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/institutional-ai-governing-2026/hn.json b/papers/institutional-ai-governing-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46723256",
+ "title": "Scaling of 2-D Semiconductor Nanoribbons for High-Performance Electronics",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46723256",
+ "created_at": "2026-01-22T18:30:21Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/instruction-tuning-large-2025/hn.json b/papers/instruction-tuning-large-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46523638",
+ "title": "An Electronic Ising Machine",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46523638",
+ "created_at": "2026-01-07T07:38:39Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 5,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/insured-agents-decentralized-2025/hn.json b/papers/insured-agents-decentralized-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45890174",
+ "title": "Orbital Characterization of a Newly Discovered Small Satellite Around Quaoar",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45890174",
+ "created_at": "2025-11-11T17:26:07Z"
+ },
+ {
+ "hn_id": "38340183",
+ "title": "Containerisation for High Performance Computing Systems: Survey and Prospects",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38340183",
+ "created_at": "2023-11-20T00:09:54Z"
+ },
+ {
+ "hn_id": "42959152",
+ "title": "SmolLM2: When Smol Goes Big – Data-Centric Training of a Small Language Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42959152",
+ "created_at": "2025-02-06T04:41:22Z"
+ },
+ {
+ "hn_id": "42739555",
+ "title": "Enhancing CGRA Efficiency Through Aligned Compute and Communication Provisioning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42739555",
+ "created_at": "2025-01-17T16:20:18Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 8,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/integrated-alignment-2025/hn.json b/papers/integrated-alignment-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "24247130",
+ "title": "Manticore: A 4096-core RISC-V Chiplet Arch for Ultra-efficient FP Computing",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24247130",
+ "created_at": "2020-08-22T20:45:30Z"
+ },
+ {
+ "hn_id": "42308797",
+ "title": "Foundations of Algorithmic Thermodynamics (2023)",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42308797",
+ "created_at": "2024-12-03T17:37:34Z"
+ },
+ {
+ "hn_id": "44570743",
+ "title": "LLMs fail to demonstrate internal world model, according to Harvard/MIT study",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44570743",
+ "created_at": "2025-07-15T13:09:20Z"
+ },
+ {
+ "hn_id": "24208779",
+ "title": "Manticore: A 4096-core RISC-V Chiplet Arch for Ultra-efficient FP Computing",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24208779",
+ "created_at": "2020-08-19T10:00:12Z"
+ },
+ {
+ "hn_id": "42016994",
+ "title": "The AI Scientist: Towards Automated Open-Ended Scientific Discovery",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42016994",
+ "created_at": "2024-11-01T14:03:12Z"
+ },
+ {
+ "hn_id": "41993697",
+ "title": "The AI Scientist: Towards Automated Open-Ended Scientific Discovery",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41993697",
+ "created_at": "2024-10-30T11:20:09Z"
+ },
+ {
+ "hn_id": "37631573",
+ "title": "An Efficient Quantum Factoring Algorithm",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37631573",
+ "created_at": "2023-09-24T09:44:43Z"
+ },
+ {
+ "hn_id": "42683870",
+ "title": "Towards Backdoor Stealthiness in Model Parameter Space",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42683870",
+ "created_at": "2025-01-13T14:41:26Z"
+ },
+ {
+ "hn_id": "41258330",
+ "title": "The AI Scientist: Towards Automated Open-Ended Scientific Discovery",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41258330",
+ "created_at": "2024-08-15T17:21:53Z"
+ },
+ {
+ "hn_id": "41234374",
+ "title": "The AI Scientist: Towards Automated Open-Ended Scientific Discovery",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41234374",
+ "created_at": "2024-08-13T11:29:47Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 25,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/intelligence-per-watt-2025/hn.json b/papers/intelligence-per-watt-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45905451",
+ "title": "LLM Output Drift in Financial Workflows: Validation and Mitigation (arXiv)",
+ "points": 24,
+ "comments": 26,
+ "url": "https://news.ycombinator.com/item?id=45905451",
+ "created_at": "2025-11-12T19:53:25Z"
+ },
+ {
+ "hn_id": "46118400",
+ "title": "Intelligence per Watt: Measuring Intelligence Efficiency of Local AI",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46118400",
+ "created_at": "2025-12-02T06:55:58Z"
+ },
+ {
+ "hn_id": "29775107",
+ "title": "Program Synthesis Performance Of GitHub Copilot vs. Genetic Programming",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29775107",
+ "created_at": "2022-01-02T23:06:39Z"
+ },
+ {
+ "hn_id": "38285475",
+ "title": "Bring Your Own KG: Self-Supervised Program Synthesis for Zero-Shot KGQA",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38285475",
+ "created_at": "2023-11-16T03:11:23Z"
+ }
+ ],
+ "top_points": 24,
+ "total_points": 32,
+ "total_comments": 26
+}
+\ No newline at end of file
diff --git a/papers/interactive-code-generation-2022/hn.json b/papers/interactive-code-generation-2022/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "44889206",
+ "title": "Large Language Models Do Not Simulate Human Psychology",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44889206",
+ "created_at": "2025-08-13T14:50:01Z"
+ },
+ {
+ "hn_id": "38006205",
+ "title": "UK NCSC and GCHQ's Thoughts on Child Safety on Commodity Platforms (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38006205",
+ "created_at": "2023-10-24T21:54:20Z"
+ },
+ {
+ "hn_id": "28289552",
+ "title": "Transferring Manipulation from GPU Simulation to a Remote Real-World TriFinger",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28289552",
+ "created_at": "2021-08-24T14:48:13Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/interactive-debugging-steering-2025/hn.json b/papers/interactive-debugging-steering-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "45235119",
+ "title": "Instruction-Following Pruning for Large Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45235119",
+ "created_at": "2025-09-13T20:37:50Z"
+ },
+ {
+ "hn_id": "43240687",
+ "title": "Flash Interpretability: Decoding Specialised Feature Neurons in LLM",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43240687",
+ "created_at": "2025-03-03T11:26:53Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/interfaze-future-ai-2026/hn.json b/papers/interfaze-future-ai-2026/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46925536",
+ "title": "Learning to Reason in 13 Parameters",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46925536",
+ "created_at": "2026-02-07T17:16:58Z"
+ },
+ {
+ "hn_id": "47002162",
+ "title": "Learning to Reason in 13 Parameters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47002162",
+ "created_at": "2026-02-13T12:52:41Z"
+ },
+ {
+ "hn_id": "47027127",
+ "title": "Multi-Agent Teams Hold Experts Back",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47027127",
+ "created_at": "2026-02-15T20:18:24Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/internbootcamp-technical-report-2025/hn.json b/papers/internbootcamp-technical-report-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "37288987",
+ "title": "Answering ambiguous questions with a database of questions, answers, revisions",
+ "points": 21,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37288987",
+ "created_at": "2023-08-28T02:28:01Z"
+ },
+ {
+ "hn_id": "44908292",
+ "title": "Distillation Scaling Laws",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44908292",
+ "created_at": "2025-08-15T03:22:10Z"
+ },
+ {
+ "hn_id": "43039955",
+ "title": "Distillation Scaling Laws",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43039955",
+ "created_at": "2025-02-13T19:11:35Z"
+ },
+ {
+ "hn_id": "44427833",
+ "title": "Simple low-dimensional computations explain variability in neuronal activity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44427833",
+ "created_at": "2025-06-30T21:01:35Z"
+ },
+ {
+ "hn_id": "45222579",
+ "title": "KNNSampler: Stochastic Imputations for Recovering Missing Value Distributions",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45222579",
+ "created_at": "2025-09-12T14:32:36Z"
+ },
+ {
+ "hn_id": "44604096",
+ "title": "Coordination and Collaborative Reasoning in Multi-Agent LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44604096",
+ "created_at": "2025-07-18T12:45:27Z"
+ }
+ ],
+ "top_points": 21,
+ "total_points": 33,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/interpreting-emergent-extreme-2026/hn.json b/papers/interpreting-emergent-extreme-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/interpretive-cultures-resonance-2026/hn.json b/papers/interpretive-cultures-resonance-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47023905",
+ "title": "Retrieval-Aware Distillation for Transformer-SSM Hybrids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47023905",
+ "created_at": "2026-02-15T14:24:02Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/inthewild-model-organisms-2026/hn.json b/papers/inthewild-model-organisms-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/introlm-introspective-language-2026/hn.json b/papers/introlm-introspective-language-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/intuition-to-evidence-productivity-2025/hn.json b/papers/intuition-to-evidence-productivity-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45114579",
+ "title": "The wall confronting large language models",
+ "points": 172,
+ "comments": 200,
+ "url": "https://news.ycombinator.com/item?id=45114579",
+ "created_at": "2025-09-03T11:40:41Z"
+ },
+ {
+ "hn_id": "43890313",
+ "title": "Your ViT Is Secretly an Image Segmentation Model",
+ "points": 10,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43890313",
+ "created_at": "2025-05-04T22:54:49Z"
+ },
+ {
+ "hn_id": "44407745",
+ "title": "The Unreasonable Effectiveness of Mathematical Experiments",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44407745",
+ "created_at": "2025-06-28T20:07:21Z"
+ },
+ {
+ "hn_id": "43889722",
+ "title": "Mega Mass Assembly with JWST: The MIRI EGS Galaxy and AGN Survey",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43889722",
+ "created_at": "2025-05-04T21:26:16Z"
+ },
+ {
+ "hn_id": "44808368",
+ "title": "The wall confronting large language models",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44808368",
+ "created_at": "2025-08-06T06:21:39Z"
+ },
+ {
+ "hn_id": "46203378",
+ "title": "Are most sentences unique? An empirical examination of Chomskyan claims",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46203378",
+ "created_at": "2025-12-09T10:25:50Z"
+ },
+ {
+ "hn_id": "44304578",
+ "title": "Serving Large Language Models on Huawei CloudMatrix384",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44304578",
+ "created_at": "2025-06-17T22:18:43Z"
+ },
+ {
+ "hn_id": "43318708",
+ "title": "MAML: Towards a Faster Web in Developing Regions",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43318708",
+ "created_at": "2025-03-10T10:03:48Z"
+ },
+ {
+ "hn_id": "46445614",
+ "title": "Mechanical non-reciprocity programmed by shear jamming in soft composite solids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46445614",
+ "created_at": "2025-12-31T16:32:15Z"
+ },
+ {
+ "hn_id": "46205110",
+ "title": "Not Minds, but Signs: Reframing LLMs Through Semiotics [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46205110",
+ "created_at": "2025-12-09T14:13:43Z"
+ }
+ ],
+ "top_points": 172,
+ "total_points": 212,
+ "total_comments": 203
+}
+\ No newline at end of file
diff --git a/papers/investigating-intersectional-bias-2025/hn.json b/papers/investigating-intersectional-bias-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "44582856",
+ "title": "A LoD of Gaussians: Ultra-Large Scale Reconstruction with External Memory",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44582856",
+ "created_at": "2025-07-16T14:40:05Z"
+ },
+ {
+ "hn_id": "44561157",
+ "title": "The Kinematic Age of 3I/Atlas and Its Implications for Early Planet Formation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44561157",
+ "created_at": "2025-07-14T15:12:25Z"
+ },
+ {
+ "hn_id": "45466398",
+ "title": "Who's Advertising to Your AI?",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45466398",
+ "created_at": "2025-10-03T18:53:26Z"
+ },
+ {
+ "hn_id": "45867965",
+ "title": "FPI-Det: A Face–Phone Interaction Dataset for Phone-Use Detection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45867965",
+ "created_at": "2025-11-09T18:43:52Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 6,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/investigation-group-query-2025/hn.json b/papers/investigation-group-query-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45474900",
+ "title": "How to inject knowledge efficiently? Knowledge infusion scaling law for LLMs",
+ "points": 105,
+ "comments": 35,
+ "url": "https://news.ycombinator.com/item?id=45474900",
+ "created_at": "2025-10-04T17:18:07Z"
+ },
+ {
+ "hn_id": "47292454",
+ "title": "Technological Folie à Deux",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47292454",
+ "created_at": "2026-03-07T23:21:38Z"
+ },
+ {
+ "hn_id": "44887277",
+ "title": "Technological Folie à Deux:Feedback Loops Between AI Chatbots and Mental Illness",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44887277",
+ "created_at": "2025-08-13T11:44:38Z"
+ },
+ {
+ "hn_id": "43405094",
+ "title": "Politicians' misinformation behavior and public engagement, in 4 countries",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43405094",
+ "created_at": "2025-03-18T21:03:45Z"
+ },
+ {
+ "hn_id": "37455031",
+ "title": "Exposing and Addressing Security Vulnerabilities in Browser Text Input Fields",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37455031",
+ "created_at": "2023-09-10T12:01:20Z"
+ },
+ {
+ "hn_id": "45117954",
+ "title": "Learned Perceptive Forward Dynamics Model for Safe Robotic Navigation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45117954",
+ "created_at": "2025-09-03T16:49:02Z"
+ },
+ {
+ "hn_id": "44270515",
+ "title": "Grassroots Consensus",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44270515",
+ "created_at": "2025-06-13T17:39:42Z"
+ },
+ {
+ "hn_id": "44147078",
+ "title": "SoloSpeech: A high-quality target speech extractor",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44147078",
+ "created_at": "2025-05-31T21:37:25Z"
+ },
+ {
+ "hn_id": "43495798",
+ "title": "RGL: Graph-Centric,Framework for Efficient RAG on Graphs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43495798",
+ "created_at": "2025-03-27T17:25:12Z"
+ },
+ {
+ "hn_id": "43067948",
+ "title": "A Model for French Voters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43067948",
+ "created_at": "2025-02-16T13:49:10Z"
+ }
+ ],
+ "top_points": 105,
+ "total_points": 126,
+ "total_comments": 36
+}
+\ No newline at end of file
diff --git a/papers/ipiguard-novel-tool-2025/hn.json b/papers/ipiguard-novel-tool-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "43943031",
+ "title": "RAGDoll: Efficient Offloading-Based Online RAG System on a Single GPU",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43943031",
+ "created_at": "2025-05-10T03:35:35Z"
+ },
+ {
+ "hn_id": "45484326",
+ "title": "Hybrid unary-binary design for multiplier-less printed ML classifiers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45484326",
+ "created_at": "2025-10-05T19:14:19Z"
+ },
+ {
+ "hn_id": "43678576",
+ "title": "A Foundational Theory for Decentralized Sensory Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43678576",
+ "created_at": "2025-04-14T06:24:04Z"
+ },
+ {
+ "hn_id": "43458449",
+ "title": "A Foundational Theory for Decentralized Sensory Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43458449",
+ "created_at": "2025-03-24T07:42:22Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 10,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/jailbreaking-safety-aligned-llms-2024/hn.json b/papers/jailbreaking-safety-aligned-llms-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39941576",
+ "title": "Jailbreaking Leading Safety-Aligned LLMs with Simple Adaptive Attacks",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39941576",
+ "created_at": "2024-04-05T12:30:05Z"
+ },
+ {
+ "hn_id": "40310614",
+ "title": "The AI Review Lottery: Widespread AI-Assisted Peer Reviews Boost Paper Scores",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40310614",
+ "created_at": "2024-05-09T17:31:58Z"
+ },
+ {
+ "hn_id": "39987108",
+ "title": "Text-to-SQL that asks the LLM to predict the result set",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39987108",
+ "created_at": "2024-04-10T04:58:41Z"
+ },
+ {
+ "hn_id": "43703965",
+ "title": "LLMs, Syntax, and Semantics: Long-Distance Binding of Chinese Reflexive Ziji",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43703965",
+ "created_at": "2025-04-16T11:22:09Z"
+ },
+ {
+ "hn_id": "40663653",
+ "title": "Poco: Policy Composition from and for Heterogeneous Robot Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40663653",
+ "created_at": "2024-06-12T21:57:06Z"
+ },
+ {
+ "hn_id": "41203499",
+ "title": "Information preservation in Kerr-Newman spacetime using closed timelike curves",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41203499",
+ "created_at": "2024-08-09T16:54:20Z"
+ },
+ {
+ "hn_id": "39257382",
+ "title": "CamPro: Camera-Based Anti-Facial Recognition",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39257382",
+ "created_at": "2024-02-05T04:34:54Z"
+ },
+ {
+ "hn_id": "39253694",
+ "title": "CamPro: Camera-Based Anti-Facial Recognition",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39253694",
+ "created_at": "2024-02-04T19:50:49Z"
+ },
+ {
+ "hn_id": "38889786",
+ "title": "Learning Bimanual Mobile Manipulation with Low-Cost Whole-Body Teleoperation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38889786",
+ "created_at": "2024-01-06T08:58:51Z"
+ },
+ {
+ "hn_id": "35714138",
+ "title": "Human-Centric Latent Diffusion Models for Fashion Image Editing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35714138",
+ "created_at": "2023-04-26T14:25:14Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 16,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/jenius-agent-experiencedriven-2026/hn.json b/papers/jenius-agent-experiencedriven-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/joint-continual-learning-2026/hn.json b/papers/joint-continual-learning-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/judging-llmasajudge-mtbench-2023/hn.json b/papers/judging-llmasajudge-mtbench-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35445312",
+ "title": "Show HN: Want something better than k-means? Try BanditPAM",
+ "points": 281,
+ "comments": 41,
+ "url": "https://news.ycombinator.com/item?id=35445312",
+ "created_at": "2023-04-04T20:16:33Z"
+ },
+ {
+ "hn_id": "35833868",
+ "title": "LORA: Low-Rank Adaptation of Large Language Models",
+ "points": 42,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=35833868",
+ "created_at": "2023-05-05T19:10:58Z"
+ },
+ {
+ "hn_id": "37531815",
+ "title": "Mesa-optimization algorithms in Transformers[pdf]",
+ "points": 23,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=37531815",
+ "created_at": "2023-09-16T03:35:25Z"
+ },
+ {
+ "hn_id": "37555617",
+ "title": "Efficiently Correcting Reasoning Failures in Large Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37555617",
+ "created_at": "2023-09-18T13:10:22Z"
+ },
+ {
+ "hn_id": "41136426",
+ "title": "Show HN: I built Choosy Chat to get the best answer between GPT, Claude, Gemini",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41136426",
+ "created_at": "2024-08-02T05:52:12Z"
+ },
+ {
+ "hn_id": "38720557",
+ "title": "ReLoRA: High-Rank Training Through Low-Rank Updates",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38720557",
+ "created_at": "2023-12-21T14:09:38Z"
+ },
+ {
+ "hn_id": "29337457",
+ "title": "BanditPAM, an improved alternative to k-means",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29337457",
+ "created_at": "2021-11-25T01:55:55Z"
+ },
+ {
+ "hn_id": "38561676",
+ "title": "AQuaSurF: Discover better activation functions for your ML task",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38561676",
+ "created_at": "2023-12-07T20:53:04Z"
+ },
+ {
+ "hn_id": "40207489",
+ "title": "Large Language Model for Science: A Study on P vs. NP",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40207489",
+ "created_at": "2024-04-30T05:20:16Z"
+ },
+ {
+ "hn_id": "39934427",
+ "title": "Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39934427",
+ "created_at": "2024-04-04T18:56:42Z"
+ }
+ ],
+ "top_points": 281,
+ "total_points": 366,
+ "total_comments": 50
+}
+\ No newline at end of file
diff --git a/papers/kernelband-steering-llmbased-2025/hn.json b/papers/kernelband-steering-llmbased-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "39790604",
+ "title": "One-Step Diffusion with Distribution Matching Distillation",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39790604",
+ "created_at": "2024-03-22T13:36:19Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/knapspec-selfspeculative-decoding-2026/hn.json b/papers/knapspec-selfspeculative-decoding-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47401530",
+ "title": "Automated Test Case Generation for Vulnerabilities in Competitive Programming",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47401530",
+ "created_at": "2026-03-16T16:54:11Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/kormo-korean-open-2025/hn.json b/papers/kormo-korean-open-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "41890784",
+ "title": "QUIC is not quick enough over fast internet",
+ "points": 313,
+ "comments": 280,
+ "url": "https://news.ycombinator.com/item?id=41890784",
+ "created_at": "2024-10-19T21:04:52Z"
+ },
+ {
+ "hn_id": "45527191",
+ "title": "Generalized Orders of Magnitude",
+ "points": 45,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=45527191",
+ "created_at": "2025-10-09T13:08:26Z"
+ },
+ {
+ "hn_id": "38515605",
+ "title": "PixArt-α: Fast Training of Diffusion Transformer for Text-to-Image Synthetis",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38515605",
+ "created_at": "2023-12-04T10:19:22Z"
+ },
+ {
+ "hn_id": "45706862",
+ "title": "SynthID-Image: Invisibly Watermarking AI-Generated Imagery",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45706862",
+ "created_at": "2025-10-25T20:50:40Z"
+ },
+ {
+ "hn_id": "42780000",
+ "title": "Vision-Language Models Do Not Understand Negation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42780000",
+ "created_at": "2025-01-21T13:44:43Z"
+ },
+ {
+ "hn_id": "37884774",
+ "title": "Workload-aware and Learned Z-Indexes. (ArXiv:2310.04268v1 [cs.DB])",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37884774",
+ "created_at": "2023-10-14T22:20:27Z"
+ },
+ {
+ "hn_id": "33355436",
+ "title": "Challenging Big-Bench Tasks and Whether Chain-of-Thought Can Solve Them",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33355436",
+ "created_at": "2022-10-27T10:01:21Z"
+ },
+ {
+ "hn_id": "35151086",
+ "title": "Token Merging: Your ViT but Faster",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35151086",
+ "created_at": "2023-03-14T13:25:09Z"
+ }
+ ],
+ "top_points": 313,
+ "total_points": 368,
+ "total_comments": 294
+}
+\ No newline at end of file
diff --git a/papers/laafd-llmbased-agents-2026/hn.json b/papers/laafd-llmbased-agents-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46893430",
+ "title": "The Trigger in the Haystack: Extracting and Reconstructing LLM Backdoor Triggers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46893430",
+ "created_at": "2026-02-04T23:28:00Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/lacy-what-small-2026/hn.json b/papers/lacy-what-small-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/lamda-language-models-2022/hn.json b/papers/lamda-language-models-2022/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "30315604",
+ "title": "Joke written by an AI: “A basic program walked into a bar ”",
+ "points": 309,
+ "comments": 136,
+ "url": "https://news.ycombinator.com/item?id=30315604",
+ "created_at": "2022-02-12T19:39:00Z"
+ },
+ {
+ "hn_id": "31991217",
+ "title": "Open-Source LaMDA Model",
+ "points": 27,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31991217",
+ "created_at": "2022-07-05T17:35:01Z"
+ },
+ {
+ "hn_id": "30057882",
+ "title": "LaMDA: Language Models for Dialog Applications",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30057882",
+ "created_at": "2022-01-24T14:23:01Z"
+ },
+ {
+ "hn_id": "30021052",
+ "title": "A Brief Analysis of the Apollo Guidance Computer [pdf]",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30021052",
+ "created_at": "2022-01-21T09:13:06Z"
+ }
+ ],
+ "top_points": 309,
+ "total_points": 350,
+ "total_comments": 136
+}
+\ No newline at end of file
diff --git a/papers/language-model-behavioral-2025/hn.json b/papers/language-model-behavioral-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/large-language-model-2024-2/hn.json b/papers/large-language-model-2024-2/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40389576",
+ "title": "GDPR: Is It Worth It?",
+ "points": 72,
+ "comments": 205,
+ "url": "https://news.ycombinator.com/item?id=40389576",
+ "created_at": "2024-05-17T13:22:06Z"
+ },
+ {
+ "hn_id": "44468489",
+ "title": "Homotopies in multiway (nondeterministic) rewriting systems as n-fold categories",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44468489",
+ "created_at": "2025-07-04T22:35:20Z"
+ },
+ {
+ "hn_id": "44002385",
+ "title": "Community Fact-Checks Do Not Break Follower Loyalty",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44002385",
+ "created_at": "2025-05-16T06:35:29Z"
+ },
+ {
+ "hn_id": "39058537",
+ "title": "ChatQA: Building GPT-4 Level Conversational QA Models",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39058537",
+ "created_at": "2024-01-19T17:47:24Z"
+ },
+ {
+ "hn_id": "36122816",
+ "title": "Glyph Conditional Control for Visual Text Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36122816",
+ "created_at": "2023-05-30T09:25:19Z"
+ },
+ {
+ "hn_id": "35984221",
+ "title": "SLiC-HF: Sequence Likelihood Calibration with Human Feedback",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35984221",
+ "created_at": "2023-05-18T04:48:32Z"
+ },
+ {
+ "hn_id": "35617015",
+ "title": "Least-to-Most Prompting Enables Complex Reasoning in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35617015",
+ "created_at": "2023-04-18T17:27:21Z"
+ },
+ {
+ "hn_id": "23267606",
+ "title": "PTFO 8-8695: Two Stars, Two Signals, No Planet",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23267606",
+ "created_at": "2020-05-22T01:01:10Z"
+ },
+ {
+ "hn_id": "39087021",
+ "title": "Emotion Classification in Software Engineering Texts",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39087021",
+ "created_at": "2024-01-22T06:51:43Z"
+ },
+ {
+ "hn_id": "41078077",
+ "title": "Sparse vs. Contiguous Adversarial Pixel Perturbations in Multimodal Models [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41078077",
+ "created_at": "2024-07-26T12:32:25Z"
+ }
+ ],
+ "top_points": 72,
+ "total_points": 98,
+ "total_comments": 208
+}
+\ No newline at end of file
diff --git a/papers/large-language-model-2024/hn.json b/papers/large-language-model-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47139716",
+ "title": "Large-Scale Online Deanonymization with LLMs",
+ "points": 364,
+ "comments": 234,
+ "url": "https://news.ycombinator.com/item?id=47139716",
+ "created_at": "2026-02-24T17:18:17Z"
+ },
+ {
+ "hn_id": "47154011",
+ "title": "Large-scale online deanonymization with LLMs",
+ "points": 78,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=47154011",
+ "created_at": "2026-02-25T16:44:58Z"
+ }
+ ],
+ "top_points": 364,
+ "total_points": 442,
+ "total_comments": 236
+}
+\ No newline at end of file
diff --git a/papers/large-language-model-2025/hn.json b/papers/large-language-model-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45588752",
+ "title": "Evaluating Argon2 adoption and effectiveness in real-world software",
+ "points": 32,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=45588752",
+ "created_at": "2025-10-15T06:29:18Z"
+ },
+ {
+ "hn_id": "40795525",
+ "title": "Indications of superconductivities in blend of variant apatite and covellite",
+ "points": 26,
+ "comments": 20,
+ "url": "https://news.ycombinator.com/item?id=40795525",
+ "created_at": "2024-06-26T01:20:27Z"
+ },
+ {
+ "hn_id": "43736950",
+ "title": "Show HN: LettuceDetect – Lightweight hallucination detector for RAG pipelines",
+ "points": 10,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43736950",
+ "created_at": "2025-04-19T15:12:02Z"
+ },
+ {
+ "hn_id": "45147728",
+ "title": "Contemplative Artificial Intelligence",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45147728",
+ "created_at": "2025-09-06T09:02:21Z"
+ },
+ {
+ "hn_id": "43740184",
+ "title": "The Cambridge Report on Database Research",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43740184",
+ "created_at": "2025-04-19T23:09:29Z"
+ },
+ {
+ "hn_id": "36552652",
+ "title": "GenAI for Programming Education: Benchmarking ChatGPT, GPT-4, and Human Tutors",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36552652",
+ "created_at": "2023-07-01T17:36:51Z"
+ },
+ {
+ "hn_id": "42892730",
+ "title": "Using Code Generation to Solve Open Instances of Combinatorial Design Problems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42892730",
+ "created_at": "2025-01-31T22:03:56Z"
+ },
+ {
+ "hn_id": "41471269",
+ "title": "Unifying Multimodal Retrieval via Document Screenshot Embedding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41471269",
+ "created_at": "2024-09-07T03:26:45Z"
+ },
+ {
+ "hn_id": "45349444",
+ "title": "Seeing Is Deceiving:Mirror-Based Lidar Spoofing for Autonomous Vehicle Deception",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45349444",
+ "created_at": "2025-09-23T16:39:48Z"
+ },
+ {
+ "hn_id": "44096948",
+ "title": "Reasoning Model Is Stubborn: Instruction Overriding in Reasoning Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44096948",
+ "created_at": "2025-05-26T12:44:46Z"
+ }
+ ],
+ "top_points": 32,
+ "total_points": 82,
+ "total_comments": 56
+}
+\ No newline at end of file
diff --git a/papers/large-language-model-2026/hn.json b/papers/large-language-model-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/large-language-models-2022/hn.json b/papers/large-language-models-2022/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "33996055",
+ "title": "Generic Tagging for RISC-V Binaries",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33996055",
+ "created_at": "2022-12-15T06:35:27Z"
+ },
+ {
+ "hn_id": "43321245",
+ "title": "Introduction to Online Control",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43321245",
+ "created_at": "2025-03-10T14:46:05Z"
+ },
+ {
+ "hn_id": "33699117",
+ "title": "Where Did My Variable Go? Poking Holes in Incomplete Debug Information",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33699117",
+ "created_at": "2022-11-21T22:37:23Z"
+ },
+ {
+ "hn_id": "33355436",
+ "title": "Challenging Big-Bench Tasks and Whether Chain-of-Thought Can Solve Them",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33355436",
+ "created_at": "2022-10-27T10:01:21Z"
+ },
+ {
+ "hn_id": "43324715",
+ "title": "Breakthrough on Kakeya Problem: Sticky Kakeya Conjecture Proven in 3 Dimensions (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43324715",
+ "created_at": "2025-03-10T19:17:15Z"
+ },
+ {
+ "hn_id": "35151086",
+ "title": "Token Merging: Your ViT but Faster",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35151086",
+ "created_at": "2023-03-14T13:25:09Z"
+ },
+ {
+ "hn_id": "29757897",
+ "title": "A new PPE items Dataset",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29757897",
+ "created_at": "2022-01-01T12:52:35Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 11,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/large-language-models-2024/hn.json b/papers/large-language-models-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "39582552",
+ "title": "Separating a particle's mass from its momentum",
+ "points": 53,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=39582552",
+ "created_at": "2024-03-03T17:46:20Z"
+ },
+ {
+ "hn_id": "39149306",
+ "title": "Dynamic Programming: Finite States Thomas J. Sargent, John Stachurski",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39149306",
+ "created_at": "2024-01-26T22:09:08Z"
+ },
+ {
+ "hn_id": "38403066",
+ "title": "Is Mathematics a Game?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38403066",
+ "created_at": "2023-11-24T11:58:18Z"
+ }
+ ],
+ "top_points": 53,
+ "total_points": 57,
+ "total_comments": 18
+}
+\ No newline at end of file
diff --git a/papers/large-language-models-2025-2/hn.json b/papers/large-language-models-2025-2/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "43182325",
+ "title": "The FFT Strikes Back: An Efficient Alternative to Self-Attention",
+ "points": 456,
+ "comments": 168,
+ "url": "https://news.ycombinator.com/item?id=43182325",
+ "created_at": "2025-02-26T09:57:23Z"
+ },
+ {
+ "hn_id": "29883393",
+ "title": "Lifting C Semantics for Dataflow Optimization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29883393",
+ "created_at": "2022-01-10T22:04:35Z"
+ },
+ {
+ "hn_id": "46057417",
+ "title": "Forecasting Ability of LLMs Depends on What We're Asking",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46057417",
+ "created_at": "2025-11-26T13:55:05Z"
+ },
+ {
+ "hn_id": "43150514",
+ "title": "Intuitive physics understanding emerges from self-supervised pretraining",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43150514",
+ "created_at": "2025-02-23T16:27:24Z"
+ },
+ {
+ "hn_id": "25543684",
+ "title": "Simdram: A Framework for Bit-Serial SIMD Processing Using DRAM",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25543684",
+ "created_at": "2020-12-26T14:32:11Z"
+ }
+ ],
+ "top_points": 456,
+ "total_points": 462,
+ "total_comments": 170
+}
+\ No newline at end of file
diff --git a/papers/large-language-models-2026/hn.json b/papers/large-language-models-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/largescale-independent-comprehensive-2024/hn.json b/papers/largescale-independent-comprehensive-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39960717",
+ "title": "Mixture-of-Depths: Dynamically allocating compute in transformers",
+ "points": 281,
+ "comments": 83,
+ "url": "https://news.ycombinator.com/item?id=39960717",
+ "created_at": "2024-04-07T13:42:05Z"
+ },
+ {
+ "hn_id": "40389576",
+ "title": "GDPR: Is It Worth It?",
+ "points": 72,
+ "comments": 205,
+ "url": "https://news.ycombinator.com/item?id=40389576",
+ "created_at": "2024-05-17T13:22:06Z"
+ },
+ {
+ "hn_id": "39927422",
+ "title": "Mixture-of-Depths: Dynamically allocating compute in transformer language models",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39927422",
+ "created_at": "2024-04-04T07:11:29Z"
+ },
+ {
+ "hn_id": "39932637",
+ "title": "Mixture-of-Depths: Dynamically allocating compute in transformers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39932637",
+ "created_at": "2024-04-04T16:31:27Z"
+ },
+ {
+ "hn_id": "39058537",
+ "title": "ChatQA: Building GPT-4 Level Conversational QA Models",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39058537",
+ "created_at": "2024-01-19T17:47:24Z"
+ },
+ {
+ "hn_id": "39940557",
+ "title": "DeepMind: Mixture-of-Depths: Dynamically allocating compute in transformers",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39940557",
+ "created_at": "2024-04-05T09:51:16Z"
+ },
+ {
+ "hn_id": "39949473",
+ "title": "Dynamically allocating compute in transformer-based language models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39949473",
+ "created_at": "2024-04-06T02:20:21Z"
+ },
+ {
+ "hn_id": "32145329",
+ "title": "Pile of Law: Learning Responsible Data Filtering from the Law",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32145329",
+ "created_at": "2022-07-18T23:12:30Z"
+ },
+ {
+ "hn_id": "40320577",
+ "title": "Aligning Large Language Models with Recommendation Knowledge",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40320577",
+ "created_at": "2024-05-10T16:06:18Z"
+ },
+ {
+ "hn_id": "39992163",
+ "title": "Understanding Physical Breakdowns in Virtual Reality",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39992163",
+ "created_at": "2024-04-10T15:56:57Z"
+ }
+ ],
+ "top_points": 281,
+ "total_points": 373,
+ "total_comments": 293
+}
+\ No newline at end of file
diff --git a/papers/latent-collaboration-multiagent-2025/hn.json b/papers/latent-collaboration-multiagent-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45708392",
+ "title": "Fluidity Index: Next-Generation Super-Intelligence Benchmarks",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45708392",
+ "created_at": "2025-10-26T01:35:28Z"
+ },
+ {
+ "hn_id": "46069076",
+ "title": "Game Theory in Cosmology",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46069076",
+ "created_at": "2025-11-27T13:33:13Z"
+ },
+ {
+ "hn_id": "46132435",
+ "title": "LatentMAS – agent collaboration from token space into the model's latent space",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46132435",
+ "created_at": "2025-12-03T09:43:05Z"
+ },
+ {
+ "hn_id": "46367468",
+ "title": "Minimizing Hyperbolic Embedding Distortion with LLM-Guided Hierarchy Structuring",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46367468",
+ "created_at": "2025-12-23T17:59:28Z"
+ },
+ {
+ "hn_id": "46390027",
+ "title": "Wheeler-Feynman theory for gravitational waves",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46390027",
+ "created_at": "2025-12-26T07:28:55Z"
+ },
+ {
+ "hn_id": "46305114",
+ "title": "Latent Collaboration in Multi-Agent Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46305114",
+ "created_at": "2025-12-17T20:32:08Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 18,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/latentmem-customizing-latent-2026/hn.json b/papers/latentmem-customizing-latent-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/layer-truth-probing-2025/hn.json b/papers/layer-truth-probing-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/ldscene-llmguided-diffusion-2025/hn.json b/papers/ldscene-llmguided-diffusion-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44582855",
+ "title": "Chain of thought monitorability: A new and fragile opportunity for AI safety",
+ "points": 134,
+ "comments": 64,
+ "url": "https://news.ycombinator.com/item?id=44582855",
+ "created_at": "2025-07-16T14:39:55Z"
+ },
+ {
+ "hn_id": "40497235",
+ "title": "An Introduction to Vision-Language Modeling",
+ "points": 13,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40497235",
+ "created_at": "2024-05-28T04:09:15Z"
+ },
+ {
+ "hn_id": "44627742",
+ "title": "AIOps in the Era of LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44627742",
+ "created_at": "2025-07-20T18:13:31Z"
+ },
+ {
+ "hn_id": "44534854",
+ "title": "Potential Danger to Satellites from a 2032 Lunar Impact by Asteroid 2024 YR4",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44534854",
+ "created_at": "2025-07-11T17:27:57Z"
+ },
+ {
+ "hn_id": "37940798",
+ "title": "Curve Your Enthusiasm: Concurvity Regularization in Differentiable GAMs",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37940798",
+ "created_at": "2023-10-19T10:16:08Z"
+ },
+ {
+ "hn_id": "40503425",
+ "title": "An Introduction to Vision-Language Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40503425",
+ "created_at": "2024-05-28T17:49:36Z"
+ },
+ {
+ "hn_id": "40502854",
+ "title": "An Introduction to Vision-Language Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40502854",
+ "created_at": "2024-05-28T17:00:36Z"
+ },
+ {
+ "hn_id": "30579179",
+ "title": "A Flawed Dataset for Symbolic Equation Verification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30579179",
+ "created_at": "2022-03-06T17:29:28Z"
+ },
+ {
+ "hn_id": "43843140",
+ "title": "Physical Principles of Quantum Biology",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43843140",
+ "created_at": "2025-04-30T10:13:25Z"
+ },
+ {
+ "hn_id": "43773846",
+ "title": "UI-E2I-Synth: Advancing GUI Grounding with Large-Scale Instruction Synthesis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43773846",
+ "created_at": "2025-04-23T16:23:19Z"
+ }
+ ],
+ "top_points": 134,
+ "total_points": 163,
+ "total_comments": 65
+}
+\ No newline at end of file
diff --git a/papers/leaksealer-semisupervised-defense-2025/hn.json b/papers/leaksealer-semisupervised-defense-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44052041",
+ "title": "Discord Unveiled: A Comprehensive Dataset of Public Communication (2015-2024)",
+ "points": 152,
+ "comments": 179,
+ "url": "https://news.ycombinator.com/item?id=44052041",
+ "created_at": "2025-05-21T14:45:38Z"
+ },
+ {
+ "hn_id": "24051456",
+ "title": "UT Dallas Computer Science professor claims to have proven RP = NP",
+ "points": 88,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=24051456",
+ "created_at": "2020-08-04T16:20:33Z"
+ },
+ {
+ "hn_id": "42602347",
+ "title": "Did we miss P In CAP? Partial Progress Conjecture under Asynchrony",
+ "points": 42,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42602347",
+ "created_at": "2025-01-05T15:23:00Z"
+ },
+ {
+ "hn_id": "44176172",
+ "title": "What do software developers need to know to succeed in an age of AI?",
+ "points": 18,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44176172",
+ "created_at": "2025-06-04T00:30:21Z"
+ },
+ {
+ "hn_id": "44805436",
+ "title": "Quantum machine learning via vector embeddings",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44805436",
+ "created_at": "2025-08-05T22:46:47Z"
+ },
+ {
+ "hn_id": "43382159",
+ "title": "Do Emotions Affect Argument Convincingness?",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43382159",
+ "created_at": "2025-03-16T20:48:09Z"
+ },
+ {
+ "hn_id": "44777459",
+ "title": "Hypertokens: Holographic Associative Memory in Tokenized LLMs",
+ "points": 3,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=44777459",
+ "created_at": "2025-08-03T16:00:47Z"
+ },
+ {
+ "hn_id": "41215568",
+ "title": "Leveraging LLM Reasoning Enhances Personalized Recommender Systems",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41215568",
+ "created_at": "2024-08-11T11:56:10Z"
+ },
+ {
+ "hn_id": "43919128",
+ "title": "Quantifying the Fermi paradox via passive SETI",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43919128",
+ "created_at": "2025-05-07T18:32:13Z"
+ },
+ {
+ "hn_id": "41196057",
+ "title": "Deceptive AI is most convincing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41196057",
+ "created_at": "2024-08-08T20:45:23Z"
+ }
+ ],
+ "top_points": 152,
+ "total_points": 325,
+ "total_comments": 206
+}
+\ No newline at end of file
diff --git a/papers/learn-code-sustainably-2024/hn.json b/papers/learn-code-sustainably-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41470074",
+ "title": "Hardware Acceleration of LLMs: A comprehensive survey and comparison",
+ "points": 266,
+ "comments": 68,
+ "url": "https://news.ycombinator.com/item?id=41470074",
+ "created_at": "2024-09-06T22:09:14Z"
+ },
+ {
+ "hn_id": "26382160",
+ "title": "Lord of the Ring(s): Side Channel Attacks on the CPU On-Chip Ring Interconnect",
+ "points": 188,
+ "comments": 55,
+ "url": "https://news.ycombinator.com/item?id=26382160",
+ "created_at": "2021-03-08T03:55:27Z"
+ },
+ {
+ "hn_id": "42960989",
+ "title": "Pre-Trained Large Language Models Use Fourier Features for Addition (2024)",
+ "points": 149,
+ "comments": 40,
+ "url": "https://news.ycombinator.com/item?id=42960989",
+ "created_at": "2025-02-06T10:31:06Z"
+ },
+ {
+ "hn_id": "22908089",
+ "title": "AutoML-Zero: Evolving Machine Learning Algorithms from Scratch",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22908089",
+ "created_at": "2020-04-18T14:43:47Z"
+ },
+ {
+ "hn_id": "23371555",
+ "title": "Evolving Machine Learning Algorithms from Primitive Mathematical Operations",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23371555",
+ "created_at": "2020-05-31T18:38:11Z"
+ },
+ {
+ "hn_id": "47309151",
+ "title": "Building AI Coding Agents for the Terminal",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47309151",
+ "created_at": "2026-03-09T13:59:16Z"
+ },
+ {
+ "hn_id": "22895579",
+ "title": "AutoML-Zero: Evolving Machine Learning Algorithms from Scratch",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22895579",
+ "created_at": "2020-04-17T02:08:58Z"
+ },
+ {
+ "hn_id": "43065682",
+ "title": "Scaling Test-Time Compute Can Be More Effective Than Scaling Parameters (2024)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43065682",
+ "created_at": "2025-02-16T05:48:45Z"
+ },
+ {
+ "hn_id": "40008963",
+ "title": "Quantified CSPs are either PSPACE-complete or inside Pi_2",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40008963",
+ "created_at": "2024-04-12T02:51:09Z"
+ },
+ {
+ "hn_id": "39991305",
+ "title": "First detection in space of the high-energy isomer of cyanomethanimine",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39991305",
+ "created_at": "2024-04-10T14:48:08Z"
+ }
+ ],
+ "top_points": 266,
+ "total_points": 624,
+ "total_comments": 163
+}
+\ No newline at end of file
diff --git a/papers/learning-configure-agentic-2026/hn.json b/papers/learning-configure-agentic-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47023905",
+ "title": "Retrieval-Aware Distillation for Transformer-SSM Hybrids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47023905",
+ "created_at": "2026-02-15T14:24:02Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/learning-decentralized-llm-2026/hn.json b/papers/learning-decentralized-llm-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46822095",
+ "title": "Addressing Asymptomatic AI Harms for Dignified Human-AI Interaction",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46822095",
+ "created_at": "2026-01-30T08:59:56Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/learning-from-negative-2025/hn.json b/papers/learning-from-negative-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47086934",
+ "title": "The Existence and Behavior of Secondary Attention Sinks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47086934",
+ "created_at": "2026-02-20T12:00:11Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/learning-guarantee-type-2025/hn.json b/papers/learning-guarantee-type-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "38424009",
+ "title": "Does GPT-4 Pass the Turing Test?",
+ "points": 60,
+ "comments": 88,
+ "url": "https://news.ycombinator.com/item?id=38424009",
+ "created_at": "2023-11-26T19:04:03Z"
+ },
+ {
+ "hn_id": "45588116",
+ "title": "Old Is Gold: Optimizing Single-Threaded Applications with Exgen-Malloc",
+ "points": 16,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=45588116",
+ "created_at": "2025-10-15T04:33:36Z"
+ },
+ {
+ "hn_id": "38093289",
+ "title": "Does GPT-4 Pass the Turing Test?",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38093289",
+ "created_at": "2023-11-01T00:45:13Z"
+ },
+ {
+ "hn_id": "45793608",
+ "title": "Old Is Gold: Optimizing Single-Threaded Applications with Exgen-Malloc",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45793608",
+ "created_at": "2025-11-02T21:28:55Z"
+ },
+ {
+ "hn_id": "37960574",
+ "title": "Incorrect conclusions drawn for plausible looking diagrams",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37960574",
+ "created_at": "2023-10-20T19:39:01Z"
+ }
+ ],
+ "top_points": 60,
+ "total_points": 84,
+ "total_comments": 96
+}
+\ No newline at end of file
diff --git a/papers/learning-partneraware-collaborators-2025/hn.json b/papers/learning-partneraware-collaborators-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/leasttomost-prompting-enables-2022/hn.json b/papers/leasttomost-prompting-enables-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40389576",
+ "title": "GDPR: Is It Worth It?",
+ "points": 72,
+ "comments": 205,
+ "url": "https://news.ycombinator.com/item?id=40389576",
+ "created_at": "2024-05-17T13:22:06Z"
+ },
+ {
+ "hn_id": "21538090",
+ "title": "Oral History of Ken Thompson (2005) [pdf]",
+ "points": 56,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=21538090",
+ "created_at": "2019-11-14T18:43:15Z"
+ },
+ {
+ "hn_id": "46384992",
+ "title": "Oral History of Richard Greenblatt (2005) [pdf]",
+ "points": 18,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46384992",
+ "created_at": "2025-12-25T15:34:44Z"
+ },
+ {
+ "hn_id": "44002385",
+ "title": "Community Fact-Checks Do Not Break Follower Loyalty",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44002385",
+ "created_at": "2025-05-16T06:35:29Z"
+ },
+ {
+ "hn_id": "32632312",
+ "title": "Exploring the Role of the Cybercrime Underground in the Russia-Ukraine Conflict",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32632312",
+ "created_at": "2022-08-28T21:36:55Z"
+ },
+ {
+ "hn_id": "32250208",
+ "title": "Satoshi Nakamoto and the origins of Bitcoin – the profile of a genius",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=32250208",
+ "created_at": "2022-07-27T13:35:45Z"
+ },
+ {
+ "hn_id": "37866902",
+ "title": "Getting Bored of Cyberwar",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37866902",
+ "created_at": "2023-10-13T05:03:06Z"
+ },
+ {
+ "hn_id": "44173062",
+ "title": "The Evaluation of Engineering Artificial General Intelligence",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44173062",
+ "created_at": "2025-06-03T18:26:02Z"
+ },
+ {
+ "hn_id": "39491738",
+ "title": "Satoshi Nakamoto and the Origins of Bitcoin",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39491738",
+ "created_at": "2024-02-24T14:34:33Z"
+ },
+ {
+ "hn_id": "35617015",
+ "title": "Least-to-Most Prompting Enables Complex Reasoning in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35617015",
+ "created_at": "2023-04-18T17:27:21Z"
+ }
+ ],
+ "top_points": 72,
+ "total_points": 168,
+ "total_comments": 209
+}
+\ No newline at end of file
diff --git a/papers/leetcodedataset-temporal-dataset-2025/hn.json b/papers/leetcodedataset-temporal-dataset-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44436031",
+ "title": "Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks",
+ "points": 66,
+ "comments": 15,
+ "url": "https://news.ycombinator.com/item?id=44436031",
+ "created_at": "2025-07-01T17:13:11Z"
+ },
+ {
+ "hn_id": "27075013",
+ "title": "MarioNette: Self-Supervised Sprite Learning",
+ "points": 47,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27075013",
+ "created_at": "2021-05-07T12:09:34Z"
+ },
+ {
+ "hn_id": "44771836",
+ "title": "Arch-Router: Aligning LLM Routing with Human Preferences",
+ "points": 9,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44771836",
+ "created_at": "2025-08-02T21:42:16Z"
+ },
+ {
+ "hn_id": "44597819",
+ "title": "Show HN: 1.5B LLM routing model that aligns to preferences, not leaderboards",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44597819",
+ "created_at": "2025-07-17T20:29:12Z"
+ },
+ {
+ "hn_id": "45324991",
+ "title": "Show HN: Model-literals, model-aliases, and preference-aligned routing for LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45324991",
+ "created_at": "2025-09-21T17:45:54Z"
+ },
+ {
+ "hn_id": "44650696",
+ "title": "Show HN: RouteGPT – model routing on ChatGPT aligned to user preferences",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44650696",
+ "created_at": "2025-07-22T17:52:01Z"
+ },
+ {
+ "hn_id": "43191958",
+ "title": "Volume estimates for unions of convex sets, and the Kakeya set conjecture in d=3",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43191958",
+ "created_at": "2025-02-27T06:47:24Z"
+ },
+ {
+ "hn_id": "45340869",
+ "title": "Wan-Animate: Unified Character Animation, Replacement with Holistic Replication",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45340869",
+ "created_at": "2025-09-22T23:23:18Z"
+ },
+ {
+ "hn_id": "43206059",
+ "title": "A Solution of the Kakeya Conjecture",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43206059",
+ "created_at": "2025-02-28T14:34:55Z"
+ },
+ {
+ "hn_id": "44774539",
+ "title": "Show HN: Arch-Router – Aligning LLM Routing with Human Preferences",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44774539",
+ "created_at": "2025-08-03T06:32:04Z"
+ }
+ ],
+ "top_points": 66,
+ "total_points": 137,
+ "total_comments": 19
+}
+\ No newline at end of file
diff --git a/papers/lessleakbench-first-investigation-2025/hn.json b/papers/lessleakbench-first-investigation-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46908281",
+ "title": "LLMs do plan before they genenrate tokens",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46908281",
+ "created_at": "2026-02-06T02:30:48Z"
+ },
+ {
+ "hn_id": "43025980",
+ "title": "Emergent Response Planning in LLM",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43025980",
+ "created_at": "2025-02-12T14:57:10Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/lessons-from-trenches-2024/hn.json b/papers/lessons-from-trenches-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "41536003",
+ "title": "The Legend of Holy Sword: An Immersive Experience for Concentration Enhancement",
+ "points": 139,
+ "comments": 66,
+ "url": "https://news.ycombinator.com/item?id=41536003",
+ "created_at": "2024-09-13T23:07:24Z"
+ },
+ {
+ "hn_id": "39144845",
+ "title": "Tweets to Citations: The Impact of Social Media Influencers on AI Research",
+ "points": 67,
+ "comments": 47,
+ "url": "https://news.ycombinator.com/item?id=39144845",
+ "created_at": "2024-01-26T16:57:45Z"
+ },
+ {
+ "hn_id": "40474294",
+ "title": "Lessons from the trenches on reproducible evaluation of language models",
+ "points": 42,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=40474294",
+ "created_at": "2024-05-25T11:42:23Z"
+ },
+ {
+ "hn_id": "42590687",
+ "title": "European Space Agency Benchmark for Anomaly Detection in Satellite Telemetry",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42590687",
+ "created_at": "2025-01-03T23:37:19Z"
+ },
+ {
+ "hn_id": "41049219",
+ "title": "On the Design and Analysis of LLM-Based Algorithms",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41049219",
+ "created_at": "2024-07-23T18:26:56Z"
+ },
+ {
+ "hn_id": "40467826",
+ "title": "Lessons from the Trenches on Reproducible Evaluation of Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40467826",
+ "created_at": "2024-05-24T16:35:27Z"
+ },
+ {
+ "hn_id": "41230495",
+ "title": "Residual Quantization with Implicit Neural Codebooks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41230495",
+ "created_at": "2024-08-12T23:23:30Z"
+ }
+ ],
+ "top_points": 139,
+ "total_points": 255,
+ "total_comments": 116
+}
+\ No newline at end of file
diff --git a/papers/let-barbarians-how-2025/hn.json b/papers/let-barbarians-how-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "45625666",
+ "title": "What to do after detecting a signal from extraterrestrial intelligence",
+ "points": 14,
+ "comments": 15,
+ "url": "https://news.ycombinator.com/item?id=45625666",
+ "created_at": "2025-10-18T07:48:26Z"
+ },
+ {
+ "hn_id": "45613026",
+ "title": "Every Language Model Has a Forgery-Resistant Signature",
+ "points": 7,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45613026",
+ "created_at": "2025-10-17T03:22:16Z"
+ },
+ {
+ "hn_id": "43193918",
+ "title": "Ringworlds and Dyson spheres can be stable",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43193918",
+ "created_at": "2025-02-27T12:48:58Z"
+ },
+ {
+ "hn_id": "46196480",
+ "title": "SETI Post-Detection Protocols: Progress Towards a New Version",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46196480",
+ "created_at": "2025-12-08T19:24:37Z"
+ },
+ {
+ "hn_id": "45629330",
+ "title": "Every Language Model Has a Forgery-Resistant Signature",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45629330",
+ "created_at": "2025-10-18T18:17:58Z"
+ },
+ {
+ "hn_id": "43210649",
+ "title": "A Comprehensive Survey on Concept Erasure in Text-to-Image Diffusion Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43210649",
+ "created_at": "2025-02-28T20:56:28Z"
+ },
+ {
+ "hn_id": "47172923",
+ "title": "Midtraining Bridges Pretraining and Posttraining Distributions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47172923",
+ "created_at": "2026-02-26T22:29:32Z"
+ },
+ {
+ "hn_id": "44825079",
+ "title": "Aligning LLMs to Ask Good Questions a Case Study in Clinical Reasoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44825079",
+ "created_at": "2025-08-07T14:39:48Z"
+ },
+ {
+ "hn_id": "38772282",
+ "title": "YAYI 2",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38772282",
+ "created_at": "2023-12-26T15:00:58Z"
+ }
+ ],
+ "top_points": 14,
+ "total_points": 38,
+ "total_comments": 18
+}
+\ No newline at end of file
diff --git a/papers/lethe-purifying-backdoored-2025/hn.json b/papers/lethe-purifying-backdoored-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "44103431",
+ "title": "Grammars of Formal Uncertainty",
+ "points": 34,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=44103431",
+ "created_at": "2025-05-27T02:27:19Z"
+ },
+ {
+ "hn_id": "45472586",
+ "title": "Physics of Learning: A Lagrangian perspective to different learning paradigms",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45472586",
+ "created_at": "2025-10-04T11:38:44Z"
+ },
+ {
+ "hn_id": "45418635",
+ "title": "Can LLMs Be Creative? Paper: Combinatorial Creativity: A New Frontier",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45418635",
+ "created_at": "2025-09-29T20:53:22Z"
+ },
+ {
+ "hn_id": "43835454",
+ "title": "CompleteMe: Reference-Based Human Image Completion",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43835454",
+ "created_at": "2025-04-29T17:20:32Z"
+ },
+ {
+ "hn_id": "42884637",
+ "title": "Player Performance and Skill Rating in Esports [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42884637",
+ "created_at": "2025-01-31T04:14:07Z"
+ }
+ ],
+ "top_points": 34,
+ "total_points": 41,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/leveraging-large-language-2023/hn.json b/papers/leveraging-large-language-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/leveraging-rust-types-2023/hn.json b/papers/leveraging-rust-types-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/lhdeception-simulating-understanding-2025/hn.json b/papers/lhdeception-simulating-understanding-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/library-hallucinations-llm-2025/hn.json b/papers/library-hallucinations-llm-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45417070",
+ "title": "Small Near-Earth Objects in the Taurid Resonant Swarm",
+ "points": 34,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45417070",
+ "created_at": "2025-09-29T18:25:10Z"
+ },
+ {
+ "hn_id": "44862960",
+ "title": "Tribe: TRImodal Brain Encoder for whole-brain fMRI response prediction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44862960",
+ "created_at": "2025-08-11T11:20:29Z"
+ },
+ {
+ "hn_id": "44736074",
+ "title": "Combolutional Neural Networks [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44736074",
+ "created_at": "2025-07-30T16:10:46Z"
+ }
+ ],
+ "top_points": 34,
+ "total_points": 38,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/lidl-llm-integration-2026/hn.json b/papers/lidl-llm-integration-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/limagents-multiagent-llms-2025/hn.json b/papers/limagents-multiagent-llms-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46806618",
+ "title": "ARM MTE Performance in Practice (Extended Version)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46806618",
+ "created_at": "2026-01-29T06:39:14Z"
+ },
+ {
+ "hn_id": "46977450",
+ "title": "ARM MTE Performance in Practice (Extended Version)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46977450",
+ "created_at": "2026-02-11T16:57:57Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/limits-layer-pruning-2026/hn.json b/papers/limits-layer-pruning-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/linguistics-theory-meets-2024/hn.json b/papers/linguistics-theory-meets-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45783187",
+ "title": "Agentic AI Home Energy Management System: Residential Load Scheduling",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45783187",
+ "created_at": "2025-11-01T16:52:33Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/live-swe-agent-self-evolve-2025/hn.json b/papers/live-swe-agent-self-evolve-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "25290469",
+ "title": "Electrocharged respirator fabrics with common materials: A candy machine N95",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25290469",
+ "created_at": "2020-12-03T16:23:16Z"
+ },
+ {
+ "hn_id": "46685772",
+ "title": "Can Highlighting Help GitHub Maintainers Track Security Fixes?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46685772",
+ "created_at": "2026-01-19T23:00:02Z"
+ },
+ {
+ "hn_id": "42393379",
+ "title": "Hymba: A Hybrid-Head Architecture for Small Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42393379",
+ "created_at": "2024-12-11T21:51:17Z"
+ },
+ {
+ "hn_id": "39524530",
+ "title": "Towards a measurement theory in QFT: \"Impossible\" quantum measurements",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39524530",
+ "created_at": "2024-02-27T14:31:51Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 9,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/livecodebench-2024/hn.json b/papers/livecodebench-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "40938701",
+ "title": "Training a time series model using transformers at Datadog",
+ "points": 27,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40938701",
+ "created_at": "2024-07-11T17:19:07Z"
+ },
+ {
+ "hn_id": "39703474",
+ "title": "Show HN: WebAssembly Instrumentation in the Wizard Research Engine",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39703474",
+ "created_at": "2024-03-14T13:08:14Z"
+ },
+ {
+ "hn_id": "40018963",
+ "title": "Ferret-v2: An Improved Baseline for Referring and Grounding with LLMs",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40018963",
+ "created_at": "2024-04-13T00:04:37Z"
+ },
+ {
+ "hn_id": "42330945",
+ "title": "Algorithmic Bayesian Epistemology",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42330945",
+ "created_at": "2024-12-05T18:27:12Z"
+ },
+ {
+ "hn_id": "39788551",
+ "title": "LiveCodeBench: Holistic, Contamination Free Evaluation of LLMs for Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39788551",
+ "created_at": "2024-03-22T08:36:13Z"
+ },
+ {
+ "hn_id": "39061405",
+ "title": "Hijacking Attacks Against Neural Networks by Analyzing Training Data",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39061405",
+ "created_at": "2024-01-19T21:25:51Z"
+ },
+ {
+ "hn_id": "39451057",
+ "title": "ScreenAgent: A Vision Language Model-Driven Computer Control Agent",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39451057",
+ "created_at": "2024-02-21T07:31:11Z"
+ },
+ {
+ "hn_id": "30697988",
+ "title": "Born’s Rule in a Timeless Universe",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30697988",
+ "created_at": "2022-03-16T12:38:46Z"
+ }
+ ],
+ "top_points": 27,
+ "total_points": 47,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/llama-3-herd-2024/hn.json b/papers/llama-3-herd-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "41131642",
+ "title": "Beating GPT-4o and Claude 3.5 on SWE-bench Lite through repeated sampling",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41131642",
+ "created_at": "2024-08-01T17:49:40Z"
+ },
+ {
+ "hn_id": "41153305",
+ "title": "Large Language Monkeys: Scaling Inference Compute with Repeated Sampling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41153305",
+ "created_at": "2024-08-04T13:12:54Z"
+ },
+ {
+ "hn_id": "41130857",
+ "title": "Large Language Monkeys: Scaling Inference Compute with Repeated Sampling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41130857",
+ "created_at": "2024-08-01T16:28:59Z"
+ },
+ {
+ "hn_id": "44866644",
+ "title": "Improving Generative Ad Text on Facebook Using Reinforcement Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44866644",
+ "created_at": "2025-08-11T17:05:08Z"
+ },
+ {
+ "hn_id": "42363641",
+ "title": "The Llama 3 Herd of Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42363641",
+ "created_at": "2024-12-09T06:56:28Z"
+ },
+ {
+ "hn_id": "41129377",
+ "title": "The Llama 3 Herd of Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41129377",
+ "created_at": "2024-08-01T14:21:40Z"
+ },
+ {
+ "hn_id": "41439259",
+ "title": "Help Finding LLM and Proof Based Refactoring Reference",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41439259",
+ "created_at": "2024-09-03T21:11:48Z"
+ },
+ {
+ "hn_id": "39546939",
+ "title": "StableLM 1.6B Technical Report – includes all data, training, strategy",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39546939",
+ "created_at": "2024-02-29T06:43:10Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 15,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/llama-open-efficient-2023/hn.json b/papers/llama-open-efficient-2023/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "39856808",
+ "title": "LLaMA: Open and Efficient Foundation Language Models (2023)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39856808",
+ "created_at": "2024-03-28T20:19:31Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llm-agent-fire-2024/hn.json b/papers/llm-agent-fire-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "46280080",
+ "title": "A quarter of US-trained scientists eventually leave",
+ "points": 155,
+ "comments": 172,
+ "url": "https://news.ycombinator.com/item?id=46280080",
+ "created_at": "2025-12-15T20:25:18Z"
+ },
+ {
+ "hn_id": "42227233",
+ "title": "Deegen: A JIT-Capable VM Generator for Dynamic Languages",
+ "points": 116,
+ "comments": 22,
+ "url": "https://news.ycombinator.com/item?id=42227233",
+ "created_at": "2024-11-24T11:00:24Z"
+ },
+ {
+ "hn_id": "42186507",
+ "title": "Deegen: A JIT-Capable VM Generator for Dynamic Languages",
+ "points": 46,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=42186507",
+ "created_at": "2024-11-19T18:15:17Z"
+ },
+ {
+ "hn_id": "42664655",
+ "title": "Rewrite It in Rust: A Computational Physics Case Study",
+ "points": 8,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42664655",
+ "created_at": "2025-01-11T09:51:38Z"
+ },
+ {
+ "hn_id": "43223981",
+ "title": "Rewrite it in Rust: a computational physics case study",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43223981",
+ "created_at": "2025-03-01T21:42:02Z"
+ },
+ {
+ "hn_id": "42757810",
+ "title": "Rewrite It in Rust: A Computational Physics Case Study",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42757810",
+ "created_at": "2025-01-19T15:28:12Z"
+ },
+ {
+ "hn_id": "42276937",
+ "title": "Super-Resolution with Low-Bit Quantization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42276937",
+ "created_at": "2024-11-29T20:41:05Z"
+ },
+ {
+ "hn_id": "42258411",
+ "title": "ShowUI: One Vision-Language-Action Model for GUI Visual Agent",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258411",
+ "created_at": "2024-11-27T18:30:24Z"
+ },
+ {
+ "hn_id": "42068508",
+ "title": "Advancing Interpretability in Text Classification Through Prototype Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42068508",
+ "created_at": "2024-11-06T20:06:23Z"
+ },
+ {
+ "hn_id": "41952833",
+ "title": "Post-Training Layer Scaling Prevents Forgetting and Enhances Model Merging",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41952833",
+ "created_at": "2024-10-26T05:47:51Z"
+ }
+ ],
+ "top_points": 155,
+ "total_points": 337,
+ "total_comments": 212
+}
+\ No newline at end of file
diff --git a/papers/llm-agentic-failures-qualitative-2025/hn.json b/papers/llm-agentic-failures-qualitative-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "29580686",
+ "title": "Entanglement between superconducting qubits and a tardigrade",
+ "points": 152,
+ "comments": 114,
+ "url": "https://news.ycombinator.com/item?id=29580686",
+ "created_at": "2021-12-16T17:15:54Z"
+ },
+ {
+ "hn_id": "30078848",
+ "title": "Phishing in organizations: Findings from a large-scale and long-term study",
+ "points": 30,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=30078848",
+ "created_at": "2022-01-25T22:11:11Z"
+ },
+ {
+ "hn_id": "29576319",
+ "title": "Entanglement between superconducting qubits and a tardigrade",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=29576319",
+ "created_at": "2021-12-16T08:45:26Z"
+ },
+ {
+ "hn_id": "47041986",
+ "title": "A Survey of In-Context Reinforcement Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47041986",
+ "created_at": "2026-02-17T00:01:18Z"
+ },
+ {
+ "hn_id": "46050609",
+ "title": "Slimmable Neural Amp Modeler Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46050609",
+ "created_at": "2025-11-25T20:49:57Z"
+ }
+ ],
+ "top_points": 152,
+ "total_points": 187,
+ "total_comments": 126
+}
+\ No newline at end of file
diff --git a/papers/llm-agents-generating-2025/hn.json b/papers/llm-agents-generating-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "44727836",
+ "title": "Language Model Can Be a Steganographic Privacy Leaking Agent",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44727836",
+ "created_at": "2025-07-29T20:22:34Z"
+ },
+ {
+ "hn_id": "44144830",
+ "title": "TrojanStego: Your Language Model Can Be a Steganographic Agent",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44144830",
+ "created_at": "2025-05-31T15:18:42Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llm-agents-se-survey-2024/hn.json b/papers/llm-agents-se-survey-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "40295298",
+ "title": "Agent Hospital that simulates the entire process of treating illness",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40295298",
+ "created_at": "2024-05-08T07:31:20Z"
+ },
+ {
+ "hn_id": "39870179",
+ "title": "SportsNGEN: Sustained Generation of Multi-Player Sports Gameplay",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39870179",
+ "created_at": "2024-03-29T23:27:12Z"
+ },
+ {
+ "hn_id": "39680785",
+ "title": "Abstracting Denotational Interpreters",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39680785",
+ "created_at": "2024-03-12T15:36:26Z"
+ },
+ {
+ "hn_id": "40556931",
+ "title": "Agent Hospital: A Simulacrum of Hospital with Evolvable Medical Agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40556931",
+ "created_at": "2024-06-02T20:17:22Z"
+ },
+ {
+ "hn_id": "39680189",
+ "title": "VideoMamba: State Space Model for Efficient Video Understanding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39680189",
+ "created_at": "2024-03-12T14:48:56Z"
+ },
+ {
+ "hn_id": "28684178",
+ "title": "Inconsistency in Conference Peer Review: Revisiting the 2014 NeurIPS Experiment",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28684178",
+ "created_at": "2021-09-28T15:47:40Z"
+ },
+ {
+ "hn_id": "28615448",
+ "title": "Inconsistency in Conference Peer Review: Revisiting the 2014 NeurIPS Experiment",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28615448",
+ "created_at": "2021-09-22T12:15:06Z"
+ },
+ {
+ "hn_id": "38924816",
+ "title": "Complex systems approach to natural language",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38924816",
+ "created_at": "2024-01-09T11:19:20Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 19,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/llm-assistants-productivity-slr-2025/hn.json b/papers/llm-assistants-productivity-slr-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "40876840",
+ "title": "LivePortrait: A fast, controllable portrait animation model",
+ "points": 203,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=40876840",
+ "created_at": "2024-07-04T18:02:50Z"
+ },
+ {
+ "hn_id": "43287470",
+ "title": "Substructural Parametricity",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43287470",
+ "created_at": "2025-03-07T04:57:16Z"
+ },
+ {
+ "hn_id": "42635091",
+ "title": "LLMs for AGI",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42635091",
+ "created_at": "2025-01-08T15:15:35Z"
+ }
+ ],
+ "top_points": 203,
+ "total_points": 208,
+ "total_comments": 25
+}
+\ No newline at end of file
diff --git a/papers/llm-code-review-benchmarking-2025/hn.json b/papers/llm-code-review-benchmarking-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "24396301",
+ "title": "Mining Security Vulnerabities from Secret Integration Channels",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24396301",
+ "created_at": "2020-09-07T03:06:56Z"
+ },
+ {
+ "hn_id": "44024987",
+ "title": "Can You Trust Code Copilots? Evaluating LLMs from a Code Security Perspec",
+ "points": 11,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44024987",
+ "created_at": "2025-05-18T23:09:48Z"
+ },
+ {
+ "hn_id": "45047314",
+ "title": "Learning Facts at Scale with Active Reading",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45047314",
+ "created_at": "2025-08-28T01:32:47Z"
+ },
+ {
+ "hn_id": "45115249",
+ "title": "When Do Consumers Lose from Variable Electricity Pricing?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45115249",
+ "created_at": "2025-09-03T13:05:57Z"
+ },
+ {
+ "hn_id": "43724556",
+ "title": "PIM-LLM: A High-Throughput Hybrid PIM Architecture for 1-Bit LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43724556",
+ "created_at": "2025-04-18T02:58:59Z"
+ },
+ {
+ "hn_id": "42966672",
+ "title": "Develop AI Agents for System Engineering in Factorio",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42966672",
+ "created_at": "2025-02-06T21:28:58Z"
+ },
+ {
+ "hn_id": "24375913",
+ "title": "The Sound of Silence: Mining Security Vulns from Secret Integration Channels",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24375913",
+ "created_at": "2020-09-04T15:40:05Z"
+ },
+ {
+ "hn_id": "44030713",
+ "title": "Cosmos: Predictable and Cost-Effective Adaptation of LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44030713",
+ "created_at": "2025-05-19T15:11:09Z"
+ },
+ {
+ "hn_id": "28430785",
+ "title": "Is Machine Learning ready for Traffic Engineering optimization?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28430785",
+ "created_at": "2021-09-06T05:53:23Z"
+ }
+ ],
+ "top_points": 11,
+ "total_points": 42,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/llm-code-security-slr-2024/hn.json b/papers/llm-code-security-slr-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "42476192",
+ "title": "Compiling C to Safe Rust, Formalized",
+ "points": 291,
+ "comments": 157,
+ "url": "https://news.ycombinator.com/item?id=42476192",
+ "created_at": "2024-12-20T23:30:03Z"
+ },
+ {
+ "hn_id": "41937780",
+ "title": "Dynamic Models of Gentrification",
+ "points": 43,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=41937780",
+ "created_at": "2024-10-24T17:49:30Z"
+ },
+ {
+ "hn_id": "43442131",
+ "title": "Quantitative Finance: Kronecker-Factored Approximate Curvature Deep Hedging",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43442131",
+ "created_at": "2025-03-22T00:24:21Z"
+ },
+ {
+ "hn_id": "38831285",
+ "title": "Towards Detecting Cascades of Biased Medical Claims on Twitter",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38831285",
+ "created_at": "2024-01-01T12:06:57Z"
+ },
+ {
+ "hn_id": "42476328",
+ "title": "Affirmative Resolution of Bourgain's Slicing Problem",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42476328",
+ "created_at": "2024-12-20T23:54:08Z"
+ },
+ {
+ "hn_id": "42687845",
+ "title": "A Framework for Training and Deploying Language Models at the Edge Computers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42687845",
+ "created_at": "2025-01-13T19:38:18Z"
+ }
+ ],
+ "top_points": 291,
+ "total_points": 345,
+ "total_comments": 189
+}
+\ No newline at end of file
diff --git a/papers/llm-deception-self-preservation-2025/hn.json b/papers/llm-deception-self-preservation-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llm-fuzzing-challenges-2024/hn.json b/papers/llm-fuzzing-challenges-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "39378618",
+ "title": "Antagonistic AI",
+ "points": 78,
+ "comments": 54,
+ "url": "https://news.ycombinator.com/item?id=39378618",
+ "created_at": "2024-02-15T03:03:04Z"
+ },
+ {
+ "hn_id": "39474904",
+ "title": "Bridging Semantics for Automated Web Form Testing",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39474904",
+ "created_at": "2024-02-22T23:39:26Z"
+ },
+ {
+ "hn_id": "39383504",
+ "title": "Neural networks for abstraction and reasoning: Towards broad generalization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39383504",
+ "created_at": "2024-02-15T15:05:43Z"
+ },
+ {
+ "hn_id": "40709047",
+ "title": "Large Language Models for Forecasting and Anomaly Detection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40709047",
+ "created_at": "2024-06-17T18:13:52Z"
+ }
+ ],
+ "top_points": 78,
+ "total_points": 86,
+ "total_comments": 55
+}
+\ No newline at end of file
diff --git a/papers/llm-hallucinations-code-practical-2024/hn.json b/papers/llm-hallucinations-code-practical-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "40963623",
+ "title": "New large value estimates for Dirichlet polynomials",
+ "points": 11,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40963623",
+ "created_at": "2024-07-14T22:20:27Z"
+ },
+ {
+ "hn_id": "40733098",
+ "title": "Decentralized AI: Permissionless LLM Inference on POKT Network",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40733098",
+ "created_at": "2024-06-19T22:30:41Z"
+ },
+ {
+ "hn_id": "45441508",
+ "title": "Melegros: Monolithic Elephant-Inspired Gripper with Optical Sensors",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45441508",
+ "created_at": "2025-10-01T18:39:54Z"
+ },
+ {
+ "hn_id": "39692734",
+ "title": "Using Fiber Optic Bundles to Miniaturize Vision-Based Tactile Sensors",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39692734",
+ "created_at": "2024-03-13T15:40:36Z"
+ }
+ ],
+ "top_points": 11,
+ "total_points": 16,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/llm-harms-taxonomy-2025/hn.json b/papers/llm-harms-taxonomy-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "38737262",
+ "title": "Direct initialization of transformers using larger pretrained ones",
+ "points": 48,
+ "comments": 14,
+ "url": "https://news.ycombinator.com/item?id=38737262",
+ "created_at": "2023-12-22T18:54:56Z"
+ },
+ {
+ "hn_id": "31318574",
+ "title": "Flares from black hole binaries: black hole shadows via light-curve tomography",
+ "points": 43,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=31318574",
+ "created_at": "2022-05-09T19:24:38Z"
+ },
+ {
+ "hn_id": "43164753",
+ "title": "Switch-Based Antagonist Actuation with a Single Motor for a Soft Exosuit",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43164753",
+ "created_at": "2025-02-24T20:46:00Z"
+ },
+ {
+ "hn_id": "42418821",
+ "title": "Specifications: The missing link to make development of LLM an eng discipline",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42418821",
+ "created_at": "2024-12-14T19:07:39Z"
+ },
+ {
+ "hn_id": "33976318",
+ "title": "Measuring Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33976318",
+ "created_at": "2022-12-13T21:43:20Z"
+ },
+ {
+ "hn_id": "42443177",
+ "title": "Memristor-Based Selective Convolutional Circuit for Salt-N-Pepper Noise Removal",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42443177",
+ "created_at": "2024-12-17T17:20:24Z"
+ },
+ {
+ "hn_id": "33980774",
+ "title": "Graph algorithms for predicting subcellular localization at the pathway level",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33980774",
+ "created_at": "2022-12-14T06:51:58Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 99,
+ "total_comments": 15
+}
+\ No newline at end of file
diff --git a/papers/llm-impact-code-review-2025/hn.json b/papers/llm-impact-code-review-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "41492077",
+ "title": "Transfusion: Predict the next token and diffuse images with one multimodal model",
+ "points": 122,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=41492077",
+ "created_at": "2024-09-09T18:51:31Z"
+ },
+ {
+ "hn_id": "41319553",
+ "title": "First open source Legal AI retrieval benchmark for RAG finally released",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41319553",
+ "created_at": "2024-08-22T12:33:17Z"
+ },
+ {
+ "hn_id": "44770561",
+ "title": "B-Splines and Fourier-Best Friends for Spatial-Temporal Video Super-Resolution",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44770561",
+ "created_at": "2025-08-02T19:22:17Z"
+ },
+ {
+ "hn_id": "37325986",
+ "title": "Ramulator 2.0: A Modern, Modular, and Extensible DRAM Simulator",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37325986",
+ "created_at": "2023-08-30T17:46:58Z"
+ },
+ {
+ "hn_id": "44533795",
+ "title": "Human-Like Forgetting Curves in Deep Neural Networks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44533795",
+ "created_at": "2025-07-11T16:05:13Z"
+ },
+ {
+ "hn_id": "24376348",
+ "title": "Would there be any pattern in the death of Roman emperors?",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24376348",
+ "created_at": "2020-09-04T16:22:13Z"
+ },
+ {
+ "hn_id": "44686218",
+ "title": "The Heteronomy of Algorithms",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44686218",
+ "created_at": "2025-07-25T18:04:05Z"
+ },
+ {
+ "hn_id": "41310667",
+ "title": "Predict the Next Token and Diffuse Images with One Multi-Modal Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41310667",
+ "created_at": "2024-08-21T14:29:45Z"
+ }
+ ],
+ "top_points": 122,
+ "total_points": 143,
+ "total_comments": 11
+}
+\ No newline at end of file
diff --git a/papers/llm-long-term-memory-eval-2024/hn.json b/papers/llm-long-term-memory-eval-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "39568622",
+ "title": "ArtPrompt: ASCII Art-Based Jailbreak Attacks Against Aligned LLMs",
+ "points": 145,
+ "comments": 55,
+ "url": "https://news.ycombinator.com/item?id=39568622",
+ "created_at": "2024-03-02T00:30:06Z"
+ },
+ {
+ "hn_id": "39465357",
+ "title": "LongRoPE: Extending LLM Context Window Beyond 2M Tokens",
+ "points": 142,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=39465357",
+ "created_at": "2024-02-22T10:44:35Z"
+ },
+ {
+ "hn_id": "39811319",
+ "title": "Rose: Efficient and Extensible Autodiff on the Web",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39811319",
+ "created_at": "2024-03-24T23:03:03Z"
+ },
+ {
+ "hn_id": "39462835",
+ "title": "Microsoft's LongRoPE: Extending LLM Context Window Beyond 2M Tokens",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39462835",
+ "created_at": "2024-02-22T03:24:29Z"
+ },
+ {
+ "hn_id": "47203853",
+ "title": "Show HN: Engram – Memory for AI coding agents (2.5K installs, 80% on LOCOMO)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47203853",
+ "created_at": "2026-03-01T04:55:07Z"
+ },
+ {
+ "hn_id": "45007581",
+ "title": "Evaluating Long-Term Conversational Memory of LLM Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45007581",
+ "created_at": "2025-08-24T20:42:16Z"
+ }
+ ],
+ "top_points": 145,
+ "total_points": 295,
+ "total_comments": 101
+}
+\ No newline at end of file
diff --git a/papers/llm-pros-icpc-competitive-2025/hn.json b/papers/llm-pros-icpc-competitive-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llm-requirements-engineering-slr-2025/hn.json b/papers/llm-requirements-engineering-slr-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44332699",
+ "title": "AbsenceBench: Language models can't tell what's missing",
+ "points": 324,
+ "comments": 84,
+ "url": "https://news.ycombinator.com/item?id=44332699",
+ "created_at": "2025-06-20T22:26:52Z"
+ },
+ {
+ "hn_id": "44116412",
+ "title": "FlowTSE: Target Speaker Extraction with Flow Matching",
+ "points": 25,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44116412",
+ "created_at": "2025-05-28T14:30:33Z"
+ },
+ {
+ "hn_id": "43451552",
+ "title": "Blockchain with Proof of Quantum Work",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43451552",
+ "created_at": "2025-03-23T08:24:58Z"
+ },
+ {
+ "hn_id": "44445700",
+ "title": "A nanosecond-duration radio pulse originating from the defunct Relay 2 satellite",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44445700",
+ "created_at": "2025-07-02T16:31:26Z"
+ },
+ {
+ "hn_id": "43424742",
+ "title": "Blockchain with Proof of Quantum Work",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43424742",
+ "created_at": "2025-03-20T15:35:28Z"
+ },
+ {
+ "hn_id": "41630923",
+ "title": "Marca: Mamba Accelerator with ReConfigurable Architecture",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41630923",
+ "created_at": "2024-09-23T21:43:44Z"
+ },
+ {
+ "hn_id": "45250763",
+ "title": "Advancing Deep Search Agents with Knowledge Graphs and Multi-Turn RL",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45250763",
+ "created_at": "2025-09-15T15:22:49Z"
+ },
+ {
+ "hn_id": "44980047",
+ "title": "DuPO: Enabling Reliable LLM Self-Verification via Dual Preference Optimization",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44980047",
+ "created_at": "2025-08-22T01:07:28Z"
+ },
+ {
+ "hn_id": "44032309",
+ "title": "How AI Generates Creativity from Inauthenticity",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44032309",
+ "created_at": "2025-05-19T17:29:24Z"
+ },
+ {
+ "hn_id": "41598858",
+ "title": "An Imperative Language for Verified Exact Real-Number Computation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41598858",
+ "created_at": "2024-09-20T04:41:52Z"
+ }
+ ],
+ "top_points": 324,
+ "total_points": 364,
+ "total_comments": 87
+}
+\ No newline at end of file
diff --git a/papers/llm-secure-code-gen-empirical-2025/hn.json b/papers/llm-secure-code-gen-empirical-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43800345",
+ "title": "Creation of a black hole bomb instability in an electromagnetic system",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43800345",
+ "created_at": "2025-04-26T02:18:29Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 5,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/llm-strategic-deception-under-pressure-2023/hn.json b/papers/llm-strategic-deception-under-pressure-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38353880",
+ "title": "Misalignment and Deception by an autonomous stock trading LLM agent",
+ "points": 91,
+ "comments": 34,
+ "url": "https://news.ycombinator.com/item?id=38353880",
+ "created_at": "2023-11-20T20:11:02Z"
+ },
+ {
+ "hn_id": "38272789",
+ "title": "Large Language Models Can Strategically Deceive Their Users When Under Pressure",
+ "points": 8,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=38272789",
+ "created_at": "2023-11-15T02:57:49Z"
+ },
+ {
+ "hn_id": "34440230",
+ "title": "Logic programming for deliberative robotic task planning",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34440230",
+ "created_at": "2023-01-19T13:52:31Z"
+ },
+ {
+ "hn_id": "38747811",
+ "title": "Evaluating ChatGPT for Question Answering and Comparison with Existing Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38747811",
+ "created_at": "2023-12-23T20:21:42Z"
+ },
+ {
+ "hn_id": "38288742",
+ "title": "Large Language Models Can Strategically Deceive Their Users Under Pressure",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38288742",
+ "created_at": "2023-11-16T12:29:31Z"
+ },
+ {
+ "hn_id": "38306978",
+ "title": "Unprompted, LLM Agents can strategically deceive users when put under pressure",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38306978",
+ "created_at": "2023-11-17T17:38:22Z"
+ },
+ {
+ "hn_id": "38278204",
+ "title": "Large Language Models Can Strategically Deceive Their Users When Under Pressure",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38278204",
+ "created_at": "2023-11-15T16:05:19Z"
+ },
+ {
+ "hn_id": "45897072",
+ "title": "Show HN: CellARC Measuring Intelligence with Cellular Automata",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45897072",
+ "created_at": "2025-11-12T06:46:30Z"
+ },
+ {
+ "hn_id": "37896876",
+ "title": "Sorting It Out in Hardware: A State-of-the-Art Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37896876",
+ "created_at": "2023-10-16T07:49:46Z"
+ },
+ {
+ "hn_id": "36195669",
+ "title": "Fate in AI: Towards Algorithmic Inclusivity and Accessibility",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36195669",
+ "created_at": "2023-06-05T13:08:52Z"
+ }
+ ],
+ "top_points": 91,
+ "total_points": 113,
+ "total_comments": 39
+}
+\ No newline at end of file
diff --git a/papers/llm-test-generation-2025/hn.json b/papers/llm-test-generation-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35390153",
+ "title": "HuggingGPT: Solving AI tasks with ChatGPT and its friends in HuggingFace",
+ "points": 243,
+ "comments": 267,
+ "url": "https://news.ycombinator.com/item?id=35390153",
+ "created_at": "2023-03-31T17:22:19Z"
+ },
+ {
+ "hn_id": "45284766",
+ "title": "Towards a Physics Foundation Model",
+ "points": 117,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=45284766",
+ "created_at": "2025-09-18T03:06:08Z"
+ },
+ {
+ "hn_id": "30807022",
+ "title": "Mounting evidence for a 95 GeV Higgs boson",
+ "points": 88,
+ "comments": 26,
+ "url": "https://news.ycombinator.com/item?id=30807022",
+ "created_at": "2022-03-25T21:02:38Z"
+ },
+ {
+ "hn_id": "45482380",
+ "title": "Acoustic Eavesdropping via Mouse Sensors",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45482380",
+ "created_at": "2025-10-05T15:40:37Z"
+ },
+ {
+ "hn_id": "39892053",
+ "title": "Systematic ordering of foods in the Soup-Salad-Sandwich phase space",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39892053",
+ "created_at": "2024-04-01T09:02:55Z"
+ },
+ {
+ "hn_id": "22785832",
+ "title": "Mastering Mahjong with Deep Reinforcement Learning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22785832",
+ "created_at": "2020-04-05T14:45:14Z"
+ },
+ {
+ "hn_id": "44066363",
+ "title": "MMaDA: Multimodal Large Diffusion Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44066363",
+ "created_at": "2025-05-22T20:13:21Z"
+ },
+ {
+ "hn_id": "45503848",
+ "title": "Invisible Ears at Your Fingertips: Acoustic Eavesdropping via Mouse Sensors",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45503848",
+ "created_at": "2025-10-07T14:54:15Z"
+ },
+ {
+ "hn_id": "44120397",
+ "title": "MMaDA: Multimodal Large Diffusion Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44120397",
+ "created_at": "2025-05-28T20:33:16Z"
+ },
+ {
+ "hn_id": "35282416",
+ "title": "Efficient multi-stage inference on tabular data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35282416",
+ "created_at": "2023-03-23T22:38:28Z"
+ }
+ ],
+ "top_points": 243,
+ "total_points": 463,
+ "total_comments": 323
+}
+\ No newline at end of file
diff --git a/papers/llm-unit-test-generation-empirical-2024/hn.json b/papers/llm-unit-test-generation-empirical-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39499207",
+ "title": "Hallucination is inevitable: An innate limitation of large language models",
+ "points": 308,
+ "comments": 474,
+ "url": "https://news.ycombinator.com/item?id=39499207",
+ "created_at": "2024-02-25T09:28:39Z"
+ },
+ {
+ "hn_id": "28230092",
+ "title": "A Dyson sphere around a black hole",
+ "points": 214,
+ "comments": 231,
+ "url": "https://news.ycombinator.com/item?id=28230092",
+ "created_at": "2021-08-19T03:40:00Z"
+ },
+ {
+ "hn_id": "39888769",
+ "title": "Mini-Gemini: Mining the Potential of Multi-Modality Vision Language Models",
+ "points": 83,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=39888769",
+ "created_at": "2024-03-31T22:38:09Z"
+ },
+ {
+ "hn_id": "42531993",
+ "title": "Empirical Study of Test Generation with LLM's",
+ "points": 40,
+ "comments": 36,
+ "url": "https://news.ycombinator.com/item?id=42531993",
+ "created_at": "2024-12-28T16:10:24Z"
+ },
+ {
+ "hn_id": "41022645",
+ "title": "Modal Effect Types",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41022645",
+ "created_at": "2024-07-21T05:31:06Z"
+ },
+ {
+ "hn_id": "39314708",
+ "title": "Hallucination Is Inevitable: An Innate Limitation of Large Language Models",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39314708",
+ "created_at": "2024-02-09T13:37:34Z"
+ },
+ {
+ "hn_id": "40390670",
+ "title": "Acoustic Manipulation of Underwater Data Center Operations, Resource Management",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40390670",
+ "created_at": "2024-05-17T15:00:15Z"
+ },
+ {
+ "hn_id": "40190640",
+ "title": "Holographic Parallax Improves 3D Perceptual Realism",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40190640",
+ "created_at": "2024-04-28T18:27:41Z"
+ },
+ {
+ "hn_id": "39899945",
+ "title": "Turning News Graphics into TikToks by Adjusting Narrative Beats and Pacing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39899945",
+ "created_at": "2024-04-01T22:04:16Z"
+ },
+ {
+ "hn_id": "39503420",
+ "title": "An Empirical Evaluation of LLMs for Solving Offensive Security Challenges",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39503420",
+ "created_at": "2024-02-25T18:35:55Z"
+ }
+ ],
+ "top_points": 308,
+ "total_points": 656,
+ "total_comments": 750
+}
+\ No newline at end of file
diff --git a/papers/llmbased-framework-support-2025/hn.json b/papers/llmbased-framework-support-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llmbased-multiagent-systems-2024/hn.json b/papers/llmbased-multiagent-systems-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43685817",
+ "title": "All-in-Memory Stochastic Computing Using ReRAM",
+ "points": 30,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43685817",
+ "created_at": "2025-04-14T20:14:29Z"
+ },
+ {
+ "hn_id": "44934611",
+ "title": "Scientific and technological knowledge grows linearly over time",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44934611",
+ "created_at": "2025-08-17T20:22:11Z"
+ },
+ {
+ "hn_id": "40671396",
+ "title": "Doing Battle with the Sun: Lessons from Low Earth Orbit",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40671396",
+ "created_at": "2024-06-13T16:07:32Z"
+ },
+ {
+ "hn_id": "42566444",
+ "title": "DeepSeek-V2: A Strong, Economical, and Efficient MOE Language Model",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42566444",
+ "created_at": "2025-01-01T15:10:28Z"
+ },
+ {
+ "hn_id": "39305148",
+ "title": "Long Is More for Alignment: A Simple Baseline for Instruction Fine-Tuning",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39305148",
+ "created_at": "2024-02-08T17:55:17Z"
+ },
+ {
+ "hn_id": "44710581",
+ "title": "Futureproof Static Memory Planning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44710581",
+ "created_at": "2025-07-28T13:16:11Z"
+ },
+ {
+ "hn_id": "41128425",
+ "title": "Things Come from Having Many Good Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41128425",
+ "created_at": "2024-08-01T12:25:07Z"
+ },
+ {
+ "hn_id": "39032813",
+ "title": "Adapting Standard Retrieval Benchmarks to Evaluate Generated Answers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39032813",
+ "created_at": "2024-01-17T20:13:37Z"
+ },
+ {
+ "hn_id": "26741246",
+ "title": "The Production and Consumption of Social Media",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26741246",
+ "created_at": "2021-04-08T17:08:04Z"
+ }
+ ],
+ "top_points": 30,
+ "total_points": 48,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/llmbased-retrievalaugmented-control-2024/hn.json b/papers/llmbased-retrievalaugmented-control-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llmbased-vulnerability-detection-2026/hn.json b/papers/llmbased-vulnerability-detection-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46781038",
+ "title": "An ultra-high-resolution map of (dark) matter",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46781038",
+ "created_at": "2026-01-27T15:12:25Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llmcoordination-evaluating-analyzing-2023/hn.json b/papers/llmcoordination-evaluating-analyzing-2023/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45492803",
+ "title": "OpenZL: An open source format-aware compression framework",
+ "points": 434,
+ "comments": 107,
+ "url": "https://news.ycombinator.com/item?id=45492803",
+ "created_at": "2025-10-06T16:01:58Z"
+ },
+ {
+ "hn_id": "40612538",
+ "title": "Benchmarking the Energy Costs of Large Language Model Inference (2023)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40612538",
+ "created_at": "2024-06-07T20:17:48Z"
+ },
+ {
+ "hn_id": "38186733",
+ "title": "Pipeline Parallelism for DNN Inference with Practical Performance Guarantees",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38186733",
+ "created_at": "2023-11-08T04:16:22Z"
+ },
+ {
+ "hn_id": "37896876",
+ "title": "Sorting It Out in Hardware: A State-of-the-Art Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37896876",
+ "created_at": "2023-10-16T07:49:46Z"
+ },
+ {
+ "hn_id": "38698557",
+ "title": "Augmenting LLM with Human-Like Memory for Mobile Task Automation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38698557",
+ "created_at": "2023-12-19T17:29:15Z"
+ },
+ {
+ "hn_id": "34332441",
+ "title": "Hunter: Using Change Point Detection to Hunt for Performance Regressions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34332441",
+ "created_at": "2023-01-10T22:28:46Z"
+ }
+ ],
+ "top_points": 434,
+ "total_points": 441,
+ "total_comments": 107
+}
+\ No newline at end of file
diff --git a/papers/llmrouterbench-massive-benchmark-2026/hn.json b/papers/llmrouterbench-massive-benchmark-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/llms-encode-their-2026/hn.json b/papers/llms-encode-their-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46995551",
+ "title": "Routing LLM queries using internal success predictions (70% cost reduction)",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46995551",
+ "created_at": "2026-02-12T21:33:47Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/llms-prescient-continuous-2024/hn.json b/papers/llms-prescient-continuous-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "41883728",
+ "title": "Agents Thinking Fast and Slow: A Talker-Reasoner Architecture",
+ "points": 13,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41883728",
+ "created_at": "2024-10-18T21:36:47Z"
+ },
+ {
+ "hn_id": "41968116",
+ "title": "Agents Thinking Fast and Slow: A Talker-Reasoner Architecture",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41968116",
+ "created_at": "2024-10-28T05:37:38Z"
+ },
+ {
+ "hn_id": "41963802",
+ "title": "Solving Global Lyapunov functions: open problem in mathematics with transformers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41963802",
+ "created_at": "2024-10-27T16:36:50Z"
+ },
+ {
+ "hn_id": "41842065",
+ "title": "Agents Thinking Fast and Slow: A Talker-Reasoner Architecture",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41842065",
+ "created_at": "2024-10-14T21:11:10Z"
+ },
+ {
+ "hn_id": "42258010",
+ "title": "Gradient Boosting Trees and LLMs for Tabular Data Few-Shot Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258010",
+ "created_at": "2024-11-27T17:46:47Z"
+ },
+ {
+ "hn_id": "45842485",
+ "title": "Death by a Thousand Prompts: Open Model Vulnerability Analysis",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45842485",
+ "created_at": "2025-11-07T00:59:31Z"
+ },
+ {
+ "hn_id": "41872780",
+ "title": "Discovering Global Lyapunov functions using symbolic transformers",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41872780",
+ "created_at": "2024-10-17T19:09:00Z"
+ },
+ {
+ "hn_id": "33454886",
+ "title": "EDiffi: Text-to-Image Diffusion Models with an Ensemble of Expert Denoisers",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33454886",
+ "created_at": "2022-11-03T18:00:20Z"
+ },
+ {
+ "hn_id": "42646570",
+ "title": "Protect Dark and Quiet Sky from Harmful Interference by Satellite Constellations",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42646570",
+ "created_at": "2025-01-09T15:28:14Z"
+ }
+ ],
+ "top_points": 13,
+ "total_points": 37,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/llms-se-systematic-review-2023/hn.json b/papers/llms-se-systematic-review-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36012320",
+ "title": "Tree of Thoughts: Deliberate Problem Solving with Large Language Models",
+ "points": 34,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36012320",
+ "created_at": "2023-05-20T14:43:30Z"
+ },
+ {
+ "hn_id": "41391420",
+ "title": "Kan 2.0: Kolmogorov-Arnold Networks Meet Science",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41391420",
+ "created_at": "2024-08-29T14:54:10Z"
+ },
+ {
+ "hn_id": "36002796",
+ "title": "Tree of Thoughts: Deliberate Problem Solving with Large Language Models",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36002796",
+ "created_at": "2023-05-19T15:02:59Z"
+ },
+ {
+ "hn_id": "36585056",
+ "title": "Natural Selection Favors AIs over Humans",
+ "points": 4,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=36585056",
+ "created_at": "2023-07-04T11:08:02Z"
+ },
+ {
+ "hn_id": "32632312",
+ "title": "Exploring the Role of the Cybercrime Underground in the Russia-Ukraine Conflict",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32632312",
+ "created_at": "2022-08-28T21:36:55Z"
+ },
+ {
+ "hn_id": "37866902",
+ "title": "Getting Bored of Cyberwar",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37866902",
+ "created_at": "2023-10-13T05:03:06Z"
+ },
+ {
+ "hn_id": "36008023",
+ "title": "Tree-of-Thought (ToT), complex and general problem solving with LLMs",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36008023",
+ "created_at": "2023-05-19T23:38:37Z"
+ },
+ {
+ "hn_id": "37990040",
+ "title": "Exploring the Space of Key-Value-Query Models with Intention",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37990040",
+ "created_at": "2023-10-23T18:58:38Z"
+ },
+ {
+ "hn_id": "36381655",
+ "title": "Natural Selection Favors AIs over Humans",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36381655",
+ "created_at": "2023-06-18T16:23:55Z"
+ },
+ {
+ "hn_id": "36149566",
+ "title": "Tree of Thoughts: Official vs. Wrong Implementation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36149566",
+ "created_at": "2023-06-01T11:00:31Z"
+ }
+ ],
+ "top_points": 34,
+ "total_points": 70,
+ "total_comments": 8
+}
+\ No newline at end of file
diff --git a/papers/llms-software-security-2025/hn.json b/papers/llms-software-security-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43042753",
+ "title": "LM2: Large Memory Models",
+ "points": 110,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=43042753",
+ "created_at": "2025-02-13T23:21:21Z"
+ }
+ ],
+ "top_points": 110,
+ "total_points": 110,
+ "total_comments": 30
+}
+\ No newline at end of file
diff --git a/papers/llmsecconfig-llmbased-approach-2025/hn.json b/papers/llmsecconfig-llmbased-approach-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43056398",
+ "title": "Geometry of Prompting: Distinct Mechanisms of Task Adaptation in Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43056398",
+ "created_at": "2025-02-15T06:28:56Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/local-llm-ensembles-2025/hn.json b/papers/local-llm-ensembles-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45745607",
+ "title": "Collatz-Weyl Generators: Pseudorandom Number Generators (2023)",
+ "points": 59,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45745607",
+ "created_at": "2025-10-29T11:55:42Z"
+ },
+ {
+ "hn_id": "38794757",
+ "title": "Knowledge Graph Reasoning Based on Attention GCN",
+ "points": 52,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=38794757",
+ "created_at": "2023-12-28T16:02:24Z"
+ },
+ {
+ "hn_id": "46287626",
+ "title": "Detailed balance in large language model-driven agents",
+ "points": 48,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=46287626",
+ "created_at": "2025-12-16T12:17:08Z"
+ },
+ {
+ "hn_id": "38722880",
+ "title": "ReST Meets ReAct: Self-Improvement for Multi-Step Reasoning LLM Agent",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38722880",
+ "created_at": "2023-12-21T16:45:46Z"
+ },
+ {
+ "hn_id": "38681247",
+ "title": "Point Transformer V3: Simpler, Faster, Stronger",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38681247",
+ "created_at": "2023-12-18T11:29:41Z"
+ },
+ {
+ "hn_id": "46279856",
+ "title": "Detailed balance in large language model-driven agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46279856",
+ "created_at": "2025-12-15T20:11:28Z"
+ },
+ {
+ "hn_id": "45930419",
+ "title": "A Large-Scale Computational Analysis of Errors in ArXiv Papers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45930419",
+ "created_at": "2025-11-14T18:52:29Z"
+ },
+ {
+ "hn_id": "45927607",
+ "title": "Black-Box On-Policy Distillation of Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45927607",
+ "created_at": "2025-11-14T15:18:22Z"
+ },
+ {
+ "hn_id": "43204606",
+ "title": "Strassen Multisystolic Array Hardware Architectures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43204606",
+ "created_at": "2025-02-28T11:48:06Z"
+ },
+ {
+ "hn_id": "42418107",
+ "title": "Towards Reasoning in Large Language Models: A Survey (2023)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42418107",
+ "created_at": "2024-12-14T16:50:49Z"
+ }
+ ],
+ "top_points": 59,
+ "total_points": 169,
+ "total_comments": 18
+}
+\ No newline at end of file
diff --git a/papers/lockin-phase-hypothesis-2025/hn.json b/papers/lockin-phase-hypothesis-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45716414",
+ "title": "Stuck in the Matrix: Probing Spatial Reasoning in Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45716414",
+ "created_at": "2025-10-27T01:11:46Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/logically-constrained-decoding-2025/hn.json b/papers/logically-constrained-decoding-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/lost-translation-study-2024/hn.json b/papers/lost-translation-study-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "34337707",
+ "title": "“A Handbook of Integer Sequences” Fifty Years Later",
+ "points": 139,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=34337707",
+ "created_at": "2023-01-11T12:37:58Z"
+ },
+ {
+ "hn_id": "38740280",
+ "title": "Using sequences of life-events to predict human lives",
+ "points": 98,
+ "comments": 51,
+ "url": "https://news.ycombinator.com/item?id=38740280",
+ "created_at": "2023-12-23T00:08:58Z"
+ },
+ {
+ "hn_id": "37434069",
+ "title": "Large Language Models as Optimizers. +50% on Big Bench Hard",
+ "points": 95,
+ "comments": 33,
+ "url": "https://news.ycombinator.com/item?id=37434069",
+ "created_at": "2023-09-08T14:37:30Z"
+ },
+ {
+ "hn_id": "28119944",
+ "title": "The Challenge of Finding Security Advice for Smart Home Devices",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28119944",
+ "created_at": "2021-08-09T17:50:13Z"
+ },
+ {
+ "hn_id": "38696040",
+ "title": "Using sequences of life-events to predict human lives",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38696040",
+ "created_at": "2023-12-19T14:40:17Z"
+ },
+ {
+ "hn_id": "35085380",
+ "title": "Φ-So – Physical Symbolic Optimization in PyTorch",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35085380",
+ "created_at": "2023-03-09T19:19:42Z"
+ },
+ {
+ "hn_id": "34649117",
+ "title": "Goniometers: A Powerful Acoustic Feature for Music Information Retrieval Tasks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34649117",
+ "created_at": "2023-02-03T23:07:39Z"
+ },
+ {
+ "hn_id": "34839217",
+ "title": "Cinematic Techniques in Narrative Visualization",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34839217",
+ "created_at": "2023-02-17T19:31:48Z"
+ },
+ {
+ "hn_id": "38600573",
+ "title": "Can large language models democratize access to dual-use biotechnology? [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38600573",
+ "created_at": "2023-12-11T13:45:09Z"
+ },
+ {
+ "hn_id": "37137695",
+ "title": "Efficient Domain Adaptation of Sentence Embeddings Using Adapters",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37137695",
+ "created_at": "2023-08-15T18:46:46Z"
+ }
+ ],
+ "top_points": 139,
+ "total_points": 352,
+ "total_comments": 130
+}
+\ No newline at end of file
diff --git a/papers/lumen-developer-agency-2025/hn.json b/papers/lumen-developer-agency-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/magicagent-generalized-agent-2026/hn.json b/papers/magicagent-generalized-agent-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46991734",
+ "title": "RL on GPT-5 to write better kernels",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46991734",
+ "created_at": "2026-02-12T17:22:31Z"
+ },
+ {
+ "hn_id": "47004259",
+ "title": "Fine-Tuning GPT-5 for GPU Kernel Generation",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47004259",
+ "created_at": "2026-02-13T16:04:35Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 8,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/make-every-move-2024/hn.json b/papers/make-every-move-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "39275203",
+ "title": "Bluesky and the AT Protocol: Usable decentralized social media",
+ "points": 245,
+ "comments": 276,
+ "url": "https://news.ycombinator.com/item?id=39275203",
+ "created_at": "2024-02-06T15:25:33Z"
+ },
+ {
+ "hn_id": "39292705",
+ "title": "Training-Free Consistent Text-to-Image Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39292705",
+ "created_at": "2024-02-07T18:59:52Z"
+ },
+ {
+ "hn_id": "39526135",
+ "title": "College Basketball: An In-Depth Study of the \"Foul Up 3\" Dilemma [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39526135",
+ "created_at": "2024-02-27T16:38:27Z"
+ }
+ ],
+ "top_points": 245,
+ "total_points": 248,
+ "total_comments": 276
+}
+\ No newline at end of file
diff --git a/papers/making-llms-reliable-2025/hn.json b/papers/making-llms-reliable-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "38276574",
+ "title": "Spherules collected by Loeb et al. do not appear to be extrasolar",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38276574",
+ "created_at": "2023-11-15T13:51:28Z"
+ },
+ {
+ "hn_id": "38287654",
+ "title": "Mart: Improving LLM Safety with Multi-Round Automatic Red-Teaming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38287654",
+ "created_at": "2023-11-16T10:04:01Z"
+ },
+ {
+ "hn_id": "38282521",
+ "title": "Mart: Improving LLM Safety with Multi-Round Automatic Red-Teaming",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38282521",
+ "created_at": "2023-11-15T21:09:22Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 8,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/malice-agentland-down-2025/hn.json b/papers/malice-agentland-down-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "33227427",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 34,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=33227427",
+ "created_at": "2022-10-16T21:43:27Z"
+ },
+ {
+ "hn_id": "33232042",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=33232042",
+ "created_at": "2022-10-17T11:18:16Z"
+ },
+ {
+ "hn_id": "33200244",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33200244",
+ "created_at": "2022-10-14T06:28:28Z"
+ },
+ {
+ "hn_id": "42911219",
+ "title": "High-resolution imaging of radio source associated with Dyson Sphere Candidate G",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42911219",
+ "created_at": "2025-02-02T19:53:54Z"
+ },
+ {
+ "hn_id": "33192776",
+ "title": "Neural Networks Are Decision Trees",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33192776",
+ "created_at": "2022-10-13T15:57:00Z"
+ },
+ {
+ "hn_id": "41741744",
+ "title": "Mitigating Memorization in Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41741744",
+ "created_at": "2024-10-04T14:23:05Z"
+ },
+ {
+ "hn_id": "33303465",
+ "title": "Grounded Language Model Reasoning Through Simulation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33303465",
+ "created_at": "2022-10-23T00:33:43Z"
+ },
+ {
+ "hn_id": "45538593",
+ "title": "New paper: A single character can make or break your LLM evals",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45538593",
+ "created_at": "2025-10-10T13:09:51Z"
+ },
+ {
+ "hn_id": "46151267",
+ "title": "Generative Graph Vocabularies for Robust Graph Foundation Models Fine-Tuning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46151267",
+ "created_at": "2025-12-04T18:46:47Z"
+ },
+ {
+ "hn_id": "42021531",
+ "title": "Understanding Warmup-Stable-Decay Learning Rates",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42021531",
+ "created_at": "2024-11-01T21:02:29Z"
+ }
+ ],
+ "top_points": 34,
+ "total_points": 55,
+ "total_comments": 12
+}
+\ No newline at end of file
diff --git a/papers/mama-gametheoretic-approach-2026/hn.json b/papers/mama-gametheoretic-approach-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/manatee-inferencetime-lightweight-2026/hn.json b/papers/manatee-inferencetime-lightweight-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47171103",
+ "title": "Ontology-Guided LLMs: Grounding Inference with OpenMath Knowledge",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47171103",
+ "created_at": "2026-02-26T19:48:04Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/many-ai-analysts-2026/hn.json b/papers/many-ai-analysts-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/marshal-incentivizing-multiagent-2025/hn.json b/papers/marshal-incentivizing-multiagent-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42807387",
+ "title": "A Faster Quantum Fourier Transform",
+ "points": 89,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=42807387",
+ "created_at": "2025-01-23T19:49:59Z"
+ },
+ {
+ "hn_id": "41900729",
+ "title": "Black Holes Inside and Out 2024",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41900729",
+ "created_at": "2024-10-21T04:40:15Z"
+ }
+ ],
+ "top_points": 89,
+ "total_points": 91,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/martingale-score-unsupervised-2025/hn.json b/papers/martingale-score-unsupervised-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42810048",
+ "title": "CogAgent: Open-Source Alternative to OpenAI Operator Agent from China",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42810048",
+ "created_at": "2025-01-24T02:43:31Z"
+ },
+ {
+ "hn_id": "29471315",
+ "title": "An Impossible Asylum [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29471315",
+ "created_at": "2021-12-07T11:25:02Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/masked-hardattention-transformers-2023/hn.json b/papers/masked-hardattention-transformers-2023/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "41878961",
+ "title": "Numerical Precision Affects Mathematical Reasoning Capabilities of LLMs",
+ "points": 66,
+ "comments": 49,
+ "url": "https://news.ycombinator.com/item?id=41878961",
+ "created_at": "2024-10-18T12:51:35Z"
+ },
+ {
+ "hn_id": "29107703",
+ "title": "Nested Graph Neural Networks",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=29107703",
+ "created_at": "2021-11-04T14:34:39Z"
+ },
+ {
+ "hn_id": "34654037",
+ "title": "Mathematical Capabilities of ChatGPT",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34654037",
+ "created_at": "2023-02-04T12:44:04Z"
+ },
+ {
+ "hn_id": "34246400",
+ "title": "The Frequency Spectrum and Geometry of the Hal Saflieni Hypogeum Appear Tuned",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34246400",
+ "created_at": "2023-01-04T15:12:23Z"
+ },
+ {
+ "hn_id": "45828475",
+ "title": "Evaluating Probabilistic Reasoning in LLMs Through Language-Only Decision Tasks",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45828475",
+ "created_at": "2025-11-05T21:45:14Z"
+ },
+ {
+ "hn_id": "6513589",
+ "title": "Lecture Notes: Circuit QED",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=6513589",
+ "created_at": "2013-10-08T08:14:20Z"
+ }
+ ],
+ "top_points": 66,
+ "total_points": 75,
+ "total_comments": 51
+}
+\ No newline at end of file
diff --git a/papers/matplotagent-method-evaluation-2024/hn.json b/papers/matplotagent-method-evaluation-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "39568622",
+ "title": "ArtPrompt: ASCII Art-Based Jailbreak Attacks Against Aligned LLMs",
+ "points": 145,
+ "comments": 55,
+ "url": "https://news.ycombinator.com/item?id=39568622",
+ "created_at": "2024-03-02T00:30:06Z"
+ },
+ {
+ "hn_id": "43761387",
+ "title": "Should We Respect LLMs? A Study on Influence of Prompt Politeness on Performance",
+ "points": 48,
+ "comments": 105,
+ "url": "https://news.ycombinator.com/item?id=43761387",
+ "created_at": "2025-04-22T12:35:12Z"
+ },
+ {
+ "hn_id": "43175799",
+ "title": "The Influence of Prompt Politeness on LLM Performance",
+ "points": 17,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43175799",
+ "created_at": "2025-02-25T18:53:26Z"
+ },
+ {
+ "hn_id": "39449100",
+ "title": "VoltSchemer: Use Voltage Noise to Manipulate a Wireless Charger",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39449100",
+ "created_at": "2024-02-21T01:15:44Z"
+ },
+ {
+ "hn_id": "39552114",
+ "title": "Should We Respect LLMs? Studying the Influence of Politeness on LLM Performance",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39552114",
+ "created_at": "2024-02-29T17:07:42Z"
+ }
+ ],
+ "top_points": 145,
+ "total_points": 214,
+ "total_comments": 162
+}
+\ No newline at end of file
diff --git a/papers/maybe-we-need-2025/hn.json b/papers/maybe-we-need-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "43193918",
+ "title": "Ringworlds and Dyson spheres can be stable",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43193918",
+ "created_at": "2025-02-27T12:48:58Z"
+ },
+ {
+ "hn_id": "44778108",
+ "title": "Agentic Web: Weaving the Next Web with AI Agents",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44778108",
+ "created_at": "2025-08-03T17:19:31Z"
+ },
+ {
+ "hn_id": "46176457",
+ "title": "Individual and Team Drivers of Developer GenAI Tool Use",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46176457",
+ "created_at": "2025-12-06T20:44:26Z"
+ },
+ {
+ "hn_id": "44736074",
+ "title": "Combolutional Neural Networks [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44736074",
+ "created_at": "2025-07-30T16:10:46Z"
+ },
+ {
+ "hn_id": "44853245",
+ "title": "Agentic Web – Weaving the Next Web with AI Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44853245",
+ "created_at": "2025-08-10T06:42:18Z"
+ },
+ {
+ "hn_id": "41165478",
+ "title": "Evaluation of LLMs Biases Towards Elite Universities: Persona-Based Exploration",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41165478",
+ "created_at": "2024-08-05T20:50:58Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 15,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/mcp-safety-audit-2025/hn.json b/papers/mcp-safety-audit-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43989432",
+ "title": "OnPrem.LLM: A Privacy-Conscious Document Intelligence Toolkit",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43989432",
+ "created_at": "2025-05-14T21:30:02Z"
+ },
+ {
+ "hn_id": "47156342",
+ "title": "Game theory meets lattice gases and spin-glasses: Zero-player Entropy Game",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47156342",
+ "created_at": "2026-02-25T19:14:39Z"
+ },
+ {
+ "hn_id": "45728180",
+ "title": "Extreme-temperature single-particle heat engine",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45728180",
+ "created_at": "2025-10-28T00:54:20Z"
+ },
+ {
+ "hn_id": "43791248",
+ "title": "LLMs with the Model Context Protocol Allow Major Security Exploits",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43791248",
+ "created_at": "2025-04-25T07:50:08Z"
+ },
+ {
+ "hn_id": "46150348",
+ "title": "Ising-Conway Entropy Game (ICEg)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46150348",
+ "created_at": "2025-12-04T17:36:35Z"
+ },
+ {
+ "hn_id": "44517444",
+ "title": "RVISmith: Fuzzing Compilers for RVV (RISC-V Vector Extension) Intrinsics",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44517444",
+ "created_at": "2025-07-10T05:09:17Z"
+ },
+ {
+ "hn_id": "39155448",
+ "title": "Replicability and Stability in Learning",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39155448",
+ "created_at": "2024-01-27T13:39:15Z"
+ },
+ {
+ "hn_id": "44043715",
+ "title": "Ultra-Low-Power Spiking Neurons in 7 Nm FinFET Technology",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44043715",
+ "created_at": "2025-05-20T17:07:19Z"
+ },
+ {
+ "hn_id": "43342486",
+ "title": "Sarcasm Detection: Improving Stance Detection with Cross-Target Capabilities",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43342486",
+ "created_at": "2025-03-12T12:26:02Z"
+ },
+ {
+ "hn_id": "26769891",
+ "title": "Practical Byzantine Reliable Broadcast on Partially Connected Networks (2021)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26769891",
+ "created_at": "2021-04-11T12:32:44Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 21,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/mcp-security-bench-2025/hn.json b/papers/mcp-security-bench-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "45722841",
+ "title": "The Shape of Math to Come by Alex Kontorovich",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45722841",
+ "created_at": "2025-10-27T16:24:06Z"
+ },
+ {
+ "hn_id": "45656753",
+ "title": "The Shape of Math to Come",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45656753",
+ "created_at": "2025-10-21T15:07:05Z"
+ },
+ {
+ "hn_id": "44299612",
+ "title": "Developing RAG Based LLM Systems from PDFs: An Experience Report (2024)",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44299612",
+ "created_at": "2025-06-17T14:22:29Z"
+ },
+ {
+ "hn_id": "41973107",
+ "title": "Hard Proofs and Good Reasons",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41973107",
+ "created_at": "2024-10-28T16:36:14Z"
+ },
+ {
+ "hn_id": "41913365",
+ "title": "Protein structure classification based on X-ray laser induced Coulomb explosion",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41913365",
+ "created_at": "2024-10-22T11:53:25Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 9,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/mcp-security-risks-governance-2025/hn.json b/papers/mcp-security-risks-governance-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "39973228",
+ "title": "TableLlama: Towards Open Large Generalist Models for Tables",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39973228",
+ "created_at": "2024-04-08T20:11:45Z"
+ },
+ {
+ "hn_id": "45716416",
+ "title": "Merge and Conquer: Evolutionarily Optimizing AI for 2048",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45716416",
+ "created_at": "2025-10-27T01:12:08Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/mcp-security-sok-2025/hn.json b/papers/mcp-security-sok-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "46224599",
+ "title": "Systemization of Knowledge: Security and Safety Challenges in MCP",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46224599",
+ "created_at": "2025-12-10T22:09:44Z"
+ },
+ {
+ "hn_id": "42970488",
+ "title": "Global Optimization of Black-Box Functions with Unknown Lipschitz Constants",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42970488",
+ "created_at": "2025-02-07T08:01:56Z"
+ },
+ {
+ "hn_id": "42408493",
+ "title": "Phi-4 Technical Report",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42408493",
+ "created_at": "2024-12-13T14:04:47Z"
+ },
+ {
+ "hn_id": "46230927",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46230927",
+ "created_at": "2025-12-11T13:09:28Z"
+ },
+ {
+ "hn_id": "43164753",
+ "title": "Switch-Based Antagonist Actuation with a Single Motor for a Soft Exosuit",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43164753",
+ "created_at": "2025-02-24T20:46:00Z"
+ },
+ {
+ "hn_id": "43071390",
+ "title": "Improving Existing Optimization Algorithms with LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43071390",
+ "created_at": "2025-02-16T20:31:40Z"
+ },
+ {
+ "hn_id": "46641808",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46641808",
+ "created_at": "2026-01-16T01:12:48Z"
+ },
+ {
+ "hn_id": "47297903",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47297903",
+ "created_at": "2026-03-08T15:04:46Z"
+ },
+ {
+ "hn_id": "46409589",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46409589",
+ "created_at": "2025-12-28T09:07:07Z"
+ },
+ {
+ "hn_id": "46351355",
+ "title": "Towards a Science of Scaling Agent System",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46351355",
+ "created_at": "2025-12-22T04:40:00Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 19,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/measuring-agents-production-2025/hn.json b/papers/measuring-agents-production-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "46902855",
+ "title": "Psychometric Jailbreaks Reveal Internal Conflict in Frontier Models",
+ "points": 68,
+ "comments": 60,
+ "url": "https://news.ycombinator.com/item?id=46902855",
+ "created_at": "2026-02-05T18:21:53Z"
+ },
+ {
+ "hn_id": "42993305",
+ "title": "The Differences Between Direct Alignment Algorithms Are a Blur",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42993305",
+ "created_at": "2025-02-09T20:00:02Z"
+ },
+ {
+ "hn_id": "46207995",
+ "title": "Psychometric Jailbreaks Reveal Internal Conflict in Frontier Models",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46207995",
+ "created_at": "2025-12-09T17:46:24Z"
+ },
+ {
+ "hn_id": "46464651",
+ "title": "Measuring Agents in Production",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46464651",
+ "created_at": "2026-01-02T13:42:30Z"
+ },
+ {
+ "hn_id": "46358753",
+ "title": "Psychometric Jailbreaks Reveal Internal Conflict in Frontier Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46358753",
+ "created_at": "2025-12-22T20:38:00Z"
+ },
+ {
+ "hn_id": "46245275",
+ "title": "Encryption Scheme Based on the Vector Computational Diffie-Hellman Problem",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46245275",
+ "created_at": "2025-12-12T15:52:30Z"
+ },
+ {
+ "hn_id": "45472776",
+ "title": "Scaling Test Time Compute",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45472776",
+ "created_at": "2025-10-04T12:17:59Z"
+ },
+ {
+ "hn_id": "46524863",
+ "title": "Measuring AI Agents in Production",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46524863",
+ "created_at": "2026-01-07T10:52:39Z"
+ },
+ {
+ "hn_id": "46185219",
+ "title": "Measuring Agents in Production",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46185219",
+ "created_at": "2025-12-07T21:14:28Z"
+ },
+ {
+ "hn_id": "46559629",
+ "title": "When AI Takes the Couch: Internal Conflict in Frontier Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46559629",
+ "created_at": "2026-01-09T21:29:20Z"
+ }
+ ],
+ "top_points": 68,
+ "total_points": 92,
+ "total_comments": 60
+}
+\ No newline at end of file
diff --git a/papers/measuring-ai-ability-2025/hn.json b/papers/measuring-ai-ability-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43422084",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43422084",
+ "created_at": "2025-03-20T12:15:14Z"
+ },
+ {
+ "hn_id": "43433880",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43433880",
+ "created_at": "2025-03-21T10:16:49Z"
+ },
+ {
+ "hn_id": "43553230",
+ "title": "State Space Model Meets Transformer: A New Paradigm for 3D Object Detection",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43553230",
+ "created_at": "2025-04-02T02:41:52Z"
+ },
+ {
+ "hn_id": "44496861",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44496861",
+ "created_at": "2025-07-08T03:44:36Z"
+ },
+ {
+ "hn_id": "43775378",
+ "title": "Guillotine: Hypervisors for Isolating Malicious AIs",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43775378",
+ "created_at": "2025-04-23T18:46:30Z"
+ },
+ {
+ "hn_id": "44721131",
+ "title": "\"It looks sexy but it's wrong.\"",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44721131",
+ "created_at": "2025-07-29T09:33:07Z"
+ },
+ {
+ "hn_id": "43569873",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43569873",
+ "created_at": "2025-04-03T14:03:58Z"
+ },
+ {
+ "hn_id": "43820322",
+ "title": "Guillotine: Hypervisors for Isolating Malicious AIs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43820322",
+ "created_at": "2025-04-28T11:53:01Z"
+ },
+ {
+ "hn_id": "43417417",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43417417",
+ "created_at": "2025-03-19T21:18:19Z"
+ },
+ {
+ "hn_id": "43130685",
+ "title": "MLGym: A New Framework and Benchmark for Advancing AI Research Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43130685",
+ "created_at": "2025-02-21T17:57:20Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 28,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/measuring-impact-programming-2023/hn.json b/papers/measuring-impact-programming-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/measuring-mid2025-llmassistance-2026/hn.json b/papers/measuring-mid2025-llmassistance-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/measuring-what-matters-2025/hn.json b/papers/measuring-what-matters-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "42158451",
+ "title": "Convolutional Differentiable Logic Gate Networks",
+ "points": 26,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42158451",
+ "created_at": "2024-11-16T19:10:54Z"
+ },
+ {
+ "hn_id": "42793648",
+ "title": "Political information curation on Google and Bing prior to 2024 US elections",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42793648",
+ "created_at": "2025-01-22T15:11:27Z"
+ },
+ {
+ "hn_id": "42115169",
+ "title": "Convolutional Differentiable Logic Gate Networks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42115169",
+ "created_at": "2024-11-12T13:04:29Z"
+ },
+ {
+ "hn_id": "38186733",
+ "title": "Pipeline Parallelism for DNN Inference with Practical Performance Guarantees",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38186733",
+ "created_at": "2023-11-08T04:16:22Z"
+ },
+ {
+ "hn_id": "45886250",
+ "title": "Measuring What Matters: Construct Validity in Large Language Model Benchmarks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45886250",
+ "created_at": "2025-11-11T11:44:07Z"
+ },
+ {
+ "hn_id": "46154244",
+ "title": "Large Language Models for Gravitational Wave Identification",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46154244",
+ "created_at": "2025-12-04T22:46:16Z"
+ }
+ ],
+ "top_points": 26,
+ "total_points": 36,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/mechanistic-emergence-symbol-2025/hn.json b/papers/mechanistic-emergence-symbol-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "33344587",
+ "title": "The Debate over Understanding in AI's Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33344587",
+ "created_at": "2022-10-26T14:53:03Z"
+ },
+ {
+ "hn_id": "45609365",
+ "title": "The Art of Scaling Reinforcement Learning Compute for LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45609365",
+ "created_at": "2025-10-16T19:02:43Z"
+ },
+ {
+ "hn_id": "46716546",
+ "title": "Convolutional-neural-operator-based transfer learning for solving PDEs",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46716546",
+ "created_at": "2026-01-22T08:19:26Z"
+ },
+ {
+ "hn_id": "46553917",
+ "title": "Library Liberation-Competitive Performance Through Compiler-Composed Nanokernels",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46553917",
+ "created_at": "2026-01-09T14:00:59Z"
+ },
+ {
+ "hn_id": "46402799",
+ "title": "Memelang: Token-efficient LLM query language",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46402799",
+ "created_at": "2025-12-27T16:15:05Z"
+ },
+ {
+ "hn_id": "35291741",
+ "title": "The Debate over Understanding in AI's Large Language Models[pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35291741",
+ "created_at": "2023-03-24T16:42:38Z"
+ },
+ {
+ "hn_id": "45614212",
+ "title": "The Art of Scaling Reinforcement Learning Compute for LLMs [Meta]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45614212",
+ "created_at": "2025-10-17T07:44:54Z"
+ },
+ {
+ "hn_id": "45607058",
+ "title": "Scaling Laws for Reinforcement Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45607058",
+ "created_at": "2025-10-16T16:01:16Z"
+ },
+ {
+ "hn_id": "46421703",
+ "title": "Memelang: \"Axial grammar\" makes ultra token efficient query strings",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46421703",
+ "created_at": "2025-12-29T15:35:58Z"
+ },
+ {
+ "hn_id": "46414646",
+ "title": "Memelang: Terse SQL uses \"axial grammar\" for LLM generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46414646",
+ "created_at": "2025-12-28T21:21:26Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 17,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/mechanistic-exploration-backdoored-2025/hn.json b/papers/mechanistic-exploration-backdoored-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45694856",
+ "title": "First convex polyhedron found that can't pass through itself",
+ "points": 547,
+ "comments": 163,
+ "url": "https://news.ycombinator.com/item?id=45694856",
+ "created_at": "2025-10-24T14:12:00Z"
+ },
+ {
+ "hn_id": "45041978",
+ "title": "A convex polyhedron without Rupert's property",
+ "points": 28,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45041978",
+ "created_at": "2025-08-27T16:43:43Z"
+ },
+ {
+ "hn_id": "45075566",
+ "title": "A convex polyhedron without Rupert's property",
+ "points": 14,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45075566",
+ "created_at": "2025-08-30T15:40:30Z"
+ },
+ {
+ "hn_id": "43740163",
+ "title": "Vending-Bench: A Benchmark for Long-Term Coherence of Autonomous Agents",
+ "points": 14,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43740163",
+ "created_at": "2025-04-19T23:05:19Z"
+ },
+ {
+ "hn_id": "44642760",
+ "title": "Diffusion Beats Autoregressive in Data-Constrained Settings",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44642760",
+ "created_at": "2025-07-22T02:45:19Z"
+ },
+ {
+ "hn_id": "44094808",
+ "title": "Vending-Bench: A Benchmark for Long-Term Coherence of Autonomous Agents",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44094808",
+ "created_at": "2025-05-26T07:13:03Z"
+ },
+ {
+ "hn_id": "47213997",
+ "title": "Von Neumann on Consciousness in Quantum Mechanics",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47213997",
+ "created_at": "2026-03-02T04:46:53Z"
+ },
+ {
+ "hn_id": "44653340",
+ "title": "Diffusion Beats Autoregressive in Data-Constrained Settings",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44653340",
+ "created_at": "2025-07-22T21:43:31Z"
+ },
+ {
+ "hn_id": "44160952",
+ "title": "Agents in Charge of Managing Vending Machines: Short vs. Long-Term Coherence",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44160952",
+ "created_at": "2025-06-02T17:08:02Z"
+ },
+ {
+ "hn_id": "37400485",
+ "title": "Nemo: First Glimpse of a New Rule Engine. (ArXiv:2308.15897v1 [Cs.ai])",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37400485",
+ "created_at": "2023-09-06T01:51:44Z"
+ }
+ ],
+ "top_points": 547,
+ "total_points": 622,
+ "total_comments": 166
+}
+\ No newline at end of file
diff --git a/papers/memgpt-llms-as-2023/hn.json b/papers/memgpt-llms-as-2023/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "37894403",
+ "title": "MemGPT: Towards LLMs as Operating Systems",
+ "points": 225,
+ "comments": 106,
+ "url": "https://news.ycombinator.com/item?id=37894403",
+ "created_at": "2023-10-15T23:33:15Z"
+ },
+ {
+ "hn_id": "45616611",
+ "title": "Unsupervised, Human-Inspired Long-Term Memory Architecture for Edge-Based LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45616611",
+ "created_at": "2025-10-17T13:32:40Z"
+ },
+ {
+ "hn_id": "45583812",
+ "title": "Who Said Neural Networks Aren't Linear?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45583812",
+ "created_at": "2025-10-14T19:29:44Z"
+ },
+ {
+ "hn_id": "37896834",
+ "title": "Automatically Detecting Lifetime Annotation Bugs in the Rust Language",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37896834",
+ "created_at": "2023-10-16T07:44:02Z"
+ },
+ {
+ "hn_id": "41803205",
+ "title": "Everything Everywhere All at Once: LLMs Can In-Context Learn Multiple Tasks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41803205",
+ "created_at": "2024-10-10T20:26:50Z"
+ }
+ ],
+ "top_points": 225,
+ "total_points": 231,
+ "total_comments": 106
+}
+\ No newline at end of file
diff --git a/papers/memorize-generalize-evaluating-2025/hn.json b/papers/memorize-generalize-evaluating-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "45535425",
+ "title": "Reasoning LLMs are wandering solution explorers",
+ "points": 90,
+ "comments": 98,
+ "url": "https://news.ycombinator.com/item?id=45535425",
+ "created_at": "2025-10-10T04:40:26Z"
+ },
+ {
+ "hn_id": "47243006",
+ "title": "CuTe Layout Representation and Algebra",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47243006",
+ "created_at": "2026-03-04T04:19:17Z"
+ },
+ {
+ "hn_id": "25638244",
+ "title": "Memory-Safety Challenge Considered Solved? An In-Depth Study with All Rust CVEs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25638244",
+ "created_at": "2021-01-04T21:20:51Z"
+ },
+ {
+ "hn_id": "43752600",
+ "title": "Assessing Computer Science Student Attitudes Towards AI Ethics and Policy",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43752600",
+ "created_at": "2025-04-21T14:46:45Z"
+ },
+ {
+ "hn_id": "45291121",
+ "title": "Cut Costs, Not Accuracy: LLM-Powered Data Processing with Guarantees",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45291121",
+ "created_at": "2025-09-18T15:47:00Z"
+ },
+ {
+ "hn_id": "23499690",
+ "title": "Memory-safety challenge considered solved? An empirical study of Rust CVEs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23499690",
+ "created_at": "2020-06-12T14:43:05Z"
+ },
+ {
+ "hn_id": "23399859",
+ "title": "An In-Depth Experience Report with All Rust CVEs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23399859",
+ "created_at": "2020-06-03T04:52:09Z"
+ },
+ {
+ "hn_id": "23757977",
+ "title": "Memory-Safety Challenge Considered Solved? Experience Report with All Rust CVEs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23757977",
+ "created_at": "2020-07-07T11:18:42Z"
+ }
+ ],
+ "top_points": 90,
+ "total_points": 106,
+ "total_comments": 99
+}
+\ No newline at end of file
diff --git a/papers/mentorcollab-selective-largetosmall-2026/hn.json b/papers/mentorcollab-selective-largetosmall-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/metacognitive-selfcorrection-multiagent-2025/hn.json b/papers/metacognitive-selfcorrection-multiagent-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "46727603",
+ "title": "Not all Chess960 positions are equally complex",
+ "points": 57,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=46727603",
+ "created_at": "2026-01-23T02:27:30Z"
+ },
+ {
+ "hn_id": "29107703",
+ "title": "Nested Graph Neural Networks",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=29107703",
+ "created_at": "2021-11-04T14:34:39Z"
+ },
+ {
+ "hn_id": "46574101",
+ "title": "Not all Chess960 positions are equally complex",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46574101",
+ "created_at": "2026-01-11T09:52:04Z"
+ },
+ {
+ "hn_id": "47313267",
+ "title": "Random-Bridges as Stochastic Transports for Generative Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47313267",
+ "created_at": "2026-03-09T18:31:17Z"
+ },
+ {
+ "hn_id": "41383549",
+ "title": "Implicit Bias Matters for Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41383549",
+ "created_at": "2024-08-28T19:55:05Z"
+ },
+ {
+ "hn_id": "29082140",
+ "title": "Towards a Theory of Justice for Artificial Intelligence",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29082140",
+ "created_at": "2021-11-02T14:52:04Z"
+ },
+ {
+ "hn_id": "46586213",
+ "title": "Not all Chess960 positions are equally complex",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46586213",
+ "created_at": "2026-01-12T09:46:37Z"
+ },
+ {
+ "hn_id": "38072893",
+ "title": "NameGuess: Column Name Expansion for Tabular Data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38072893",
+ "created_at": "2023-10-30T17:46:00Z"
+ },
+ {
+ "hn_id": "24973701",
+ "title": "How A Quantum Gravitational Notion of Time Solves the Measurement Problem",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24973701",
+ "created_at": "2020-11-02T21:35:04Z"
+ }
+ ],
+ "top_points": 57,
+ "total_points": 71,
+ "total_comments": 30
+}
+\ No newline at end of file
diff --git a/papers/metagpt-multi-agent-framework-2023/hn.json b/papers/metagpt-multi-agent-framework-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37076125",
+ "title": "MetaGPT: Meta Programming for Multi-Agent Collaborative Framework",
+ "points": 152,
+ "comments": 82,
+ "url": "https://news.ycombinator.com/item?id=37076125",
+ "created_at": "2023-08-10T13:48:39Z"
+ },
+ {
+ "hn_id": "36181333",
+ "title": "Thought Cloning: Learning to think while acting by imitating human thinking",
+ "points": 57,
+ "comments": 38,
+ "url": "https://news.ycombinator.com/item?id=36181333",
+ "created_at": "2023-06-03T23:00:51Z"
+ },
+ {
+ "hn_id": "40665015",
+ "title": "How to enumerate trees from a context-free grammar",
+ "points": 53,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=40665015",
+ "created_at": "2024-06-13T01:30:54Z"
+ },
+ {
+ "hn_id": "36988677",
+ "title": "MetaGPT: Meta Programming for Multi-Agent Collaborative Framework",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36988677",
+ "created_at": "2023-08-03T17:11:40Z"
+ },
+ {
+ "hn_id": "37080854",
+ "title": "AlphaStar Unplugged: Large-Scale Offline Reinforcement Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37080854",
+ "created_at": "2023-08-10T19:49:23Z"
+ },
+ {
+ "hn_id": "44889682",
+ "title": "FilBench: Can LLMs Understand and Generate Filipino Language?",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44889682",
+ "created_at": "2025-08-13T15:23:45Z"
+ },
+ {
+ "hn_id": "36667041",
+ "title": "Hype vs. Practicality: On Realistically Achieving Quantum Advantage (2023)",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36667041",
+ "created_at": "2023-07-10T14:32:53Z"
+ },
+ {
+ "hn_id": "38967293",
+ "title": "The Greggs-Pret Index: A Machine Learning Analysis of Consumer Habits",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38967293",
+ "created_at": "2024-01-12T12:35:04Z"
+ },
+ {
+ "hn_id": "37855454",
+ "title": "Finding Performance Issues in DB Engines via Cardinality Estimation Testing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37855454",
+ "created_at": "2023-10-12T10:35:06Z"
+ },
+ {
+ "hn_id": "37691729",
+ "title": "(Abstraction) Logic is (abstraction) Algebra [PDF]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37691729",
+ "created_at": "2023-09-28T16:12:42Z"
+ }
+ ],
+ "top_points": 152,
+ "total_points": 273,
+ "total_comments": 131
+}
+\ No newline at end of file
diff --git a/papers/metalearning-transformers-improve-2025/hn.json b/papers/metalearning-transformers-improve-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "44973375",
+ "title": "Beyond sensor data: Foundation models of behavioral data from wearables",
+ "points": 230,
+ "comments": 54,
+ "url": "https://news.ycombinator.com/item?id=44973375",
+ "created_at": "2025-08-21T14:39:45Z"
+ },
+ {
+ "hn_id": "44248214",
+ "title": "Planets similar in size are often dissimilar in interior",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44248214",
+ "created_at": "2025-06-11T14:47:20Z"
+ },
+ {
+ "hn_id": "40913954",
+ "title": "Teaching Generative Language Models to Reference Answers to Biomedical Questions",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40913954",
+ "created_at": "2024-07-09T09:06:43Z"
+ },
+ {
+ "hn_id": "27761400",
+ "title": "Toward 6G – Hardware Design to Wireless Semantic and Goal-Oriented Communication",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27761400",
+ "created_at": "2021-07-07T14:19:10Z"
+ },
+ {
+ "hn_id": "44529025",
+ "title": "Foundation Models of Behavioral Data from Wearables Improve Health Predictions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44529025",
+ "created_at": "2025-07-11T06:40:34Z"
+ },
+ {
+ "hn_id": "43378967",
+ "title": "Clock and Calendar Understanding Challenges in Multimodal LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43378967",
+ "created_at": "2025-03-16T13:34:54Z"
+ },
+ {
+ "hn_id": "40944585",
+ "title": "What's the Best Seat in the Game Left, Center, Right?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40944585",
+ "created_at": "2024-07-12T11:32:42Z"
+ }
+ ],
+ "top_points": 230,
+ "total_points": 240,
+ "total_comments": 54
+}
+\ No newline at end of file
diff --git a/papers/metr-rct-2025/hn.json b/papers/metr-rct-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36781015",
+ "title": "How is ChatGPT's behavior changing over time?",
+ "points": 289,
+ "comments": 178,
+ "url": "https://news.ycombinator.com/item?id=36781015",
+ "created_at": "2023-07-19T01:06:12Z"
+ },
+ {
+ "hn_id": "41215631",
+ "title": "Ask HN: Has degradation in the quality of ChatGPT and Claude been proven?",
+ "points": 42,
+ "comments": 40,
+ "url": "https://news.ycombinator.com/item?id=41215631",
+ "created_at": "2024-08-11T12:12:39Z"
+ },
+ {
+ "hn_id": "42764969",
+ "title": "Evolving Deeper LLM Thinking",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42764969",
+ "created_at": "2025-01-20T04:24:10Z"
+ },
+ {
+ "hn_id": "45661775",
+ "title": "Measuring the Impact of Early-2025 AI on Experienced Developer Productivity",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45661775",
+ "created_at": "2025-10-21T21:12:22Z"
+ },
+ {
+ "hn_id": "37265952",
+ "title": "The AI Reproducibility Crisis",
+ "points": 4,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=37265952",
+ "created_at": "2023-08-25T19:15:29Z"
+ },
+ {
+ "hn_id": "45497568",
+ "title": "Fine-Tuning Small Language Models with Low-Rank Adapters to Mimic User Behaviors",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45497568",
+ "created_at": "2025-10-06T23:40:50Z"
+ },
+ {
+ "hn_id": "45249175",
+ "title": "What do the fundamental constants of physics tell us about life?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45249175",
+ "created_at": "2025-09-15T13:02:16Z"
+ },
+ {
+ "hn_id": "44593569",
+ "title": "Measuring the Impact of Early-2025 AI on Experienced Developer Productivity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44593569",
+ "created_at": "2025-07-17T14:03:27Z"
+ },
+ {
+ "hn_id": "44783441",
+ "title": "Measuring the Impact of AI on Experienced Open-Source Developer Productivity",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44783441",
+ "created_at": "2025-08-04T09:03:06Z"
+ },
+ {
+ "hn_id": "46254932",
+ "title": "Measuring Impact of Early-2025 AI on Experienced Open-Source Dev Productivity",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46254932",
+ "created_at": "2025-12-13T14:54:29Z"
+ }
+ ],
+ "top_points": 289,
+ "total_points": 361,
+ "total_comments": 224
+}
+\ No newline at end of file
diff --git a/papers/metric-assessment-protocol-2025/hn.json b/papers/metric-assessment-protocol-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41105779",
+ "title": "Diffusion Training from Scratch on a Micro-Budget",
+ "points": 208,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=41105779",
+ "created_at": "2024-07-30T03:19:23Z"
+ },
+ {
+ "hn_id": "43245057",
+ "title": "Debunking the Myth of Join Ordering: Toward Robust SQL Analytics",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43245057",
+ "created_at": "2025-03-03T18:30:45Z"
+ },
+ {
+ "hn_id": "45482380",
+ "title": "Acoustic Eavesdropping via Mouse Sensors",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45482380",
+ "created_at": "2025-10-05T15:40:37Z"
+ },
+ {
+ "hn_id": "46715586",
+ "title": "Debunking the Myth of Join Ordering: Toward Robust SQL Analytics",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46715586",
+ "created_at": "2026-01-22T05:14:47Z"
+ },
+ {
+ "hn_id": "41099652",
+ "title": "Stretching Each Dollar: Diffusion Training from Scratch on a Micro-Budget",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41099652",
+ "created_at": "2024-07-29T11:43:25Z"
+ },
+ {
+ "hn_id": "43776339",
+ "title": "The Bitter Lesson Learned from 2k Multilingual Benchmarks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43776339",
+ "created_at": "2025-04-23T20:31:54Z"
+ },
+ {
+ "hn_id": "44191952",
+ "title": "Questioning Representational Optimism in Deep Learning",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=44191952",
+ "created_at": "2025-06-05T14:17:23Z"
+ },
+ {
+ "hn_id": "45934130",
+ "title": "Questioning Representational Optimism in Deep Learning",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45934130",
+ "created_at": "2025-11-15T01:07:24Z"
+ },
+ {
+ "hn_id": "45503848",
+ "title": "Invisible Ears at Your Fingertips: Acoustic Eavesdropping via Mouse Sensors",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45503848",
+ "created_at": "2025-10-07T14:54:15Z"
+ },
+ {
+ "hn_id": "44040255",
+ "title": "Questioning Representational Optimism in Deep Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44040255",
+ "created_at": "2025-05-20T11:24:07Z"
+ }
+ ],
+ "top_points": 208,
+ "total_points": 232,
+ "total_comments": 31
+}
+\ No newline at end of file
diff --git a/papers/microsaccadeinspired-probing-positional-2025/hn.json b/papers/microsaccadeinspired-probing-positional-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37769893",
+ "title": "Ring attention with blockwise transformers for near-infinite context",
+ "points": 47,
+ "comments": 20,
+ "url": "https://news.ycombinator.com/item?id=37769893",
+ "created_at": "2023-10-04T18:54:13Z"
+ },
+ {
+ "hn_id": "44402211",
+ "title": "LLM-Net Democratizing LLMs-as-a-Service Through Blockchain-Based Expert Networks",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44402211",
+ "created_at": "2025-06-28T03:53:29Z"
+ },
+ {
+ "hn_id": "42611325",
+ "title": "Long Context vs. RAG for LLMs: An Evaluation and Revisits",
+ "points": 3,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42611325",
+ "created_at": "2025-01-06T15:26:25Z"
+ },
+ {
+ "hn_id": "45980445",
+ "title": "An Agent Framework with Hardware Feedback for CUDA Kernel Optimization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45980445",
+ "created_at": "2025-11-19T15:05:07Z"
+ },
+ {
+ "hn_id": "42026944",
+ "title": "Llama-Berry: Pairwise Optimization for O1-Like Mathematical Reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42026944",
+ "created_at": "2024-11-02T15:27:05Z"
+ },
+ {
+ "hn_id": "38237776",
+ "title": "Fortran optimisation and parallelisation: domain specific MLIR abstractions",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38237776",
+ "created_at": "2023-11-12T06:11:47Z"
+ },
+ {
+ "hn_id": "30868599",
+ "title": "Deep Neural Networks and Tabular Data: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30868599",
+ "created_at": "2022-03-31T15:54:12Z"
+ },
+ {
+ "hn_id": "28781098",
+ "title": "Deep Neural Networks and Tabular Data: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28781098",
+ "created_at": "2021-10-07T02:25:52Z"
+ },
+ {
+ "hn_id": "46145623",
+ "title": "Replacing Attention to Phase-Locking to Overcome Catastrophic Forgetting [pdf]",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46145623",
+ "created_at": "2025-12-04T09:37:08Z"
+ },
+ {
+ "hn_id": "38258796",
+ "title": "Towards End-to-End Joint Speaker Diarization and Speech Recognition",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38258796",
+ "created_at": "2023-11-14T03:39:04Z"
+ }
+ ],
+ "top_points": 47,
+ "total_points": 67,
+ "total_comments": 25
+}
+\ No newline at end of file
diff --git a/papers/mixtureofmodels-unifying-heterogeneous-2026/hn.json b/papers/mixtureofmodels-unifying-heterogeneous-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47067772",
+ "title": "Show HN: NSED is public – Mixture-of-Models to Hit SOTA using self-hosted AI",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47067772",
+ "created_at": "2026-02-18T23:21:15Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/mlebench-evaluating-machine-2024/hn.json b/papers/mlebench-evaluating-machine-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "31155765",
+ "title": "Intel's HTTPA: HTTPS Attestable Protocol",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=31155765",
+ "created_at": "2022-04-25T14:57:11Z"
+ },
+ {
+ "hn_id": "38960095",
+ "title": "Learning Long Sequences in Spiking Neural Networks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38960095",
+ "created_at": "2024-01-11T22:13:42Z"
+ },
+ {
+ "hn_id": "28902843",
+ "title": "HTTPA: HTTPS Attestable Protocol [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28902843",
+ "created_at": "2021-10-18T06:42:18Z"
+ },
+ {
+ "hn_id": "28878300",
+ "title": "Ego4D: Around the world in 3000 hours of Egocentric video",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28878300",
+ "created_at": "2021-10-15T14:51:36Z"
+ },
+ {
+ "hn_id": "43979292",
+ "title": "IterGen: Iterative Semantic-Aware Structured LLM Generation with Backtracking",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43979292",
+ "created_at": "2025-05-14T00:07:16Z"
+ },
+ {
+ "hn_id": "37821663",
+ "title": "A Comprehensive Review of Generative AI in Healthcare",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37821663",
+ "created_at": "2023-10-09T15:49:49Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 11,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/mmrbench-comprehensive-benchmark-2026/hn.json b/papers/mmrbench-comprehensive-benchmark-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/mobilityaware-cache-framework-2026/hn.json b/papers/mobilityaware-cache-framework-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47121767",
+ "title": "Unified Latents (UL): How to train your latents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47121767",
+ "created_at": "2026-02-23T13:01:58Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/moco-onestop-shop-2026/hn.json b/papers/moco-onestop-shop-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46836607",
+ "title": "Shaping capabilities with token-level data filtering",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46836607",
+ "created_at": "2026-01-31T13:40:27Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/modular-layout-synthesis-2025/hn.json b/papers/modular-layout-synthesis-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "43195602",
+ "title": "(Mis)Fitting: A Survey of Scaling Laws",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43195602",
+ "created_at": "2025-02-27T16:02:16Z"
+ },
+ {
+ "hn_id": "43206252",
+ "title": "Modern DDoS Threats and Countermeasures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43206252",
+ "created_at": "2025-02-28T14:53:49Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/monitorguided-decoding-code-2023/hn.json b/papers/monitorguided-decoding-code-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44240691",
+ "title": "A Family of Non-Periodic Tilings, Describable Using Elementary Tools",
+ "points": 80,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=44240691",
+ "created_at": "2025-06-10T19:47:37Z"
+ },
+ {
+ "hn_id": "35703367",
+ "title": "Tighter bounds on the expressivity of transformer encoders",
+ "points": 76,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=35703367",
+ "created_at": "2023-04-25T17:02:24Z"
+ },
+ {
+ "hn_id": "38157278",
+ "title": "PsyMo: A Dataset for Estimating Self-Reported Psychological Traits from Gait",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38157278",
+ "created_at": "2023-11-06T00:23:10Z"
+ },
+ {
+ "hn_id": "36824256",
+ "title": "SciBench",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36824256",
+ "created_at": "2023-07-22T07:42:12Z"
+ },
+ {
+ "hn_id": "34670813",
+ "title": "Cold accretion and supermassive star formation in the early universe",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34670813",
+ "created_at": "2023-02-05T23:10:05Z"
+ },
+ {
+ "hn_id": "3823664",
+ "title": "Backdoor SOPA -- CISPA",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=3823664",
+ "created_at": "2012-04-10T18:33:01Z"
+ },
+ {
+ "hn_id": "25236118",
+ "title": "Equivariant Neural Rendering",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25236118",
+ "created_at": "2020-11-28T08:08:27Z"
+ },
+ {
+ "hn_id": "36178546",
+ "title": "Clever Hans or Neural Theory of Mind? Stress Testing Social Reasoning in LLMs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36178546",
+ "created_at": "2023-06-03T17:21:24Z"
+ },
+ {
+ "hn_id": "36172970",
+ "title": "Stress Testing Social Reasoning in Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36172970",
+ "created_at": "2023-06-03T01:59:09Z"
+ },
+ {
+ "hn_id": "46669828",
+ "title": "WASM-Mutate: Fast and Effective Binary Diversification for WebAssembly",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46669828",
+ "created_at": "2026-01-18T17:23:19Z"
+ }
+ ],
+ "top_points": 80,
+ "total_points": 172,
+ "total_comments": 26
+}
+\ No newline at end of file
diff --git a/papers/more-bang-buck-2026/hn.json b/papers/more-bang-buck-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/more-code-less-2025/hn.json b/papers/more-code-less-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46329065",
+ "title": "Implementing a Sharia Chatbot as a Consultation Medium for Questions About Islam",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46329065",
+ "created_at": "2025-12-19T18:21:04Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/more-llm-calls-2024/hn.json b/papers/more-llm-calls-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "44965773",
+ "title": "Arrays in Practice (2024)",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44965773",
+ "created_at": "2025-08-20T19:58:09Z"
+ },
+ {
+ "hn_id": "47235084",
+ "title": "Show HN: Pencil Puzzle Bench – LLM Benchmark for Multi-Step Verifiable Reasoning",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47235084",
+ "created_at": "2026-03-03T16:45:18Z"
+ },
+ {
+ "hn_id": "38885003",
+ "title": "LLM Augmented LLMs: Expanding Capabilities Through Composition",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38885003",
+ "created_at": "2024-01-05T21:11:50Z"
+ },
+ {
+ "hn_id": "26591284",
+ "title": "The Unreasonable Ineffectiveness of Mathematics in Biology",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26591284",
+ "created_at": "2021-03-26T12:31:29Z"
+ },
+ {
+ "hn_id": "38893716",
+ "title": "LLM Augmented LLMs: Expanding Capabilities Through Composition",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38893716",
+ "created_at": "2024-01-06T18:18:29Z"
+ },
+ {
+ "hn_id": "38876397",
+ "title": "LLaMA Pro: Progressive LLaMA with Block Expansion",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38876397",
+ "created_at": "2024-01-05T06:36:05Z"
+ },
+ {
+ "hn_id": "40419506",
+ "title": "DRAMScope: Uncovering DRAM Microarchitecture and Characteristics",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40419506",
+ "created_at": "2024-05-20T19:52:25Z"
+ },
+ {
+ "hn_id": "38885517",
+ "title": "LLaMA Pro: Progressive LLaMA with Block Expansion",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38885517",
+ "created_at": "2024-01-05T21:57:22Z"
+ }
+ ],
+ "top_points": 12,
+ "total_points": 30,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/mose-mixture-slimmable-2026/hn.json b/papers/mose-mixture-slimmable-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/mtbench101-finegrained-benchmark-2024/hn.json b/papers/mtbench101-finegrained-benchmark-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/multi-agent-byzantine-fault-2025/hn.json b/papers/multi-agent-byzantine-fault-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "42171043",
+ "title": "LLaVA-O1: Let Vision Language Models Reason Step-by-Step",
+ "points": 177,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=42171043",
+ "created_at": "2024-11-18T09:44:54Z"
+ },
+ {
+ "hn_id": "42181452",
+ "title": "How to Build a Quantum Supercomputer: Scaling Challenges and Opportunities",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42181452",
+ "created_at": "2024-11-19T09:22:11Z"
+ },
+ {
+ "hn_id": "43764458",
+ "title": "High Resolution Tree Height Mapping Using Lidar-Informed Model",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43764458",
+ "created_at": "2025-04-22T17:30:59Z"
+ },
+ {
+ "hn_id": "42385738",
+ "title": "How to Build a Quantum Supercomputer: Scaling Challenges and Opportunities",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42385738",
+ "created_at": "2024-12-11T07:49:12Z"
+ },
+ {
+ "hn_id": "33711412",
+ "title": "Direct Evidence of Photochemistry in an Exoplanet Atmosphere",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33711412",
+ "created_at": "2022-11-22T20:58:32Z"
+ },
+ {
+ "hn_id": "43458605",
+ "title": "Self-Optimization of Hopfield Networks: The Creativity of Unsupervised Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43458605",
+ "created_at": "2025-03-24T08:31:43Z"
+ }
+ ],
+ "top_points": 177,
+ "total_points": 189,
+ "total_comments": 33
+}
+\ No newline at end of file
diff --git a/papers/multi-agent-collaboration-survey-2025/hn.json b/papers/multi-agent-collaboration-survey-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/multi-agent-defense-prompt-injection-2025/hn.json b/papers/multi-agent-defense-prompt-injection-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41669840",
+ "title": "Collaborative text editing with Eg-Walker: Better, faster, smaller",
+ "points": 251,
+ "comments": 31,
+ "url": "https://news.ycombinator.com/item?id=41669840",
+ "created_at": "2024-09-27T12:53:15Z"
+ },
+ {
+ "hn_id": "44475634",
+ "title": "Techno-feudalism and the rise of AGI: A future without economic rights?",
+ "points": 239,
+ "comments": 244,
+ "url": "https://news.ycombinator.com/item?id=44475634",
+ "created_at": "2025-07-05T21:19:50Z"
+ },
+ {
+ "hn_id": "45293872",
+ "title": "Discovery of Unstable Singularities",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45293872",
+ "created_at": "2025-09-18T19:24:47Z"
+ },
+ {
+ "hn_id": "46250588",
+ "title": "Discovery of Unstable Singularities (In 3D Navier-Stokes Équations)",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46250588",
+ "created_at": "2025-12-13T00:05:04Z"
+ },
+ {
+ "hn_id": "45496094",
+ "title": "Discovery of Unstable Singularities in Navier Stokes (DeepMind)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45496094",
+ "created_at": "2025-10-06T20:43:05Z"
+ },
+ {
+ "hn_id": "45645461",
+ "title": "Show HN: Unstable Singularity Detector update 1.4.1",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45645461",
+ "created_at": "2025-10-20T16:04:03Z"
+ },
+ {
+ "hn_id": "45472755",
+ "title": "Show HN: Unstable Singularity Detector",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45472755",
+ "created_at": "2025-10-04T12:15:15Z"
+ },
+ {
+ "hn_id": "45529492",
+ "title": "Opening the Black Box: Interpretable LLMs via Semantic Resonance Architecture",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45529492",
+ "created_at": "2025-10-09T15:57:46Z"
+ },
+ {
+ "hn_id": "45412072",
+ "title": "Discovery of Unstable Singularities",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45412072",
+ "created_at": "2025-09-29T10:20:45Z"
+ },
+ {
+ "hn_id": "45313177",
+ "title": "Large Language Models Meet Joint Embedding Predictive Architectures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45313177",
+ "created_at": "2025-09-20T13:25:46Z"
+ }
+ ],
+ "top_points": 251,
+ "total_points": 504,
+ "total_comments": 278
+}
+\ No newline at end of file
diff --git a/papers/multi-agent-trust-paradox-2025/hn.json b/papers/multi-agent-trust-paradox-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "46665631",
+ "title": "From Code Foundation Models to Agents and Applications",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46665631",
+ "created_at": "2026-01-18T07:38:01Z"
+ },
+ {
+ "hn_id": "46155593",
+ "title": "From Code Foundation Models to Agents and Applications: A Comprehensive Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46155593",
+ "created_at": "2025-12-05T01:03:33Z"
+ },
+ {
+ "hn_id": "46130775",
+ "title": "From Code Foundation Models to Agents and Applications: A Practical Guide",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46130775",
+ "created_at": "2025-12-03T06:04:28Z"
+ },
+ {
+ "hn_id": "45664388",
+ "title": "Query Decomposition for RAG",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45664388",
+ "created_at": "2025-10-22T02:47:42Z"
+ },
+ {
+ "hn_id": "42211704",
+ "title": "Automating LLM Development with LLMs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42211704",
+ "created_at": "2024-11-22T06:58:05Z"
+ },
+ {
+ "hn_id": "42920203",
+ "title": "A Comprehensive Survey of the Lean 4 Theorem Prover",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42920203",
+ "created_at": "2025-02-03T16:54:03Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 9,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/multi-turn-jailbreak-2025/hn.json b/papers/multi-turn-jailbreak-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/multiagent-codeorchestrated-generation-2025/hn.json b/papers/multiagent-codeorchestrated-generation-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "45952911",
+ "title": "Attacker Moves Second: Adaptive Attacks Bypass Defenses Against LLM Jailbreaks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45952911",
+ "created_at": "2025-11-17T12:09:37Z"
+ },
+ {
+ "hn_id": "45857921",
+ "title": "High-inclination Centaur reservoirs beyond Neptune",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45857921",
+ "created_at": "2025-11-08T16:33:48Z"
+ },
+ {
+ "hn_id": "45573411",
+ "title": "Stronger Adaptive Attacks Bypass Defenses Against LLM Jailbreaks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45573411",
+ "created_at": "2025-10-13T21:16:06Z"
+ },
+ {
+ "hn_id": "37774315",
+ "title": "Retrieval Meets Long Context Large Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37774315",
+ "created_at": "2023-10-05T02:39:31Z"
+ },
+ {
+ "hn_id": "45946752",
+ "title": "Stronger Adaptive Attacks Bypass Defenses Against LLM Jailbreaks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45946752",
+ "created_at": "2025-11-16T17:25:20Z"
+ },
+ {
+ "hn_id": "46192927",
+ "title": "Gyromorphs: A new class of functional disordered materials",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46192927",
+ "created_at": "2025-12-08T14:57:55Z"
+ },
+ {
+ "hn_id": "37870113",
+ "title": "Automated Discovery of DNS Resolver Vulnerabilities with Query-Response Fuzzing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37870113",
+ "created_at": "2023-10-13T13:03:33Z"
+ },
+ {
+ "hn_id": "37858928",
+ "title": "No Forking Way: Detecting Cloning Attacks on Intel SGX Applications",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37858928",
+ "created_at": "2023-10-12T15:54:19Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 14,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/multiagent-collaboration-harnessing-2023/hn.json b/papers/multiagent-collaboration-harnessing-2023/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "34337707",
+ "title": "“A Handbook of Integer Sequences” Fifty Years Later",
+ "points": 139,
+ "comments": 45,
+ "url": "https://news.ycombinator.com/item?id=34337707",
+ "created_at": "2023-01-11T12:37:58Z"
+ },
+ {
+ "hn_id": "44186607",
+ "title": "Not all tokens are meant to be forgotten",
+ "points": 54,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=44186607",
+ "created_at": "2025-06-04T23:15:48Z"
+ },
+ {
+ "hn_id": "37115329",
+ "title": "FPGA Processor in Memory Architectures (PIMs): Overlay or Overhaul?",
+ "points": 15,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=37115329",
+ "created_at": "2023-08-13T22:36:29Z"
+ },
+ {
+ "hn_id": "36247395",
+ "title": "Inference-Time Intervention: Eliciting Truthful Answers from a Language Model",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36247395",
+ "created_at": "2023-06-08T19:29:21Z"
+ },
+ {
+ "hn_id": "36423761",
+ "title": "Recognize Anything: A Strong Image Tagging Model",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36423761",
+ "created_at": "2023-06-21T20:15:38Z"
+ },
+ {
+ "hn_id": "46464171",
+ "title": "Short-Form Videos Degrade Our Capacity to Retain Intentions (2023)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46464171",
+ "created_at": "2026-01-02T12:38:01Z"
+ },
+ {
+ "hn_id": "23456451",
+ "title": "Human mobility and viral transmissibility during Covid-19 in Italy",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23456451",
+ "created_at": "2020-06-08T13:50:04Z"
+ },
+ {
+ "hn_id": "36537537",
+ "title": "Inference-Time Intervention: Eliciting Truthful Answers from a Language Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36537537",
+ "created_at": "2023-06-30T16:09:49Z"
+ },
+ {
+ "hn_id": "34729770",
+ "title": "Techniques to Improve Neural Math Word Problem Solvers",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34729770",
+ "created_at": "2023-02-09T19:24:37Z"
+ }
+ ],
+ "top_points": 139,
+ "total_points": 220,
+ "total_comments": 74
+}
+\ No newline at end of file
diff --git a/papers/multiagent-collaborative-fuzzing-2025/hn.json b/papers/multiagent-collaborative-fuzzing-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "42391224",
+ "title": "Cyborg Insect Factory",
+ "points": 21,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=42391224",
+ "created_at": "2024-12-11T18:43:24Z"
+ },
+ {
+ "hn_id": "45950994",
+ "title": "Kleene Algebra",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45950994",
+ "created_at": "2025-11-17T05:12:27Z"
+ },
+ {
+ "hn_id": "46685772",
+ "title": "Can Highlighting Help GitHub Maintainers Track Security Fixes?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46685772",
+ "created_at": "2026-01-19T23:00:02Z"
+ },
+ {
+ "hn_id": "46094790",
+ "title": "Generative AI Compensates for Age-Related Cognitive Decline in Decision Making",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46094790",
+ "created_at": "2025-11-30T08:06:32Z"
+ },
+ {
+ "hn_id": "42204850",
+ "title": "SEFD: Semantic-Enhanced Framework for Detecting LLM-Generated Text",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42204850",
+ "created_at": "2024-11-21T14:54:19Z"
+ },
+ {
+ "hn_id": "38476635",
+ "title": "User-Like Bots for Cognitive Automation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38476635",
+ "created_at": "2023-11-30T17:57:44Z"
+ }
+ ],
+ "top_points": 21,
+ "total_points": 30,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/multiagent-evolve-llm-2025/hn.json b/papers/multiagent-evolve-llm-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/multiagent-risks-from-2025/hn.json b/papers/multiagent-risks-from-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/multilanguage-perspective-robustness-2025/hn.json b/papers/multilanguage-perspective-robustness-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43091339",
+ "title": "DeepSeek Native Sparse Attention",
+ "points": 16,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43091339",
+ "created_at": "2025-02-18T16:17:40Z"
+ },
+ {
+ "hn_id": "43086831",
+ "title": "Native Sparse Attention: Hardware-Aligned, Natively Trainable Sparse Attention",
+ "points": 15,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43086831",
+ "created_at": "2025-02-18T07:04:47Z"
+ },
+ {
+ "hn_id": "43890313",
+ "title": "Your ViT Is Secretly an Image Segmentation Model",
+ "points": 10,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43890313",
+ "created_at": "2025-05-04T22:54:49Z"
+ },
+ {
+ "hn_id": "35715781",
+ "title": "Fundamental Limitations of Alignment in Large Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35715781",
+ "created_at": "2023-04-26T15:55:11Z"
+ },
+ {
+ "hn_id": "43098140",
+ "title": "NSA: Hardware-Aligned and Natively Trainable Sparse Attention",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43098140",
+ "created_at": "2025-02-19T03:12:01Z"
+ },
+ {
+ "hn_id": "46203378",
+ "title": "Are most sentences unique? An empirical examination of Chomskyan claims",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46203378",
+ "created_at": "2025-12-09T10:25:50Z"
+ },
+ {
+ "hn_id": "35695349",
+ "title": "Fundamental Limitations of Alignment in Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35695349",
+ "created_at": "2023-04-25T01:07:37Z"
+ },
+ {
+ "hn_id": "43230938",
+ "title": "HW-Aligned Sparse Attention Architecture for Efficient Long-Context Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43230938",
+ "created_at": "2025-03-02T14:44:33Z"
+ },
+ {
+ "hn_id": "43101793",
+ "title": "Native Sparse Attention: Hardware-Aligned and Natively Trainable",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43101793",
+ "created_at": "2025-02-19T13:15:50Z"
+ },
+ {
+ "hn_id": "40235870",
+ "title": "Shape of Money Laundering: Subgraph Representation Learning on the Blockchain",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40235870",
+ "created_at": "2024-05-02T13:16:24Z"
+ }
+ ],
+ "top_points": 16,
+ "total_points": 62,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/multilevel-explanations-generative-2024/hn.json b/papers/multilevel-explanations-generative-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39650489",
+ "title": "Anomalous contribution to galactic rotation curves due to stochastic spacetime",
+ "points": 143,
+ "comments": 77,
+ "url": "https://news.ycombinator.com/item?id=39650489",
+ "created_at": "2024-03-09T09:13:03Z"
+ },
+ {
+ "hn_id": "39522908",
+ "title": "Defending LLMs against Jailbreaking Attacks via Backtranslation",
+ "points": 67,
+ "comments": 48,
+ "url": "https://news.ycombinator.com/item?id=39522908",
+ "created_at": "2024-02-27T11:44:31Z"
+ },
+ {
+ "hn_id": "43422084",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43422084",
+ "created_at": "2025-03-20T12:15:14Z"
+ },
+ {
+ "hn_id": "43553230",
+ "title": "State Space Model Meets Transformer: A New Paradigm for 3D Object Detection",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43553230",
+ "created_at": "2025-04-02T02:41:52Z"
+ },
+ {
+ "hn_id": "43433880",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43433880",
+ "created_at": "2025-03-21T10:16:49Z"
+ },
+ {
+ "hn_id": "39441583",
+ "title": "The Forest as a Neutrino Detector",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39441583",
+ "created_at": "2024-02-20T14:17:11Z"
+ },
+ {
+ "hn_id": "42804773",
+ "title": "Super Tiny Language Models (pdf)",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42804773",
+ "created_at": "2025-01-23T15:10:40Z"
+ },
+ {
+ "hn_id": "44496861",
+ "title": "Measuring AI Ability to Complete Long Tasks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44496861",
+ "created_at": "2025-07-08T03:44:36Z"
+ },
+ {
+ "hn_id": "41495414",
+ "title": "MMR: Evaluating Reading Ability of Large Multimodal Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41495414",
+ "created_at": "2024-09-09T23:26:18Z"
+ },
+ {
+ "hn_id": "39868429",
+ "title": "Social Intelligence Data Infrastructure",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39868429",
+ "created_at": "2024-03-29T20:05:57Z"
+ }
+ ],
+ "top_points": 143,
+ "total_points": 237,
+ "total_comments": 126
+}
+\ No newline at end of file
diff --git a/papers/multimodal-prompt-injection-2025/hn.json b/papers/multimodal-prompt-injection-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40928145",
+ "title": "Dola Decoding by Contrasting Layers Improves Factuality in Large Language Models",
+ "points": 58,
+ "comments": 43,
+ "url": "https://news.ycombinator.com/item?id=40928145",
+ "created_at": "2024-07-10T15:39:25Z"
+ },
+ {
+ "hn_id": "44171652",
+ "title": "Oh fuck! How do people feel about robots that leverage profanity?",
+ "points": 18,
+ "comments": 50,
+ "url": "https://news.ycombinator.com/item?id=44171652",
+ "created_at": "2025-06-03T16:16:46Z"
+ },
+ {
+ "hn_id": "44852610",
+ "title": "Design Patterns for Securing LLM Agents Against Prompt Injections",
+ "points": 14,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44852610",
+ "created_at": "2025-08-10T03:46:47Z"
+ },
+ {
+ "hn_id": "41597663",
+ "title": "Breaking ReCAPTCHAv2",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41597663",
+ "created_at": "2024-09-20T00:24:36Z"
+ },
+ {
+ "hn_id": "44607842",
+ "title": "BeePL: Correct-by-Compilation Kernel Extensions",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44607842",
+ "created_at": "2025-07-18T17:56:56Z"
+ },
+ {
+ "hn_id": "41571318",
+ "title": "Breaking ReCAPTCHAv2",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=41571318",
+ "created_at": "2024-09-17T18:57:05Z"
+ },
+ {
+ "hn_id": "45138186",
+ "title": "Fleeting memory improves language learning but impairs reading time prediction",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45138186",
+ "created_at": "2025-09-05T13:16:03Z"
+ },
+ {
+ "hn_id": "44504434",
+ "title": "Design Patterns for Securing LLM Agents Against Prompt Injections",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44504434",
+ "created_at": "2025-07-08T21:58:02Z"
+ },
+ {
+ "hn_id": "44858671",
+ "title": "Design Patterns for Securing LLM Agents Against Prompt Injections",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44858671",
+ "created_at": "2025-08-10T21:59:40Z"
+ },
+ {
+ "hn_id": "44855060",
+ "title": "Design Patterns for Securing LLM Agents Against Prompt Injections",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44855060",
+ "created_at": "2025-08-10T13:29:31Z"
+ }
+ ],
+ "top_points": 58,
+ "total_points": 112,
+ "total_comments": 97
+}
+\ No newline at end of file
diff --git a/papers/multiple-scalable-polyglot-2023/hn.json b/papers/multiple-scalable-polyglot-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41347388",
+ "title": "Deliberate Practice and Acquisition of Expert Performance: A General Overview",
+ "points": 112,
+ "comments": 84,
+ "url": "https://news.ycombinator.com/item?id=41347388",
+ "created_at": "2024-08-25T14:03:46Z"
+ },
+ {
+ "hn_id": "44880061",
+ "title": "Capabilities of GPT-5 on Multimodal Medical Reasoning",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44880061",
+ "created_at": "2025-08-12T18:26:17Z"
+ },
+ {
+ "hn_id": "31838283",
+ "title": "All the World's a (Hyper)Graph: A Data Drama",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31838283",
+ "created_at": "2022-06-22T16:38:20Z"
+ },
+ {
+ "hn_id": "31627937",
+ "title": "Bankrupting DoS Attackers Despite Uncertainty",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31627937",
+ "created_at": "2022-06-05T04:10:18Z"
+ },
+ {
+ "hn_id": "32591390",
+ "title": "Analyzing the Impact of Face Ageing on the Recognition Performance",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=32591390",
+ "created_at": "2022-08-25T09:15:04Z"
+ },
+ {
+ "hn_id": "24087090",
+ "title": "Aligning AI with Shared Human Values",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24087090",
+ "created_at": "2020-08-07T22:31:09Z"
+ },
+ {
+ "hn_id": "45057188",
+ "title": "Capabilities of GPT-5 on Multimodal Medical Reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45057188",
+ "created_at": "2025-08-28T21:22:26Z"
+ },
+ {
+ "hn_id": "44875586",
+ "title": "Tricks or Traps? A Deep Dive into RL for LLM Reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44875586",
+ "created_at": "2025-08-12T12:50:43Z"
+ },
+ {
+ "hn_id": "34300023",
+ "title": "Assembly Theory Explains and Quantifies the Emergence of Selection and Evolution",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34300023",
+ "created_at": "2023-01-08T15:46:45Z"
+ },
+ {
+ "hn_id": "31705830",
+ "title": "Assembly Theory Explains and Quantifies the Emergence of Selection and Evolution",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31705830",
+ "created_at": "2022-06-11T16:40:24Z"
+ }
+ ],
+ "top_points": 112,
+ "total_points": 135,
+ "total_comments": 86
+}
+\ No newline at end of file
diff --git a/papers/multistakeholder-alignment-llmpowered-2025/hn.json b/papers/multistakeholder-alignment-llmpowered-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/multiturn-code-gen-correctness-2025/hn.json b/papers/multiturn-code-gen-correctness-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "41878961",
+ "title": "Numerical Precision Affects Mathematical Reasoning Capabilities of LLMs",
+ "points": 66,
+ "comments": 49,
+ "url": "https://news.ycombinator.com/item?id=41878961",
+ "created_at": "2024-10-18T12:51:35Z"
+ },
+ {
+ "hn_id": "45789920",
+ "title": "R2T: Rule-Encoded Loss Functions for Low-Resource Sequence Tagging",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45789920",
+ "created_at": "2025-11-02T12:47:22Z"
+ },
+ {
+ "hn_id": "38108305",
+ "title": "A R4RS Compliant REPL in 7 KB",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=38108305",
+ "created_at": "2023-11-02T02:36:00Z"
+ },
+ {
+ "hn_id": "42909616",
+ "title": "New LLM compression method lets you compress models upto 60% of original size",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42909616",
+ "created_at": "2025-02-02T16:26:14Z"
+ },
+ {
+ "hn_id": "42051518",
+ "title": "Enhancing Long Context Performance in LLMs Through Inner Loop Query Mechanism",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42051518",
+ "created_at": "2024-11-05T14:03:26Z"
+ },
+ {
+ "hn_id": "33347178",
+ "title": "Embodied, Situated, and Grounded Intelligence: Implications for AI",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33347178",
+ "created_at": "2022-10-26T17:59:21Z"
+ },
+ {
+ "hn_id": "46319801",
+ "title": "Going Beyond AlphaEvolve in Agent Scientific Discovery",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46319801",
+ "created_at": "2025-12-18T22:37:02Z"
+ },
+ {
+ "hn_id": "46300034",
+ "title": "Let's (Not) Just Put Things in Context: Test-Time Training for Long-Context LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46300034",
+ "created_at": "2025-12-17T09:53:54Z"
+ }
+ ],
+ "top_points": 66,
+ "total_points": 81,
+ "total_comments": 52
+}
+\ No newline at end of file
diff --git a/papers/nalamainz-at-blp2025-2025/hn.json b/papers/nalamainz-at-blp2025-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "43557330",
+ "title": "Ultra-high resolution multimodal MRI dense labelled holistic brain atlas",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43557330",
+ "created_at": "2025-04-02T14:48:56Z"
+ },
+ {
+ "hn_id": "33828521",
+ "title": "Hierarchical Pixel Integration for Lightweight Image Super-Resolution",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33828521",
+ "created_at": "2022-12-02T09:35:09Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/narrow-finetuning-leaves-2025/hn.json b/papers/narrow-finetuning-leaves-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "38078573",
+ "title": "A Web-Based System for Creating Cartoons with Visually Valid Compositions",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38078573",
+ "created_at": "2023-10-31T01:03:18Z"
+ },
+ {
+ "hn_id": "43549219",
+ "title": "SoK: Prompt Hacking of Large Language Models (2024)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43549219",
+ "created_at": "2025-04-01T17:12:34Z"
+ },
+ {
+ "hn_id": "30631135",
+ "title": "Parameter Prediction for Unseen Deep Architectures",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30631135",
+ "created_at": "2022-03-10T19:13:23Z"
+ },
+ {
+ "hn_id": "29365719",
+ "title": "Hypernetworks for prediction of neural network parameters",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=29365719",
+ "created_at": "2021-11-28T02:42:32Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 8,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/navigating-representation-utilizing-2025/hn.json b/papers/navigating-representation-utilizing-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/nested-learning-illusion-2025/hn.json b/papers/nested-learning-illusion-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45793796",
+ "title": "Three-Flavor Composition of Cosmic Neutrinos with IceCube",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45793796",
+ "created_at": "2025-11-02T21:58:46Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/neural-chameleons-language-2025/hn.json b/papers/neural-chameleons-language-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45875697",
+ "title": "Refashion: Reconfigurable Garments via Modular Design",
+ "points": 36,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=45875697",
+ "created_at": "2025-11-10T13:19:36Z"
+ },
+ {
+ "hn_id": "44156776",
+ "title": "AI Persona Groupthink Makes Group Talk More Realistic",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44156776",
+ "created_at": "2025-06-02T08:33:50Z"
+ },
+ {
+ "hn_id": "43521764",
+ "title": "LLM Interactive Optimization of Open Source Python Libraries (2023)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43521764",
+ "created_at": "2025-03-30T06:08:31Z"
+ },
+ {
+ "hn_id": "43123269",
+ "title": "Presumed Cultural Identity: How Names Shape LLM Responses",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43123269",
+ "created_at": "2025-02-21T02:13:09Z"
+ }
+ ],
+ "top_points": 36,
+ "total_points": 42,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/neural-neural-scaling-2026/hn.json b/papers/neural-neural-scaling-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/neurosymbolic-verification-instruction-2026/hn.json b/papers/neurosymbolic-verification-instruction-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46817741",
+ "title": "Masked Depth Modeling for Spatial Perception",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46817741",
+ "created_at": "2026-01-29T22:32:41Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/new-compiler-stack-2026/hn.json b/papers/new-compiler-stack-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46600459",
+ "title": "The New Compiler Stack: A Survey on the Synergy of LLMs and Compilers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46600459",
+ "created_at": "2026-01-13T13:06:42Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/next-paradigm-usercentric-2026/hn.json b/papers/next-paradigm-usercentric-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47404478",
+ "title": "AI-Mediated Feedback Improves Student Revisions: A Randomized Trial",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47404478",
+ "created_at": "2026-03-16T20:31:15Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/nl2repo-bench-2025/hn.json b/papers/nl2repo-bench-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "39094599",
+ "title": "Optimizing Distributed Training on Frontier for Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39094599",
+ "created_at": "2024-01-22T20:00:37Z"
+ },
+ {
+ "hn_id": "38888058",
+ "title": "Optimizing Distributed Training on Frontier for Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38888058",
+ "created_at": "2024-01-06T03:20:02Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/nmusketeers-reinforcement-learning-2026/hn.json b/papers/nmusketeers-reinforcement-learning-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/no-need-lift-2023/hn.json b/papers/no-need-lift-2023/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "34981557",
+ "title": "EvoPrompting: Language Models for Code-Level Neural Architecture Search",
+ "points": 21,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34981557",
+ "created_at": "2023-03-01T12:21:57Z"
+ },
+ {
+ "hn_id": "40899367",
+ "title": "Assessing the Quality of Code Generation by ChatGPT",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40899367",
+ "created_at": "2024-07-07T18:15:59Z"
+ },
+ {
+ "hn_id": "45359410",
+ "title": "Enabling an Ecosystem of Personalized and Interoperable Social Applications",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45359410",
+ "created_at": "2025-09-24T12:34:14Z"
+ },
+ {
+ "hn_id": "35883188",
+ "title": "Unfaithful Explanations in Chain-of-Thought Prompting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35883188",
+ "created_at": "2023-05-10T03:06:10Z"
+ },
+ {
+ "hn_id": "28150873",
+ "title": "Differentiable Surface Rendering via Non-Differentiable Sampling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28150873",
+ "created_at": "2021-08-12T02:14:51Z"
+ },
+ {
+ "hn_id": "40516562",
+ "title": "Frugal random exploration strategy for shape recognition using stat. geom",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40516562",
+ "created_at": "2024-05-29T20:23:09Z"
+ },
+ {
+ "hn_id": "41292700",
+ "title": "Treating the Intent Detection Problem as Dynamics in a Low-Dimensional Space",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41292700",
+ "created_at": "2024-08-19T17:01:52Z"
+ },
+ {
+ "hn_id": "34910906",
+ "title": "Possible runaway supermassive black hole ID'd by shocks&star formation in wake",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34910906",
+ "created_at": "2023-02-23T14:22:19Z"
+ }
+ ],
+ "top_points": 21,
+ "total_points": 33,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/not-all-metrics-2023/hn.json b/papers/not-all-metrics-2023/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "40495149",
+ "title": "Grokked Transformers Are Implicit Reasoners",
+ "points": 239,
+ "comments": 61,
+ "url": "https://news.ycombinator.com/item?id=40495149",
+ "created_at": "2024-05-27T21:58:32Z"
+ },
+ {
+ "hn_id": "34529401",
+ "title": "Imitating Human Behaviour with Diffusion Models",
+ "points": 107,
+ "comments": 33,
+ "url": "https://news.ycombinator.com/item?id=34529401",
+ "created_at": "2023-01-26T09:07:33Z"
+ },
+ {
+ "hn_id": "36564350",
+ "title": "Relay Mining: Verifiable Multi-Tenant Distributed Rate Limiting",
+ "points": 41,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=36564350",
+ "created_at": "2023-07-02T18:41:41Z"
+ },
+ {
+ "hn_id": "40487184",
+ "title": "Grokked Transformers Are Implicit Reasoners",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40487184",
+ "created_at": "2024-05-27T02:45:51Z"
+ },
+ {
+ "hn_id": "37380462",
+ "title": "Large language models converge toward human-like concept organization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37380462",
+ "created_at": "2023-09-04T13:49:33Z"
+ },
+ {
+ "hn_id": "38280492",
+ "title": "Ghostbuster: Detecting Text Ghostwritten by Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38280492",
+ "created_at": "2023-11-15T18:36:51Z"
+ },
+ {
+ "hn_id": "37691858",
+ "title": "Studying the association between Gitcoin's issues and resolving outcomes",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37691858",
+ "created_at": "2023-09-28T16:22:28Z"
+ }
+ ],
+ "top_points": 239,
+ "total_points": 398,
+ "total_comments": 98
+}
+\ No newline at end of file
diff --git a/papers/not-everyone-wins-2025-2/hn.json b/papers/not-everyone-wins-2025-2/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "43374283",
+ "title": "AutoHete: An Automatic and Efficient Heterogeneous Training System for LLMs",
+ "points": 44,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43374283",
+ "created_at": "2025-03-15T18:22:37Z"
+ },
+ {
+ "hn_id": "43500456",
+ "title": "FFN Fusion: Rethinking Sequential Computation in Large Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43500456",
+ "created_at": "2025-03-28T01:37:44Z"
+ },
+ {
+ "hn_id": "42839070",
+ "title": "Analyzing and Exploiting Branch Mispredictions in Microcode [pdf]",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42839070",
+ "created_at": "2025-01-27T09:26:50Z"
+ },
+ {
+ "hn_id": "42855271",
+ "title": "Analyzing and Exploiting Branch Mispredictions in Microcode",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42855271",
+ "created_at": "2025-01-28T17:35:48Z"
+ },
+ {
+ "hn_id": "44734930",
+ "title": "Graph-R1: Towards Agentic GraphRAG Framework via End-to-End RL",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44734930",
+ "created_at": "2025-07-30T14:47:05Z"
+ },
+ {
+ "hn_id": "46211392",
+ "title": "A Simple Proof of the Riemann Hypothesis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46211392",
+ "created_at": "2025-12-09T22:05:46Z"
+ }
+ ],
+ "top_points": 44,
+ "total_points": 56,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/not-everyone-wins-2025/hn.json b/papers/not-everyone-wins-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "43374283",
+ "title": "AutoHete: An Automatic and Efficient Heterogeneous Training System for LLMs",
+ "points": 44,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43374283",
+ "created_at": "2025-03-15T18:22:37Z"
+ },
+ {
+ "hn_id": "43500456",
+ "title": "FFN Fusion: Rethinking Sequential Computation in Large Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43500456",
+ "created_at": "2025-03-28T01:37:44Z"
+ },
+ {
+ "hn_id": "42839070",
+ "title": "Analyzing and Exploiting Branch Mispredictions in Microcode [pdf]",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42839070",
+ "created_at": "2025-01-27T09:26:50Z"
+ },
+ {
+ "hn_id": "42855271",
+ "title": "Analyzing and Exploiting Branch Mispredictions in Microcode",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42855271",
+ "created_at": "2025-01-28T17:35:48Z"
+ },
+ {
+ "hn_id": "44734930",
+ "title": "Graph-R1: Towards Agentic GraphRAG Framework via End-to-End RL",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44734930",
+ "created_at": "2025-07-30T14:47:05Z"
+ },
+ {
+ "hn_id": "46211392",
+ "title": "A Simple Proof of the Riemann Hypothesis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46211392",
+ "created_at": "2025-12-09T22:05:46Z"
+ }
+ ],
+ "top_points": 44,
+ "total_points": 56,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/novel-differential-feature-2025/hn.json b/papers/novel-differential-feature-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43627238",
+ "title": "Real-Time Evaluation Models for RAG: Who Detects Hallucinations Best?",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43627238",
+ "created_at": "2025-04-08T22:50:26Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/novel-preprocessing-technique-2023/hn.json b/papers/novel-preprocessing-technique-2023/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "34714715",
+ "title": "A deep-learning search for technosignatures of 820 nearby stars",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34714715",
+ "created_at": "2023-02-08T20:41:02Z"
+ },
+ {
+ "hn_id": "38105516",
+ "title": "CoDet: Co-Occurrence Guided Region-Word Alignment for Open-Vocabulary Detection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38105516",
+ "created_at": "2023-11-01T21:23:52Z"
+ },
+ {
+ "hn_id": "38499454",
+ "title": "Complex Quantum Networks: A Topical Review",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38499454",
+ "created_at": "2023-12-02T15:55:06Z"
+ },
+ {
+ "hn_id": "46024676",
+ "title": "Jailbreaking LLMs via Game-Theory Scenarios",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46024676",
+ "created_at": "2025-11-23T16:22:38Z"
+ },
+ {
+ "hn_id": "42291972",
+ "title": "Do LLMs Perform Latent Multi-Hop Reasoning Without Exploiting Shortcuts?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42291972",
+ "created_at": "2024-12-02T00:42:36Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 9,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/o1-reasoning-patterns-2024/hn.json b/papers/o1-reasoning-patterns-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "47180140",
+ "title": "Chorba: A novel CRC32 implementation (2024)",
+ "points": 70,
+ "comments": 20,
+ "url": "https://news.ycombinator.com/item?id=47180140",
+ "created_at": "2026-02-27T13:12:38Z"
+ },
+ {
+ "hn_id": "42153895",
+ "title": "Jailbreaking LLM-Controlled Robots",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42153895",
+ "created_at": "2024-11-16T03:28:30Z"
+ },
+ {
+ "hn_id": "42458903",
+ "title": "Pattern Matching in AI Compilers and Its Formalization (Extended Version)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42458903",
+ "created_at": "2024-12-19T06:18:38Z"
+ },
+ {
+ "hn_id": "34246400",
+ "title": "The Frequency Spectrum and Geometry of the Hal Saflieni Hypogeum Appear Tuned",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34246400",
+ "created_at": "2023-01-04T15:12:23Z"
+ },
+ {
+ "hn_id": "33422485",
+ "title": "Radically Lower Data-Labeling Costs for Visual Rich Document Extraction Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33422485",
+ "created_at": "2022-11-01T15:24:39Z"
+ },
+ {
+ "hn_id": "25604385",
+ "title": "Learning from Heterogeneous EEG Signals with Differentiable Channel Reordering",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25604385",
+ "created_at": "2021-01-01T16:33:05Z"
+ },
+ {
+ "hn_id": "42211704",
+ "title": "Automating LLM Development with LLMs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42211704",
+ "created_at": "2024-11-22T06:58:05Z"
+ }
+ ],
+ "top_points": 70,
+ "total_points": 81,
+ "total_comments": 21
+}
+\ No newline at end of file
diff --git a/papers/oet-optimizationbased-prompt-2025/hn.json b/papers/oet-optimizationbased-prompt-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "40258804",
+ "title": "Porting HPC Applications to AMD Instinct MI300A Using Unified Memory and OpenMP",
+ "points": 95,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=40258804",
+ "created_at": "2024-05-04T16:47:17Z"
+ },
+ {
+ "hn_id": "40409388",
+ "title": "Teaching Algorithm Design: A Literature Review",
+ "points": 87,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=40409388",
+ "created_at": "2024-05-19T20:01:29Z"
+ },
+ {
+ "hn_id": "35793863",
+ "title": "Learning to Reason and Memorize with Self-Notes",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35793863",
+ "created_at": "2023-05-02T20:39:25Z"
+ },
+ {
+ "hn_id": "41097484",
+ "title": "Can a Hallucinating Model Help in Reducing Human \"Hallucination\"?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41097484",
+ "created_at": "2024-07-29T02:17:32Z"
+ },
+ {
+ "hn_id": "40252515",
+ "title": "Porting HPC Applications to AMD MI300A Using Unified Memory and OpenMP",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40252515",
+ "created_at": "2024-05-03T21:20:24Z"
+ },
+ {
+ "hn_id": "43956857",
+ "title": "Large Language Models Are Autonomous Cyber Defenders",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43956857",
+ "created_at": "2025-05-11T20:25:40Z"
+ },
+ {
+ "hn_id": "42932912",
+ "title": "Language Models Use Trigonometry to Do Addition",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=42932912",
+ "created_at": "2025-02-04T14:41:12Z"
+ },
+ {
+ "hn_id": "35783526",
+ "title": "Enabling LLMs to Reason and Memorize with Self-Notes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35783526",
+ "created_at": "2023-05-02T04:56:54Z"
+ }
+ ],
+ "top_points": 95,
+ "total_points": 198,
+ "total_comments": 38
+}
+\ No newline at end of file
diff --git a/papers/ojbkq-objectivejoint-babaiklein-2026/hn.json b/papers/ojbkq-objectivejoint-babaiklein-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47003354",
+ "title": "SWE-ContextBench: context learning benchmark in coding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47003354",
+ "created_at": "2026-02-13T14:50:43Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/omnicode-benchmark-2026/hn.json b/papers/omnicode-benchmark-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47339991",
+ "title": "OmniCode: A Benchmark for Evaluating Software Development Agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47339991",
+ "created_at": "2026-03-11T19:22:44Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/omnigrok-grokking-beyond-2022/hn.json b/papers/omnigrok-grokking-beyond-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "28758106",
+ "title": "Is this the simplest (and most surprising) sorting algorithm?",
+ "points": 621,
+ "comments": 318,
+ "url": "https://news.ycombinator.com/item?id=28758106",
+ "created_at": "2021-10-05T11:49:16Z"
+ },
+ {
+ "hn_id": "46658128",
+ "title": "Binary fuse filters: Fast and smaller than xor filters (2022)",
+ "points": 138,
+ "comments": 26,
+ "url": "https://news.ycombinator.com/item?id=46658128",
+ "created_at": "2026-01-17T14:02:17Z"
+ },
+ {
+ "hn_id": "43155839",
+ "title": "Is this the simplest (and most surprising) sorting algorithm ever? (2021)",
+ "points": 130,
+ "comments": 118,
+ "url": "https://news.ycombinator.com/item?id=43155839",
+ "created_at": "2025-02-24T04:26:22Z"
+ },
+ {
+ "hn_id": "45631867",
+ "title": "Verbalized Sampling: How to Mitigate Mode Collapse and Unlock LLM Diversity",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45631867",
+ "created_at": "2025-10-19T03:17:25Z"
+ },
+ {
+ "hn_id": "37748700",
+ "title": "Emergent reprogramable mechanical memory in soft rods net via friction-tuning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37748700",
+ "created_at": "2023-10-03T06:56:17Z"
+ },
+ {
+ "hn_id": "45763142",
+ "title": "Verbalized Sampling: How to Mitigate Mode Collapse and Unlock LLM Diversity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45763142",
+ "created_at": "2025-10-30T18:10:28Z"
+ },
+ {
+ "hn_id": "42738793",
+ "title": "Is this the simplest (and most surprising) sorting algorithm?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42738793",
+ "created_at": "2025-01-17T15:42:02Z"
+ },
+ {
+ "hn_id": "40698771",
+ "title": "Binary Fuse Filters: fast and smaller than XOR filters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40698771",
+ "created_at": "2024-06-16T17:42:02Z"
+ },
+ {
+ "hn_id": "34980125",
+ "title": "The “I can't believe it can sort” algorithm",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34980125",
+ "created_at": "2023-03-01T08:42:06Z"
+ },
+ {
+ "hn_id": "29856743",
+ "title": "Binary Fuse Filters: Fast and Smaller Than Xor Filters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29856743",
+ "created_at": "2022-01-08T21:54:09Z"
+ }
+ ],
+ "top_points": 621,
+ "total_points": 905,
+ "total_comments": 462
+}
+\ No newline at end of file
diff --git a/papers/on-premise-llm-cost-benefit-2025/hn.json b/papers/on-premise-llm-cost-benefit-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "44290315",
+ "title": "ZjsComponent: A Pragmatic Approach to Reusable UI Fragments for Web Development",
+ "points": 77,
+ "comments": 59,
+ "url": "https://news.ycombinator.com/item?id=44290315",
+ "created_at": "2025-06-16T15:07:42Z"
+ },
+ {
+ "hn_id": "45444062",
+ "title": "Machine Learnability as a Measure of Order in Aperiodic Sequences",
+ "points": 48,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=45444062",
+ "created_at": "2025-10-01T22:01:20Z"
+ },
+ {
+ "hn_id": "45380993",
+ "title": "The Memory Paradox: Why Our Brains Need Knowledge in an Age of AI",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45380993",
+ "created_at": "2025-09-26T00:12:07Z"
+ },
+ {
+ "hn_id": "45197643",
+ "title": "The Memory Paradox: Why Our Brains Need Knowledge in an Age of AI",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45197643",
+ "created_at": "2025-09-10T13:47:42Z"
+ },
+ {
+ "hn_id": "43469821",
+ "title": "AgentRxiv: Towards Collaborative Autonomous Research",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43469821",
+ "created_at": "2025-03-25T10:59:07Z"
+ },
+ {
+ "hn_id": "28865191",
+ "title": "Report on the “The Future of the Shell” Panel at HotOS 2021",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28865191",
+ "created_at": "2021-10-14T14:59:32Z"
+ },
+ {
+ "hn_id": "43968491",
+ "title": "A Cache-Accelerated Framework for Interactive Visualization of Tera-Scale Data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43968491",
+ "created_at": "2025-05-12T23:43:11Z"
+ },
+ {
+ "hn_id": "10419236",
+ "title": "Representation Benefits of Deep Feedforward Networks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10419236",
+ "created_at": "2015-10-20T14:14:07Z"
+ }
+ ],
+ "top_points": 77,
+ "total_points": 139,
+ "total_comments": 65
+}
+\ No newline at end of file
diff --git a/papers/one-token-embedding-2025/hn.json b/papers/one-token-embedding-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "44598695",
+ "title": "People who frequently use ChatGPT for writing tasks can detect AI-generated text",
+ "points": 12,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=44598695",
+ "created_at": "2025-07-17T21:58:45Z"
+ },
+ {
+ "hn_id": "46331455",
+ "title": "Braid: Bounded reasoning for LLMs using symbolic Mermaid graphs",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46331455",
+ "created_at": "2025-12-19T22:00:16Z"
+ },
+ {
+ "hn_id": "42873083",
+ "title": "Parametric Retrieval Augmented Generation",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42873083",
+ "created_at": "2025-01-30T00:05:01Z"
+ },
+ {
+ "hn_id": "42866721",
+ "title": "People who use ChatGPT for writing are robust detectors of AI-generated text",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42866721",
+ "created_at": "2025-01-29T16:08:29Z"
+ },
+ {
+ "hn_id": "42849924",
+ "title": "Share a Tiny Space of Your Freezer to Preserve Seed Diversity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42849924",
+ "created_at": "2025-01-28T07:56:31Z"
+ },
+ {
+ "hn_id": "44619211",
+ "title": "Frequent users of ChatGPT are robust detectors of AI text",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44619211",
+ "created_at": "2025-07-19T20:44:50Z"
+ },
+ {
+ "hn_id": "46325684",
+ "title": "Braid: Bounded Reasoning for Autonomous Inference and Decisions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46325684",
+ "created_at": "2025-12-19T13:35:56Z"
+ },
+ {
+ "hn_id": "44065625",
+ "title": "People who use ChatGPT for writing are accurate detectors of AI-generated text",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44065625",
+ "created_at": "2025-05-22T19:12:09Z"
+ },
+ {
+ "hn_id": "42035514",
+ "title": "Voice-Enabled AI Agents Can Perform Common Scams",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42035514",
+ "created_at": "2024-11-03T19:35:19Z"
+ }
+ ],
+ "top_points": 12,
+ "total_points": 29,
+ "total_comments": 11
+}
+\ No newline at end of file
diff --git a/papers/openhands-ai-sw-agent-2024/hn.json b/papers/openhands-ai-sw-agent-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "41215593",
+ "title": "OpenDevin: An Open Platform for AI Software Developers as Generalist Agents",
+ "points": 198,
+ "comments": 107,
+ "url": "https://news.ycombinator.com/item?id=41215593",
+ "created_at": "2024-08-11T12:02:55Z"
+ },
+ {
+ "hn_id": "40172138",
+ "title": "Layer Skip: Enabling Early Exit Inference and Self-Speculative Decoding",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40172138",
+ "created_at": "2024-04-26T17:42:56Z"
+ },
+ {
+ "hn_id": "44746772",
+ "title": "Cross-Architecture Parallel Algorithms from a Unified, Transpiled Codebase",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44746772",
+ "created_at": "2025-07-31T15:39:19Z"
+ },
+ {
+ "hn_id": "41715199",
+ "title": "Copying Style, Extracting Value: AI Style Transfer's Impact on Creative Labor",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41715199",
+ "created_at": "2024-10-01T22:55:05Z"
+ }
+ ],
+ "top_points": 198,
+ "total_points": 203,
+ "total_comments": 108
+}
+\ No newline at end of file
diff --git a/papers/openllmrtl-open-dataset-2024/hn.json b/papers/openllmrtl-open-dataset-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "30935633",
+ "title": "The State of Fortran",
+ "points": 137,
+ "comments": 109,
+ "url": "https://news.ycombinator.com/item?id=30935633",
+ "created_at": "2022-04-06T18:20:19Z"
+ },
+ {
+ "hn_id": "45062761",
+ "title": "AiXiv: A Platform for AI Researchers",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45062761",
+ "created_at": "2025-08-29T11:42:57Z"
+ },
+ {
+ "hn_id": "45147728",
+ "title": "Contemplative Artificial Intelligence",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45147728",
+ "created_at": "2025-09-06T09:02:21Z"
+ },
+ {
+ "hn_id": "42793447",
+ "title": "Can LLMs demonstrate behavioral self-awareness?",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42793447",
+ "created_at": "2025-01-22T14:54:07Z"
+ },
+ {
+ "hn_id": "45391158",
+ "title": "LLM probabilities cannot distinguish between possible and impossible language",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45391158",
+ "created_at": "2025-09-26T21:23:24Z"
+ },
+ {
+ "hn_id": "45302041",
+ "title": "Internalizing Self-Consistency in LMs: Multi-Agent Consensus Alignment",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45302041",
+ "created_at": "2025-09-19T14:26:27Z"
+ },
+ {
+ "hn_id": "42815497",
+ "title": "Tell me about yourself: LLMs are aware of their learned behaviors",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42815497",
+ "created_at": "2025-01-24T17:44:03Z"
+ },
+ {
+ "hn_id": "39832557",
+ "title": "Encode Once and Decode in Parallel: Efficient Transformer Decoding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39832557",
+ "created_at": "2024-03-26T20:38:15Z"
+ },
+ {
+ "hn_id": "39753397",
+ "title": "Observation of diamagnetic strange-metal phase in sulfur-copper codoped lead",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39753397",
+ "created_at": "2024-03-19T06:22:42Z"
+ },
+ {
+ "hn_id": "39817183",
+ "title": "Text Clustering with LLM Embeddings",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39817183",
+ "created_at": "2024-03-25T15:01:51Z"
+ }
+ ],
+ "top_points": 137,
+ "total_points": 158,
+ "total_comments": 114
+}
+\ No newline at end of file
diff --git a/papers/openr-reasoning-framework-2024/hn.json b/papers/openr-reasoning-framework-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "43965099",
+ "title": "Byte latent transformer: Patches scale better than tokens (2024)",
+ "points": 107,
+ "comments": 22,
+ "url": "https://news.ycombinator.com/item?id=43965099",
+ "created_at": "2025-05-12T16:55:39Z"
+ },
+ {
+ "hn_id": "24844142",
+ "title": "Re-analysis of ALMA observations of Venus: No significant detection of phosphine",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24844142",
+ "created_at": "2020-10-21T01:53:54Z"
+ },
+ {
+ "hn_id": "24847175",
+ "title": "Re-analysis: No statistically significant detection of phosphine on Venus",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24847175",
+ "created_at": "2020-10-21T12:38:50Z"
+ },
+ {
+ "hn_id": "42883658",
+ "title": "\"AI and the Opportunity for Shared Prosperity\" by Jeff Dean, Hal Varian, et al.",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42883658",
+ "created_at": "2025-01-31T00:33:32Z"
+ },
+ {
+ "hn_id": "36088093",
+ "title": "A Logic for Expressing Transformers",
+ "points": 2,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=36088093",
+ "created_at": "2023-05-26T18:43:55Z"
+ },
+ {
+ "hn_id": "31959903",
+ "title": "A Survey on Machine Learning Techniques for Source Code Analysis",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31959903",
+ "created_at": "2022-07-02T15:35:25Z"
+ },
+ {
+ "hn_id": "24854551",
+ "title": "No statistically significant detection of phosphine on Venus",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24854551",
+ "created_at": "2020-10-22T03:12:35Z"
+ },
+ {
+ "hn_id": "44178400",
+ "title": "Limit Order Book Event Stream Prediction with Diffusion Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44178400",
+ "created_at": "2025-06-04T08:17:54Z"
+ },
+ {
+ "hn_id": "33772552",
+ "title": "A Survey on Machine Learning Techniques for Source Code Analysis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33772552",
+ "created_at": "2022-11-28T12:03:11Z"
+ }
+ ],
+ "top_points": 107,
+ "total_points": 127,
+ "total_comments": 30
+}
+\ No newline at end of file
diff --git a/papers/optima-optimizing-effectiveness-2024/hn.json b/papers/optima-optimizing-effectiveness-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "37748700",
+ "title": "Emergent reprogramable mechanical memory in soft rods net via friction-tuning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37748700",
+ "created_at": "2023-10-03T06:56:17Z"
+ },
+ {
+ "hn_id": "39987108",
+ "title": "Text-to-SQL that asks the LLM to predict the result set",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39987108",
+ "created_at": "2024-04-10T04:58:41Z"
+ },
+ {
+ "hn_id": "42313820",
+ "title": "OpenHumanVid: Large-Scale High-Quality Dataset Enhancing Human-Centric Video Gen",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42313820",
+ "created_at": "2024-12-04T01:59:53Z"
+ },
+ {
+ "hn_id": "28919207",
+ "title": "Hand Me Your Pin Inferring ATM Pins of Users Typing with a Covered Hand",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28919207",
+ "created_at": "2021-10-19T15:29:52Z"
+ },
+ {
+ "hn_id": "41913559",
+ "title": "What Makes Large Language Models Reason in (Multi-Turn) Code Generation?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41913559",
+ "created_at": "2024-10-22T12:27:37Z"
+ },
+ {
+ "hn_id": "42055840",
+ "title": "Leveraging Large Language Models for Advanced Multilingual Text-to-Speech",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42055840",
+ "created_at": "2024-11-05T22:42:11Z"
+ },
+ {
+ "hn_id": "42398331",
+ "title": "Antelope: Potent and Concealed Jailbreak Attack Strategy",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42398331",
+ "created_at": "2024-12-12T11:38:27Z"
+ },
+ {
+ "hn_id": "41941601",
+ "title": "Point Cloud Compression with Bits-Back Coding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41941601",
+ "created_at": "2024-10-25T01:51:49Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 13,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/optimal-attention-temperature-2025/hn.json b/papers/optimal-attention-temperature-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45643976",
+ "title": "Modeling Others' Minds as Code",
+ "points": 66,
+ "comments": 42,
+ "url": "https://news.ycombinator.com/item?id=45643976",
+ "created_at": "2025-10-20T13:54:38Z"
+ },
+ {
+ "hn_id": "38559299",
+ "title": "GateLoop: Data-Controlled Linear Recurrence for Sequence Modeling",
+ "points": 26,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=38559299",
+ "created_at": "2023-12-07T17:38:31Z"
+ },
+ {
+ "hn_id": "45853123",
+ "title": "It Is All about Token: Towards Semantic Information Theory for LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45853123",
+ "created_at": "2025-11-08T01:01:57Z"
+ },
+ {
+ "hn_id": "45818139",
+ "title": "Towards General Auditory Intelligence",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45818139",
+ "created_at": "2025-11-05T01:54:29Z"
+ },
+ {
+ "hn_id": "28250869",
+ "title": "The Complexity of Gradient Descent: CLS = PPAD ∩ PLS",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28250869",
+ "created_at": "2021-08-20T20:14:11Z"
+ },
+ {
+ "hn_id": "46294170",
+ "title": "Cisco Integrated AI Security and Safety Framework Report",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46294170",
+ "created_at": "2025-12-16T20:43:47Z"
+ },
+ {
+ "hn_id": "45682105",
+ "title": "Enhancing Transformer-Based Rerankers with Synthetic Data and LLM Supervision",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45682105",
+ "created_at": "2025-10-23T14:19:00Z"
+ },
+ {
+ "hn_id": "42227610",
+ "title": "Ask, and it shall be given: Turing completeness of prompting",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42227610",
+ "created_at": "2024-11-24T12:31:33Z"
+ },
+ {
+ "hn_id": "42056510",
+ "title": "Ask, and it shall be given: Turing completeness of prompting",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42056510",
+ "created_at": "2024-11-06T00:45:39Z"
+ },
+ {
+ "hn_id": "33620447",
+ "title": "Fast Text-Conditional Discrete Denoising on Vector-Quantized Latent Spaces",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33620447",
+ "created_at": "2022-11-16T08:35:35Z"
+ }
+ ],
+ "top_points": 66,
+ "total_points": 105,
+ "total_comments": 46
+}
+\ No newline at end of file
diff --git a/papers/optimal-scaling-laws-2026/hn.json b/papers/optimal-scaling-laws-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47419646",
+ "title": "CSLib: The Lean Computer Science Library",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47419646",
+ "created_at": "2026-03-17T23:15:43Z"
+ },
+ {
+ "hn_id": "47114995",
+ "title": "CSLib: The Lean Computer Science Library",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47114995",
+ "created_at": "2026-02-22T21:40:24Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/optimalagentselection-stateaware-routing-2025/hn.json b/papers/optimalagentselection-stateaware-routing-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "38509255",
+ "title": "GDlog: A GPU-accelerated deductive engine",
+ "points": 127,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=38509255",
+ "created_at": "2023-12-03T18:08:23Z"
+ },
+ {
+ "hn_id": "33520429",
+ "title": "Achieving mouse-level evasion performance using real-time computational planning",
+ "points": 20,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33520429",
+ "created_at": "2022-11-08T16:00:56Z"
+ },
+ {
+ "hn_id": "39083869",
+ "title": "Ask HN: Who's writing recursive queries / Datalog?",
+ "points": 8,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39083869",
+ "created_at": "2024-01-21T22:46:11Z"
+ },
+ {
+ "hn_id": "38469733",
+ "title": "GDlog: A GPU-Accelerated Deductive Engine",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38469733",
+ "created_at": "2023-11-30T04:41:45Z"
+ },
+ {
+ "hn_id": "35123961",
+ "title": "Estimating the Carbon Footprint of Bloom, a 176B Parameter Language Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35123961",
+ "created_at": "2023-03-12T18:17:42Z"
+ }
+ ],
+ "top_points": 127,
+ "total_points": 159,
+ "total_comments": 14
+}
+\ No newline at end of file
diff --git a/papers/optimizing-netgpt-routingbased-2025/hn.json b/papers/optimizing-netgpt-routingbased-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47086934",
+ "title": "The Existence and Behavior of Secondary Attention Sinks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47086934",
+ "created_at": "2026-02-20T12:00:11Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/optimizing-pytorch-inference-2025/hn.json b/papers/optimizing-pytorch-inference-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "42898914",
+ "title": "Gradual Disempowerment: How Even Incremental AI Progress Poses Existential Risks",
+ "points": 87,
+ "comments": 84,
+ "url": "https://news.ycombinator.com/item?id=42898914",
+ "created_at": "2025-02-01T15:12:22Z"
+ },
+ {
+ "hn_id": "46536934",
+ "title": "Persistent Compromise of LLM Agents via Poisoned Experience Retrieval",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46536934",
+ "created_at": "2026-01-08T03:42:43Z"
+ },
+ {
+ "hn_id": "46329065",
+ "title": "Implementing a Sharia Chatbot as a Consultation Medium for Questions About Islam",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46329065",
+ "created_at": "2025-12-19T18:21:04Z"
+ },
+ {
+ "hn_id": "42265190",
+ "title": "The composition rule for quantum systems is not the only possible one",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42265190",
+ "created_at": "2024-11-28T13:44:07Z"
+ },
+ {
+ "hn_id": "38455273",
+ "title": "Finnish 5th and 6th graders' Misconceptions about Artificial Intelligence",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38455273",
+ "created_at": "2023-11-29T03:42:53Z"
+ },
+ {
+ "hn_id": "46360815",
+ "title": "JustRL: Scaling a 1.5B LLM with a Simple RL Recipe",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46360815",
+ "created_at": "2025-12-23T00:06:56Z"
+ },
+ {
+ "hn_id": "42915646",
+ "title": "Stack Overflow Meets Replication: Security Research Amid Evolving Code Snippets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42915646",
+ "created_at": "2025-02-03T06:49:46Z"
+ },
+ {
+ "hn_id": "33824335",
+ "title": "Testing GLOM's ability to infer wholes from ambiguous parts",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33824335",
+ "created_at": "2022-12-01T23:09:03Z"
+ }
+ ],
+ "top_points": 87,
+ "total_points": 98,
+ "total_comments": 87
+}
+\ No newline at end of file
diff --git a/papers/orchestrating-intelligence-confidenceaware-2026/hn.json b/papers/orchestrating-intelligence-confidenceaware-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/osworld-benchmarking-multimodal-2024/hn.json b/papers/osworld-benchmarking-multimodal-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39703474",
+ "title": "Show HN: WebAssembly Instrumentation in the Wizard Research Engine",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39703474",
+ "created_at": "2024-03-14T13:08:14Z"
+ },
+ {
+ "hn_id": "40018963",
+ "title": "Ferret-v2: An Improved Baseline for Referring and Grounding with LLMs",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40018963",
+ "created_at": "2024-04-13T00:04:37Z"
+ },
+ {
+ "hn_id": "40934544",
+ "title": "PaliGemma: A versatile 3B VLM for transfer",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40934544",
+ "created_at": "2024-07-11T07:56:17Z"
+ },
+ {
+ "hn_id": "43878578",
+ "title": "Understanding Is Compression",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43878578",
+ "created_at": "2025-05-03T12:22:32Z"
+ },
+ {
+ "hn_id": "41403221",
+ "title": "MeerKAT reveals a ghostly thermal radio ring towards the Galactic Centre",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41403221",
+ "created_at": "2024-08-30T18:18:39Z"
+ },
+ {
+ "hn_id": "39800181",
+ "title": "Simulating Weighted Automata over Sequences and Trees with Transformers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39800181",
+ "created_at": "2024-03-23T14:28:59Z"
+ },
+ {
+ "hn_id": "44209404",
+ "title": "Lossless data compression by large models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44209404",
+ "created_at": "2025-06-07T13:09:27Z"
+ },
+ {
+ "hn_id": "39807052",
+ "title": "Rad-PHI2: Instruction Tuning Phi-2 for Radiology",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39807052",
+ "created_at": "2024-03-24T13:19:32Z"
+ },
+ {
+ "hn_id": "39788551",
+ "title": "LiveCodeBench: Holistic, Contamination Free Evaluation of LLMs for Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39788551",
+ "created_at": "2024-03-22T08:36:13Z"
+ },
+ {
+ "hn_id": "40458674",
+ "title": "Quantifying and Optimizing Global Faithfulness in Persona-Driven Role-Playing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40458674",
+ "created_at": "2024-05-23T19:09:06Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 33,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/outofcontext-outofscope-manipulating-2026/hn.json b/papers/outofcontext-outofscope-manipulating-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/overreliance-human-ai-2025/hn.json b/papers/overreliance-human-ai-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42208964",
+ "title": "WhisperNER: Unified Open Named Entity and Speech Recognition",
+ "points": 133,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=42208964",
+ "created_at": "2024-11-21T21:41:41Z"
+ },
+ {
+ "hn_id": "44232880",
+ "title": "Reinforcement Pre-Training",
+ "points": 70,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=44232880",
+ "created_at": "2025-06-10T05:30:22Z"
+ },
+ {
+ "hn_id": "41558674",
+ "title": "Microarchitectural comparison and in-core modeling of state-of-the-art CPUs",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41558674",
+ "created_at": "2024-09-16T17:55:03Z"
+ },
+ {
+ "hn_id": "44286500",
+ "title": "Vision Transformers Don't Need Trained Registers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44286500",
+ "created_at": "2025-06-16T03:59:13Z"
+ },
+ {
+ "hn_id": "46702621",
+ "title": "DiffRatio – A One-Step Diffusion Model with SOTA quality and 50% less memory",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46702621",
+ "created_at": "2026-01-21T08:21:14Z"
+ },
+ {
+ "hn_id": "44822762",
+ "title": "Analysis of Declining Medical Safety Messaging in Generative AI Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44822762",
+ "created_at": "2025-08-07T10:27:53Z"
+ },
+ {
+ "hn_id": "44033403",
+ "title": "Optimization of RAG systems using quantization and dimensionality reduction",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44033403",
+ "created_at": "2025-05-19T18:52:47Z"
+ },
+ {
+ "hn_id": "43464178",
+ "title": "Accurate INT8 Training Through Dynamic Block-Level Fallback",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43464178",
+ "created_at": "2025-03-24T18:46:55Z"
+ },
+ {
+ "hn_id": "42604396",
+ "title": "LTX-Video: Realtime Video Latent Diffusion",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42604396",
+ "created_at": "2025-01-05T19:42:42Z"
+ },
+ {
+ "hn_id": "44535220",
+ "title": "Impact of Pretraining Word Co-Occurrence on Compositional Generalization In",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44535220",
+ "created_at": "2025-07-11T18:02:31Z"
+ }
+ ],
+ "top_points": 133,
+ "total_points": 233,
+ "total_comments": 37
+}
+\ No newline at end of file
diff --git a/papers/overseeing-agents-without-2026/hn.json b/papers/overseeing-agents-without-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/palm-scaling-language-2022/hn.json b/papers/palm-scaling-language-2022/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "35472107",
+ "title": "Design and manufacture of edible microfluidic logic gates",
+ "points": 48,
+ "comments": 16,
+ "url": "https://news.ycombinator.com/item?id=35472107",
+ "created_at": "2023-04-06T18:09:20Z"
+ },
+ {
+ "hn_id": "32689152",
+ "title": "Towards a Tectonic Traffic Shift? Investigating Apple's New Relay Network",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32689152",
+ "created_at": "2022-09-02T10:55:02Z"
+ },
+ {
+ "hn_id": "32187797",
+ "title": "Diffraction Patterns of Apertures Shaped as National Borders",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32187797",
+ "created_at": "2022-07-22T02:31:36Z"
+ },
+ {
+ "hn_id": "31117062",
+ "title": "Palm: Scaling Language Modeling with Pathways",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31117062",
+ "created_at": "2022-04-22T01:01:20Z"
+ },
+ {
+ "hn_id": "30972885",
+ "title": "Palm: Scaling Language Modeling with Pathways [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30972885",
+ "created_at": "2022-04-09T22:44:41Z"
+ },
+ {
+ "hn_id": "43703965",
+ "title": "LLMs, Syntax, and Semantics: Long-Distance Binding of Chinese Reflexive Ziji",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43703965",
+ "created_at": "2025-04-16T11:22:09Z"
+ },
+ {
+ "hn_id": "31824088",
+ "title": "Palm: Scaling Language Modeling with Pathways",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31824088",
+ "created_at": "2022-06-21T14:05:15Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 66,
+ "total_comments": 16
+}
+\ No newline at end of file
diff --git a/papers/pangucoder2-boosting-large-2023/hn.json b/papers/pangucoder2-boosting-large-2023/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "37373635",
+ "title": "Vector Search with OpenAI Embeddings: Lucene Is All You Need",
+ "points": 92,
+ "comments": 63,
+ "url": "https://news.ycombinator.com/item?id=37373635",
+ "created_at": "2023-09-03T19:38:46Z"
+ },
+ {
+ "hn_id": "39133608",
+ "title": "Universal Self-Adaptive Prompting",
+ "points": 21,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39133608",
+ "created_at": "2024-01-25T19:09:05Z"
+ },
+ {
+ "hn_id": "36902663",
+ "title": "PanGu-Coder2: SOTA for Code LLMs on 15B",
+ "points": 8,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36902663",
+ "created_at": "2023-07-28T02:51:50Z"
+ },
+ {
+ "hn_id": "37320874",
+ "title": "Vector Search with OpenAI Embeddings: Lucene Is All You Need",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37320874",
+ "created_at": "2023-08-30T12:16:52Z"
+ },
+ {
+ "hn_id": "41046574",
+ "title": "Operationalizing a Threat Model for Red-Teaming Large Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41046574",
+ "created_at": "2024-07-23T14:50:40Z"
+ },
+ {
+ "hn_id": "38117532",
+ "title": "Discriminator-Guided Chain-of-Thought Reasoning",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38117532",
+ "created_at": "2023-11-02T17:57:52Z"
+ },
+ {
+ "hn_id": "37370273",
+ "title": "RecRec: Algorithmic Recourse for Recommender Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37370273",
+ "created_at": "2023-09-03T13:29:49Z"
+ }
+ ],
+ "top_points": 92,
+ "total_points": 132,
+ "total_comments": 67
+}
+\ No newline at end of file
diff --git a/papers/paperbench-evaluating-ais-2025/hn.json b/papers/paperbench-evaluating-ais-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "31468351",
+ "title": "When can liquid democracy unveil the truth? (2021)",
+ "points": 53,
+ "comments": 110,
+ "url": "https://news.ycombinator.com/item?id=31468351",
+ "created_at": "2022-05-22T14:10:42Z"
+ },
+ {
+ "hn_id": "45165706",
+ "title": "Garbage Collection for Rust: The Finalizer Frontier",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45165706",
+ "created_at": "2025-09-08T08:01:50Z"
+ },
+ {
+ "hn_id": "44167550",
+ "title": "SmolVLA: A Vision-Language-Action Model for Affordable and Efficient Robotics",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44167550",
+ "created_at": "2025-06-03T07:59:31Z"
+ },
+ {
+ "hn_id": "44131654",
+ "title": "Reconstructing the Antikythera Mechanism's Central Front Dial Parts",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44131654",
+ "created_at": "2025-05-30T00:28:49Z"
+ },
+ {
+ "hn_id": "42611325",
+ "title": "Long Context vs. RAG for LLMs: An Evaluation and Revisits",
+ "points": 3,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42611325",
+ "created_at": "2025-01-06T15:26:25Z"
+ },
+ {
+ "hn_id": "35953001",
+ "title": "Evaluating Verifiability in Generative Search Engines",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35953001",
+ "created_at": "2023-05-15T19:01:03Z"
+ },
+ {
+ "hn_id": "43263088",
+ "title": "Convolutional Multi-Hybrid Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43263088",
+ "created_at": "2025-03-05T05:09:41Z"
+ },
+ {
+ "hn_id": "35464519",
+ "title": "The Vector Grounding Problem",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35464519",
+ "created_at": "2023-04-06T05:31:54Z"
+ },
+ {
+ "hn_id": "35459863",
+ "title": "To ChatGPT, or not to ChatGPT: That is the question",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35459863",
+ "created_at": "2023-04-05T20:22:58Z"
+ },
+ {
+ "hn_id": "43610697",
+ "title": "How Does Watermarking Affect Visual Language Models in Document Understanding?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43610697",
+ "created_at": "2025-04-07T12:51:52Z"
+ }
+ ],
+ "top_points": 53,
+ "total_points": 79,
+ "total_comments": 114
+}
+\ No newline at end of file
diff --git a/papers/pay-hints-not-2026/hn.json b/papers/pay-hints-not-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/peeping-at-creaitivity-2025/hn.json b/papers/peeping-at-creaitivity-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/pennylang-pioneering-llmbased-2025/hn.json b/papers/pennylang-pioneering-llmbased-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "43578430",
+ "title": "DeepSeek: Inference-Time Scaling for Generalist Reward Modeling",
+ "points": 163,
+ "comments": 35,
+ "url": "https://news.ycombinator.com/item?id=43578430",
+ "created_at": "2025-04-04T04:50:45Z"
+ },
+ {
+ "hn_id": "45122241",
+ "title": "DaCe AD: Unifying High-Performance Automatic Differentiation for ML and SciComp",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45122241",
+ "created_at": "2025-09-04T01:02:51Z"
+ },
+ {
+ "hn_id": "42867098",
+ "title": "Small Language Models for Document Layout Generation and Classification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42867098",
+ "created_at": "2025-01-29T16:28:25Z"
+ },
+ {
+ "hn_id": "44799772",
+ "title": "Pre-Discovery Tess Observations of Interstellar Object 3I/ATLAS",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44799772",
+ "created_at": "2025-08-05T16:00:49Z"
+ },
+ {
+ "hn_id": "22526869",
+ "title": "Drone Based RGBT Vehicle Detection and Counting",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22526869",
+ "created_at": "2020-03-09T16:47:37Z"
+ }
+ ],
+ "top_points": 163,
+ "total_points": 170,
+ "total_comments": 35
+}
+\ No newline at end of file
diff --git a/papers/performance-review-llm-2024/hn.json b/papers/performance-review-llm-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43318708",
+ "title": "MAML: Towards a Faster Web in Developing Regions",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43318708",
+ "created_at": "2025-03-10T10:03:48Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/performance-study-llmgenerated-2024/hn.json b/papers/performance-study-llmgenerated-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "41565110",
+ "title": "Show HN: Codebased, an AI Search Engine for Code",
+ "points": 17,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=41565110",
+ "created_at": "2024-09-17T07:09:05Z"
+ },
+ {
+ "hn_id": "40194033",
+ "title": "Understanding Emergent Abilities of Language Models from the Loss Perspective",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40194033",
+ "created_at": "2024-04-29T03:10:37Z"
+ },
+ {
+ "hn_id": "40209912",
+ "title": "Understanding Emergent Abilities of Language Models from the Loss Perspective",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40209912",
+ "created_at": "2024-04-30T11:44:36Z"
+ },
+ {
+ "hn_id": "41125384",
+ "title": "Do AI Safety Benchmarks Measure Safety Progress?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41125384",
+ "created_at": "2024-08-01T01:34:22Z"
+ },
+ {
+ "hn_id": "41663214",
+ "title": "Small Language Models: Survey, Measurements, and Insights",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41663214",
+ "created_at": "2024-09-26T20:50:38Z"
+ },
+ {
+ "hn_id": "41656338",
+ "title": "Small Language Models: Survey, Measurements, and Insights",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41656338",
+ "created_at": "2024-09-26T09:31:50Z"
+ },
+ {
+ "hn_id": "40500490",
+ "title": "SWE-Agent: Agent-Computer Interfaces Enable Automated Software Engineering",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40500490",
+ "created_at": "2024-05-28T13:22:56Z"
+ }
+ ],
+ "top_points": 17,
+ "total_points": 29,
+ "total_comments": 10
+}
+\ No newline at end of file
diff --git a/papers/perplexity-paradox-why-2026/hn.json b/papers/perplexity-paradox-why-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/persistent-backdoor-attacks-2025/hn.json b/papers/persistent-backdoor-attacks-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "29775477",
+ "title": "Automated Code Optimization with E-Graphs",
+ "points": 102,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=29775477",
+ "created_at": "2022-01-02T23:51:37Z"
+ },
+ {
+ "hn_id": "29633042",
+ "title": "GLIDE: Photorealistic Image Generation, Editing w/ Text-Guided Diffusion Models",
+ "points": 26,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=29633042",
+ "created_at": "2021-12-21T02:16:47Z"
+ },
+ {
+ "hn_id": "46515562",
+ "title": "Persistent Backdoor Attacks Under Continual Fine-Tuning of LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46515562",
+ "created_at": "2026-01-06T17:37:49Z"
+ },
+ {
+ "hn_id": "32562345",
+ "title": "Decomposing the local arrow of time in interacting systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32562345",
+ "created_at": "2022-08-23T09:22:33Z"
+ },
+ {
+ "hn_id": "4583412",
+ "title": "How hierarchical is language use?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=4583412",
+ "created_at": "2012-09-27T23:13:44Z"
+ },
+ {
+ "hn_id": "29845547",
+ "title": "Gas Gauge: A Security Tool for Smart Contract Out-of-Gas Vulnerabilities",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29845547",
+ "created_at": "2022-01-07T22:11:48Z"
+ },
+ {
+ "hn_id": "29758572",
+ "title": "Automated Code Optimization with E-Graphs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29758572",
+ "created_at": "2022-01-01T14:36:58Z"
+ }
+ ],
+ "top_points": 102,
+ "total_points": 135,
+ "total_comments": 16
+}
+\ No newline at end of file
diff --git a/papers/personadual-balancing-personalization-2026/hn.json b/papers/personadual-balancing-personalization-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/personalizedrouter-personalized-llm-2025/hn.json b/papers/personalizedrouter-personalized-llm-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46240490",
+ "title": "How Well Do LLMs Understand Tunisian Arabic?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46240490",
+ "created_at": "2025-12-12T03:15:37Z"
+ },
+ {
+ "hn_id": "40029327",
+ "title": "Power Hungry Processing: Watts Driving the Cost of AI Deployment?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40029327",
+ "created_at": "2024-04-14T07:23:52Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/phantom-transfer-datalevel-2026/hn.json b/papers/phantom-transfer-datalevel-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/picking-right-specialist-2026/hn.json b/papers/picking-right-specialist-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/plan-and-act-long-horizon-2025/hn.json b/papers/plan-and-act-long-horizon-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43363247",
+ "title": "Block Diffusion: Interpolating between autoregressive and diffusion models",
+ "points": 156,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=43363247",
+ "created_at": "2025-03-14T14:58:32Z"
+ },
+ {
+ "hn_id": "35237646",
+ "title": "CoLT5: Faster Long-Range Transformers With Conditional Computation",
+ "points": 123,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=35237646",
+ "created_at": "2023-03-20T19:54:19Z"
+ },
+ {
+ "hn_id": "47382494",
+ "title": "Researchers improve lower bounds for some Ramsey numbers using AlphaEvolve",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47382494",
+ "created_at": "2026-03-14T23:37:12Z"
+ },
+ {
+ "hn_id": "44887285",
+ "title": "The World of Quantum Advantage",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44887285",
+ "created_at": "2025-08-13T11:45:33Z"
+ },
+ {
+ "hn_id": "42743177",
+ "title": "Generating particle physics Lagrangians with transformers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42743177",
+ "created_at": "2025-01-17T21:01:09Z"
+ },
+ {
+ "hn_id": "35225719",
+ "title": "CoLT5: Faster Long-Range Transformers with Conditional Computation",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35225719",
+ "created_at": "2023-03-20T00:52:41Z"
+ },
+ {
+ "hn_id": "35194772",
+ "title": "An exponential improvement for diagonal Ramsey",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35194772",
+ "created_at": "2023-03-17T09:05:40Z"
+ },
+ {
+ "hn_id": "45240856",
+ "title": "Pipes: A Meta-Dataset of Machine Learning Pipelines",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45240856",
+ "created_at": "2025-09-14T16:02:28Z"
+ },
+ {
+ "hn_id": "43350332",
+ "title": "General Relativity and Geodesy",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43350332",
+ "created_at": "2025-03-13T04:17:33Z"
+ },
+ {
+ "hn_id": "45493018",
+ "title": "An Efficient Vision-Language-Action Model for Combat Tasks in 3D Action RPGs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45493018",
+ "created_at": "2025-10-06T16:21:49Z"
+ }
+ ],
+ "top_points": 156,
+ "total_points": 311,
+ "total_comments": 51
+}
+\ No newline at end of file
diff --git a/papers/play-by-type-2025/hn.json b/papers/play-by-type-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47267957",
+ "title": "Generative Linguistics, LLMs, and the Social Nature of Scientific Success",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47267957",
+ "created_at": "2026-03-05T22:06:18Z"
+ },
+ {
+ "hn_id": "43772015",
+ "title": "Show HN: Tokenkit – Convert LLMs to new tokenizers (incl byte-level Llama/Gemma)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43772015",
+ "created_at": "2025-04-23T13:35:34Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/poison-once-refuse-2025/hn.json b/papers/poison-once-refuse-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "43951985",
+ "title": "Absolute Zero: Reinforced Self-Play Reasoning with Zero Data",
+ "points": 88,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=43951985",
+ "created_at": "2025-05-11T07:07:26Z"
+ },
+ {
+ "hn_id": "43935157",
+ "title": "Absolute Zero: Reinforced Self-Play Reasoning with Zero Data",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43935157",
+ "created_at": "2025-05-09T09:30:43Z"
+ },
+ {
+ "hn_id": "43946729",
+ "title": "Absolute Zero: Reinforced Self-Play Reasoning with Zero Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43946729",
+ "created_at": "2025-05-10T16:06:18Z"
+ },
+ {
+ "hn_id": "43915814",
+ "title": "Absolute Zero: Reinforced Self-Play Reasoning with Zero Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43915814",
+ "created_at": "2025-05-07T14:00:36Z"
+ },
+ {
+ "hn_id": "44505092",
+ "title": "Paper: Disambiguation-Centric Finetuning Makes Tool-Calling LLMs More Realistic",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44505092",
+ "created_at": "2025-07-08T23:57:34Z"
+ },
+ {
+ "hn_id": "43922339",
+ "title": "Absolute Zero: Reinforced Self-Play Reasoning with Zero Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43922339",
+ "created_at": "2025-05-08T01:47:21Z"
+ },
+ {
+ "hn_id": "44133760",
+ "title": "Nosey: Open-source hardware for acoustic nasalance",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44133760",
+ "created_at": "2025-05-30T07:15:55Z"
+ },
+ {
+ "hn_id": "43219560",
+ "title": "Why Are Web AI Agents More Vulnerable Than Standalone LLMs?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43219560",
+ "created_at": "2025-03-01T14:32:21Z"
+ }
+ ],
+ "top_points": 88,
+ "total_points": 103,
+ "total_comments": 21
+}
+\ No newline at end of file
diff --git a/papers/poisoning-attacks-llms-2025/hn.json b/papers/poisoning-attacks-llms-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39805923",
+ "title": "The Expressive Power of Transformers with Chain of Thought (Revised)",
+ "points": 20,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39805923",
+ "created_at": "2024-03-24T09:01:46Z"
+ },
+ {
+ "hn_id": "28880374",
+ "title": "WebAssembly enables low latency interoperable AR/VR software",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28880374",
+ "created_at": "2021-10-15T17:27:43Z"
+ },
+ {
+ "hn_id": "35927962",
+ "title": "Code trained LLMs reason better, on benchmarks that have nothing to do with code",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35927962",
+ "created_at": "2023-05-13T13:00:53Z"
+ },
+ {
+ "hn_id": "45675398",
+ "title": "Poisoning Attacks on LLMs Require a Near-Constant Number of Poison Samples",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45675398",
+ "created_at": "2025-10-22T21:28:32Z"
+ },
+ {
+ "hn_id": "37868466",
+ "title": "Sneaked references: Cooked reference metadata inflate citation counts",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37868466",
+ "created_at": "2023-10-13T09:05:09Z"
+ },
+ {
+ "hn_id": "35953729",
+ "title": "Language Models of Code Are Few-Shot Commonsense Learners",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35953729",
+ "created_at": "2023-05-15T20:03:36Z"
+ },
+ {
+ "hn_id": "42735994",
+ "title": "Gandalf the Red: Adaptive Security for LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42735994",
+ "created_at": "2025-01-17T10:19:10Z"
+ },
+ {
+ "hn_id": "42709454",
+ "title": "Gandalf the Red: Adaptive Security for LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42709454",
+ "created_at": "2025-01-15T10:38:51Z"
+ },
+ {
+ "hn_id": "42021531",
+ "title": "Understanding Warmup-Stable-Decay Learning Rates",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42021531",
+ "created_at": "2024-11-01T21:02:29Z"
+ },
+ {
+ "hn_id": "41729335",
+ "title": "Embers of Autoregression in OpenAI O1",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41729335",
+ "created_at": "2024-10-03T10:45:49Z"
+ }
+ ],
+ "top_points": 20,
+ "total_points": 37,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/policy-compiler-secure-2026/hn.json b/papers/policy-compiler-secure-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/poodle-seamlessly-scaling-2025/hn.json b/papers/poodle-seamlessly-scaling-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "43014918",
+ "title": "LLMs can teach themselves to better predict the future",
+ "points": 176,
+ "comments": 86,
+ "url": "https://news.ycombinator.com/item?id=43014918",
+ "created_at": "2025-02-11T16:40:20Z"
+ },
+ {
+ "hn_id": "33956930",
+ "title": "Ask HN: Running (multimodal) semantic search on edge?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33956930",
+ "created_at": "2022-12-12T16:51:41Z"
+ }
+ ],
+ "top_points": 176,
+ "total_points": 177,
+ "total_comments": 86
+}
+\ No newline at end of file
diff --git a/papers/position-explaining-behavioral-2026/hn.json b/papers/position-explaining-behavioral-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46878800",
+ "title": "A formula for any real number, maybe",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=46878800",
+ "created_at": "2026-02-03T23:17:06Z"
+ },
+ {
+ "hn_id": "46886075",
+ "title": "A formula for any real number, maybe",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46886075",
+ "created_at": "2026-02-04T14:17:45Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/position-require-frontier-2025/hn.json b/papers/position-require-frontier-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45817559",
+ "title": "The physics of news, rumors, and opinions",
+ "points": 89,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=45817559",
+ "created_at": "2025-11-05T00:22:16Z"
+ },
+ {
+ "hn_id": "45976999",
+ "title": "Asymptotically optimal approximate Hadamard matrices",
+ "points": 19,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45976999",
+ "created_at": "2025-11-19T08:06:15Z"
+ },
+ {
+ "hn_id": "43072457",
+ "title": "LLMs to Analyze Drivers of Teen Substance Use in Online Discussions",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43072457",
+ "created_at": "2025-02-16T22:35:40Z"
+ },
+ {
+ "hn_id": "45588277",
+ "title": "Subspace-Accelerated Coordinate Descent for Physics-Based Simulation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45588277",
+ "created_at": "2025-10-15T05:08:32Z"
+ }
+ ],
+ "top_points": 89,
+ "total_points": 111,
+ "total_comments": 32
+}
+\ No newline at end of file
diff --git a/papers/position-vibe-coding-2025/hn.json b/papers/position-vibe-coding-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42602347",
+ "title": "Did we miss P In CAP? Partial Progress Conjecture under Asynchrony",
+ "points": 42,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=42602347",
+ "created_at": "2025-01-05T15:23:00Z"
+ },
+ {
+ "hn_id": "40510980",
+ "title": "Seeing Sound: Audio Classification with the Wigner-Wille Distribution and CNN",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40510980",
+ "created_at": "2024-05-29T11:58:27Z"
+ },
+ {
+ "hn_id": "45853123",
+ "title": "It Is All about Token: Towards Semantic Information Theory for LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45853123",
+ "created_at": "2025-11-08T01:01:57Z"
+ },
+ {
+ "hn_id": "45966047",
+ "title": "VRScout: Towards Real-Time, Autonomous Testing of Virtual Reality Games",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45966047",
+ "created_at": "2025-11-18T13:58:21Z"
+ },
+ {
+ "hn_id": "38123555",
+ "title": "How do you think LLM inference on CPUs?",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38123555",
+ "created_at": "2023-11-03T02:14:47Z"
+ },
+ {
+ "hn_id": "29248908",
+ "title": "On the Optimal Time/Space Tradeoff for Hash Tables",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29248908",
+ "created_at": "2021-11-17T03:02:36Z"
+ },
+ {
+ "hn_id": "29107694",
+ "title": "Chaos Engineering of Ethereum Blockchain Clients",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29107694",
+ "created_at": "2021-11-04T14:34:01Z"
+ },
+ {
+ "hn_id": "45817907",
+ "title": "Fix: Externalizing network I/O in serverless computing [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45817907",
+ "created_at": "2025-11-05T01:15:40Z"
+ },
+ {
+ "hn_id": "42094613",
+ "title": "Personalization of Large Language Models: A Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42094613",
+ "created_at": "2024-11-09T14:28:38Z"
+ },
+ {
+ "hn_id": "42041985",
+ "title": "Personalization of Large Language Models: A Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42041985",
+ "created_at": "2024-11-04T14:47:16Z"
+ }
+ ],
+ "top_points": 42,
+ "total_points": 64,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/pots-proofoftrainingsteps-backdoor-2025/hn.json b/papers/pots-proofoftrainingsteps-backdoor-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45683897",
+ "title": "Antislop: A framework for eliminating repetitive patterns in language models",
+ "points": 120,
+ "comments": 110,
+ "url": "https://news.ycombinator.com/item?id=45683897",
+ "created_at": "2025-10-23T16:36:05Z"
+ },
+ {
+ "hn_id": "28970112",
+ "title": "Stipula: DSL that assists lawyers in programming legal contracts",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28970112",
+ "created_at": "2021-10-23T16:45:10Z"
+ },
+ {
+ "hn_id": "25254301",
+ "title": "Sizeless: Predicting the optimal size of serverless functions [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25254301",
+ "created_at": "2020-11-30T14:53:45Z"
+ }
+ ],
+ "top_points": 120,
+ "total_points": 124,
+ "total_comments": 110
+}
+\ No newline at end of file
diff --git a/papers/power-limitations-aggregation-2026/hn.json b/papers/power-limitations-aggregation-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/pragmatic-reasoning-improves-2025/hn.json b/papers/pragmatic-reasoning-improves-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43204164",
+ "title": "System prompts in LLMs do not reliably override user prompts",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43204164",
+ "created_at": "2025-02-28T10:47:49Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/predictable-artificial-intelligence-2023/hn.json b/papers/predictable-artificial-intelligence-2023/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "28876487",
+ "title": "Offline Reinforcement Learning with Implicit Q-Learning",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28876487",
+ "created_at": "2021-10-15T11:05:12Z"
+ },
+ {
+ "hn_id": "46519966",
+ "title": "Rtsdf: Real-Time Signed Distance Fields for Soft Shadow Approximation in Games",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46519966",
+ "created_at": "2026-01-06T22:51:03Z"
+ },
+ {
+ "hn_id": "45556170",
+ "title": "Airbnb: Agent-in-the-Loop: Data Flywheel for LLM-Based Customer Support",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45556170",
+ "created_at": "2025-10-12T07:45:21Z"
+ },
+ {
+ "hn_id": "38771869",
+ "title": "Combating the effects of speed and delays in end-to-end self-driving",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38771869",
+ "created_at": "2023-12-26T14:10:26Z"
+ },
+ {
+ "hn_id": "36286731",
+ "title": "Truthful AI: Developing and governing AI that does not lie (2021)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36286731",
+ "created_at": "2023-06-11T23:18:35Z"
+ },
+ {
+ "hn_id": "45656312",
+ "title": "Explaining Why Hallucinate Large Language Models",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45656312",
+ "created_at": "2025-10-21T14:31:18Z"
+ },
+ {
+ "hn_id": "38529516",
+ "title": "Jellyfish: A Large Language Model for Data Preprocessing",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38529516",
+ "created_at": "2023-12-05T11:21:10Z"
+ }
+ ],
+ "top_points": 12,
+ "total_points": 22,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/predicting-llm-reasoning-2025/hn.json b/papers/predicting-llm-reasoning-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45068986",
+ "title": "The Theoretical Limitations of Embedding-Based Retrieval",
+ "points": 151,
+ "comments": 38,
+ "url": "https://news.ycombinator.com/item?id=45068986",
+ "created_at": "2025-08-29T20:25:34Z"
+ },
+ {
+ "hn_id": "45069341",
+ "title": "Reusing Computation in Text-to-Image Diffusion for Efficient Image Generation",
+ "points": 41,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45069341",
+ "created_at": "2025-08-29T21:01:53Z"
+ },
+ {
+ "hn_id": "45119397",
+ "title": "The Theoretical Limitations of Embedding-Based Retrieval",
+ "points": 36,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=45119397",
+ "created_at": "2025-09-03T19:09:29Z"
+ },
+ {
+ "hn_id": "45494202",
+ "title": "Mojo: MLIR-Based Performance-Portable HPC Science Kernels on GPUs",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45494202",
+ "created_at": "2025-10-06T18:02:24Z"
+ },
+ {
+ "hn_id": "43853742",
+ "title": "Pre-Trained Security LLM 8B",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43853742",
+ "created_at": "2025-05-01T04:32:40Z"
+ },
+ {
+ "hn_id": "44763614",
+ "title": "Show HN: Inworld TTS open sourcing and technical report",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44763614",
+ "created_at": "2025-08-01T23:40:34Z"
+ },
+ {
+ "hn_id": "45884413",
+ "title": "Mojo: MLIR-Based Performance-Portable HPC Science Kernels on GPUs for the Pytho",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45884413",
+ "created_at": "2025-11-11T05:29:41Z"
+ },
+ {
+ "hn_id": "45418635",
+ "title": "Can LLMs Be Creative? Paper: Combinatorial Creativity: A New Frontier",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45418635",
+ "created_at": "2025-09-29T20:53:22Z"
+ },
+ {
+ "hn_id": "45080035",
+ "title": "The Theoretical Limitations of Embedding-Based Retrieval",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45080035",
+ "created_at": "2025-08-31T03:10:51Z"
+ },
+ {
+ "hn_id": "45463139",
+ "title": "Delta-Code: How Does RL Unlock and Transfer New Programming Algorithms in LLMs?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45463139",
+ "created_at": "2025-10-03T14:01:37Z"
+ }
+ ],
+ "top_points": 151,
+ "total_points": 250,
+ "total_comments": 43
+}
+\ No newline at end of file
diff --git a/papers/prefillshare-shared-prefill-2026/hn.json b/papers/prefillshare-shared-prefill-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47401901",
+ "title": "Language model teams as distributed systems",
+ "points": 104,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=47401901",
+ "created_at": "2026-03-16T17:19:13Z"
+ }
+ ],
+ "top_points": 104,
+ "total_points": 104,
+ "total_comments": 46
+}
+\ No newline at end of file
diff --git a/papers/pretraining-scaling-laws-2025/hn.json b/papers/pretraining-scaling-laws-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "44494392",
+ "title": "The Lifespan of our Universe",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44494392",
+ "created_at": "2025-07-07T20:33:12Z"
+ },
+ {
+ "hn_id": "43894376",
+ "title": "CrashFixer: A crash resolution agent for the Linux kernel",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43894376",
+ "created_at": "2025-05-05T12:31:05Z"
+ }
+ ],
+ "top_points": 8,
+ "total_points": 10,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/processcentric-analysis-agentic-2025/hn.json b/papers/processcentric-analysis-agentic-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "45721160",
+ "title": "EntropyLong: Effective Long-Context Training via Predictive Uncertainty",
+ "points": 15,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45721160",
+ "created_at": "2025-10-27T14:04:48Z"
+ },
+ {
+ "hn_id": "45835780",
+ "title": "Google's Hidden Empire",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45835780",
+ "created_at": "2025-11-06T14:42:17Z"
+ }
+ ],
+ "top_points": 15,
+ "total_points": 22,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/programmed-please-moral-2026/hn.json b/papers/programmed-please-moral-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/programming-language-techniques-2025/hn.json b/papers/programming-language-techniques-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "44905791",
+ "title": "Time travel is self-suppressing",
+ "points": 41,
+ "comments": 71,
+ "url": "https://news.ycombinator.com/item?id=44905791",
+ "created_at": "2025-08-14T21:17:21Z"
+ },
+ {
+ "hn_id": "36709342",
+ "title": "SayPlan: Scalable Task Planning Using 3D Scene Graphs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36709342",
+ "created_at": "2023-07-13T14:05:01Z"
+ }
+ ],
+ "top_points": 41,
+ "total_points": 42,
+ "total_comments": 71
+}
+\ No newline at end of file
diff --git a/papers/projdevbench-end-to-end-2026/hn.json b/papers/projdevbench-end-to-end-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/projecteval-benchmark-programming-2025/hn.json b/papers/projecteval-benchmark-programming-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39659383",
+ "title": "My Favorite Math Jokes",
+ "points": 19,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=39659383",
+ "created_at": "2024-03-10T14:28:27Z"
+ },
+ {
+ "hn_id": "44535358",
+ "title": "WatchWitch: Interoperability, Privacy, and Autonomy for the Apple Watch",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44535358",
+ "created_at": "2025-07-11T18:15:38Z"
+ },
+ {
+ "hn_id": "44286500",
+ "title": "Vision Transformers Don't Need Trained Registers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44286500",
+ "created_at": "2025-06-16T03:59:13Z"
+ },
+ {
+ "hn_id": "44853362",
+ "title": "David Chalmers: Could a Large Language Model Be Conscious?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44853362",
+ "created_at": "2025-08-10T07:11:06Z"
+ },
+ {
+ "hn_id": "44033403",
+ "title": "Optimization of RAG systems using quantization and dimensionality reduction",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44033403",
+ "created_at": "2025-05-19T18:52:47Z"
+ },
+ {
+ "hn_id": "42604396",
+ "title": "LTX-Video: Realtime Video Latent Diffusion",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42604396",
+ "created_at": "2025-01-05T19:42:42Z"
+ },
+ {
+ "hn_id": "39716383",
+ "title": "My Favorite Math Jokes",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39716383",
+ "created_at": "2024-03-15T14:48:58Z"
+ },
+ {
+ "hn_id": "44558835",
+ "title": "WatchWitch: Interoperability, Privacy, and Autonomy for the Apple Watch",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44558835",
+ "created_at": "2025-07-14T11:24:40Z"
+ },
+ {
+ "hn_id": "44538743",
+ "title": "WatchWitch: Interoperability, Privacy, and Autonomy for the Apple Watch",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44538743",
+ "created_at": "2025-07-12T02:16:08Z"
+ },
+ {
+ "hn_id": "39898804",
+ "title": "Umwelt: Accessible Structured Editing of Multimodal Data Representations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39898804",
+ "created_at": "2024-04-01T20:26:04Z"
+ }
+ ],
+ "top_points": 19,
+ "total_points": 46,
+ "total_comments": 19
+}
+\ No newline at end of file
diff --git a/papers/projecttest-projectlevel-llm-2025/hn.json b/papers/projecttest-projectlevel-llm-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "43014573",
+ "title": "Time to act on the risk of efficient personalized text generation",
+ "points": 57,
+ "comments": 34,
+ "url": "https://news.ycombinator.com/item?id=43014573",
+ "created_at": "2025-02-11T16:14:03Z"
+ },
+ {
+ "hn_id": "43057968",
+ "title": "Can We Trust AI Benchmarks? A Review of Current Issues in AI Evaluation",
+ "points": 23,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=43057968",
+ "created_at": "2025-02-15T12:19:48Z"
+ }
+ ],
+ "top_points": 57,
+ "total_points": 80,
+ "total_comments": 38
+}
+\ No newline at end of file
diff --git a/papers/promises-perils-timely-2026/hn.json b/papers/promises-perils-timely-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/prompt-infection-llmtollm-2024/hn.json b/papers/prompt-infection-llmtollm-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "41973952",
+ "title": "Memory-augmented Transformers can implement Linear first-Order Optimization",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41973952",
+ "created_at": "2024-10-28T17:48:17Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-attacks-2024/hn.json b/papers/prompt-injection-attacks-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39479478",
+ "title": "Beyond A*: Better Planning with Transformers",
+ "points": 313,
+ "comments": 120,
+ "url": "https://news.ycombinator.com/item?id=39479478",
+ "created_at": "2024-02-23T11:53:25Z"
+ },
+ {
+ "hn_id": "40143753",
+ "title": "SpaceByte: Towards Deleting Tokenization from Large Language Modeling",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40143753",
+ "created_at": "2024-04-24T12:50:47Z"
+ },
+ {
+ "hn_id": "39487007",
+ "title": "Beyond A*: Better Planning with Transformers via Search Dynamics Bootstrapping",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39487007",
+ "created_at": "2024-02-23T22:34:11Z"
+ },
+ {
+ "hn_id": "26099563",
+ "title": "Audeo: Audio Generation for a Silent Performance Video",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26099563",
+ "created_at": "2021-02-11T08:51:21Z"
+ },
+ {
+ "hn_id": "26080456",
+ "title": "Audeo: Audio Generation for a Silent Performance Video",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=26080456",
+ "created_at": "2021-02-09T17:50:18Z"
+ },
+ {
+ "hn_id": "44276478",
+ "title": "Getting Explicit Instruction Right",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44276478",
+ "created_at": "2025-06-14T13:57:11Z"
+ },
+ {
+ "hn_id": "41568228",
+ "title": "Schrodinger's Memory: Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41568228",
+ "created_at": "2024-09-17T14:55:38Z"
+ },
+ {
+ "hn_id": "39568032",
+ "title": "The Impact of Input Length on the Reasoning Performance of LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39568032",
+ "created_at": "2024-03-01T23:22:22Z"
+ },
+ {
+ "hn_id": "32517249",
+ "title": "Beyond neural scaling laws: beating power law scaling via data pruning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32517249",
+ "created_at": "2022-08-19T03:08:12Z"
+ },
+ {
+ "hn_id": "39297270",
+ "title": "The Case for Co-Designing Model Architectures with Hardware",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39297270",
+ "created_at": "2024-02-08T02:43:38Z"
+ }
+ ],
+ "top_points": 313,
+ "total_points": 337,
+ "total_comments": 121
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-attacks-2025/hn.json b/papers/prompt-injection-attacks-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-attacks-2026-2-2/hn.json b/papers/prompt-injection-attacks-2026-2-2/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "34919908",
+ "title": "Novel Prompt Injection Threats to Application-Integrated Large Language Models",
+ "points": 8,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=34919908",
+ "created_at": "2023-02-24T02:19:58Z"
+ }
+ ],
+ "top_points": 8,
+ "total_points": 8,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-attacks-2026/hn.json b/papers/prompt-injection-attacks-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47150074",
+ "title": "Large-Scale Study of GitHub Pull Requests: How AI Coding Agents Modify Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47150074",
+ "created_at": "2026-02-25T11:15:17Z"
+ },
+ {
+ "hn_id": "46960968",
+ "title": "MiRAGE: Open-source framework for multimodal RAG evaluation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46960968",
+ "created_at": "2026-02-10T15:24:52Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-chatbot-plugins-2025/hn.json b/papers/prompt-injection-chatbot-plugins-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "46354773",
+ "title": "On the Existence, Impact, and Origin of Hallucination-Associated Neurons in LLMs",
+ "points": 30,
+ "comments": 44,
+ "url": "https://news.ycombinator.com/item?id=46354773",
+ "created_at": "2025-12-22T15:16:18Z"
+ },
+ {
+ "hn_id": "33231958",
+ "title": "Global Convergence of Hessenberg Shifted QR I: Dynamics",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33231958",
+ "created_at": "2022-10-17T11:07:48Z"
+ },
+ {
+ "hn_id": "42310113",
+ "title": "LLMs as Method Actors: A Model for Prompt Engineering and Architecture",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42310113",
+ "created_at": "2024-12-03T19:20:33Z"
+ },
+ {
+ "hn_id": "42867098",
+ "title": "Small Language Models for Document Layout Generation and Classification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42867098",
+ "created_at": "2025-01-29T16:28:25Z"
+ },
+ {
+ "hn_id": "42694008",
+ "title": "Multiagent Finetuning: Self Improvement with Diverse Reasoning Chains",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42694008",
+ "created_at": "2025-01-14T05:29:27Z"
+ }
+ ],
+ "top_points": 30,
+ "total_points": 40,
+ "total_comments": 45
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-llm-apps-2023/hn.json b/papers/prompt-injection-llm-apps-2023/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "35835797",
+ "title": "AutoML-GPT: Automatic Machine Learning with GPT",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35835797",
+ "created_at": "2023-05-05T22:19:54Z"
+ },
+ {
+ "hn_id": "34794465",
+ "title": "Heckerthoughts",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34794465",
+ "created_at": "2023-02-14T19:16:43Z"
+ },
+ {
+ "hn_id": "35143106",
+ "title": "802.11az Indoor Positioning with MmWave",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35143106",
+ "created_at": "2023-03-13T21:33:18Z"
+ },
+ {
+ "hn_id": "35129690",
+ "title": "Verus: Verifying Rust Programs Using Linear Ghost Types (Extended Version)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35129690",
+ "created_at": "2023-03-13T01:52:17Z"
+ },
+ {
+ "hn_id": "35128733",
+ "title": "Heckerthoughts",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35128733",
+ "created_at": "2023-03-13T00:19:34Z"
+ },
+ {
+ "hn_id": "35094653",
+ "title": "Mark My Words: Dangers of Watermarked Images in ImageNet",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35094653",
+ "created_at": "2023-03-10T14:27:56Z"
+ },
+ {
+ "hn_id": "36314152",
+ "title": "Evaluating the Social Impact of Generative AI on Systems and Society",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36314152",
+ "created_at": "2023-06-13T18:05:03Z"
+ },
+ {
+ "hn_id": "39112452",
+ "title": "Efficient Quantum Circuit Design with a Standard Cell Approach",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39112452",
+ "created_at": "2024-01-24T01:24:51Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 16,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/prompt-injection-tool-selection-2025/hn.json b/papers/prompt-injection-tool-selection-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40220851",
+ "title": "Better and Faster Large Language Models via Multi-Token Prediction",
+ "points": 302,
+ "comments": 128,
+ "url": "https://news.ycombinator.com/item?id=40220851",
+ "created_at": "2024-05-01T08:28:18Z"
+ },
+ {
+ "hn_id": "45114579",
+ "title": "The wall confronting large language models",
+ "points": 172,
+ "comments": 200,
+ "url": "https://news.ycombinator.com/item?id=45114579",
+ "created_at": "2025-09-03T11:40:41Z"
+ },
+ {
+ "hn_id": "40219265",
+ "title": "Iterative reasoning preference optimization",
+ "points": 19,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=40219265",
+ "created_at": "2024-05-01T03:40:13Z"
+ },
+ {
+ "hn_id": "44808368",
+ "title": "The wall confronting large language models",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44808368",
+ "created_at": "2025-08-06T06:21:39Z"
+ },
+ {
+ "hn_id": "44313278",
+ "title": "S1: Simple Test-Time Scaling",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44313278",
+ "created_at": "2025-06-18T21:06:55Z"
+ },
+ {
+ "hn_id": "44438536",
+ "title": "CoVE: Compressed Vocabulary Expansion Makes Better LLM-Based Recommender Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44438536",
+ "created_at": "2025-07-01T22:29:49Z"
+ },
+ {
+ "hn_id": "43005221",
+ "title": "s1: Simple Test-Time Scaling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43005221",
+ "created_at": "2025-02-10T21:13:00Z"
+ },
+ {
+ "hn_id": "42979455",
+ "title": "Test-time scaling new approach: extra test-time compute improves LLM reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42979455",
+ "created_at": "2025-02-08T01:23:41Z"
+ },
+ {
+ "hn_id": "40232289",
+ "title": "Iterative Reasoning Preference Optimization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40232289",
+ "created_at": "2024-05-02T03:00:59Z"
+ },
+ {
+ "hn_id": "40224719",
+ "title": "Iterative Reasoning Preference Optimization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40224719",
+ "created_at": "2024-05-01T15:32:22Z"
+ }
+ ],
+ "top_points": 302,
+ "total_points": 511,
+ "total_comments": 333
+}
+\ No newline at end of file
diff --git a/papers/prompt-less-smile-2025/hn.json b/papers/prompt-less-smile-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "46788310",
+ "title": "Attention Is Not What You Need",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46788310",
+ "created_at": "2026-01-27T22:51:54Z"
+ },
+ {
+ "hn_id": "46801602",
+ "title": "Attention Is Not What You Need",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=46801602",
+ "created_at": "2026-01-28T21:13:30Z"
+ },
+ {
+ "hn_id": "46479280",
+ "title": "Attention Is Not What You Need",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46479280",
+ "created_at": "2026-01-03T17:32:40Z"
+ },
+ {
+ "hn_id": "46396103",
+ "title": "Attention Is Not What You Need: Grassmann Flows as an Attention-Free Alternative",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46396103",
+ "created_at": "2025-12-26T20:51:05Z"
+ },
+ {
+ "hn_id": "46180640",
+ "title": "Building Browser Agents: Architecture, Security, and Practical Solutions",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46180640",
+ "created_at": "2025-12-07T10:17:38Z"
+ },
+ {
+ "hn_id": "46311266",
+ "title": "Tiny-TSM: Efficiently Training a Lightweight SOTA Time Series Foundation Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46311266",
+ "created_at": "2025-12-18T11:07:07Z"
+ },
+ {
+ "hn_id": "45614170",
+ "title": "Qwen3Guard Technical Report",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45614170",
+ "created_at": "2025-10-17T07:37:50Z"
+ },
+ {
+ "hn_id": "42742193",
+ "title": "Conducting High Frequency Radio SETI Using Alma",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42742193",
+ "created_at": "2025-01-17T19:20:32Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 18,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/prompt-perturbation-fraction-2025/hn.json b/papers/prompt-perturbation-fraction-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "42521718",
+ "title": "Invariants: Computation and Applications",
+ "points": 47,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42521718",
+ "created_at": "2024-12-27T12:51:44Z"
+ },
+ {
+ "hn_id": "45721160",
+ "title": "EntropyLong: Effective Long-Context Training via Predictive Uncertainty",
+ "points": 15,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45721160",
+ "created_at": "2025-10-27T14:04:48Z"
+ },
+ {
+ "hn_id": "38806533",
+ "title": "Swags: Sampling Windows Adaptively for Dynamic 3D Gaussian Splatting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38806533",
+ "created_at": "2023-12-29T16:15:16Z"
+ },
+ {
+ "hn_id": "10787968",
+ "title": "Abusing Phone Numbers and Cross-Application Features for Targeted Attacks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10787968",
+ "created_at": "2015-12-24T12:37:08Z"
+ }
+ ],
+ "top_points": 47,
+ "total_points": 66,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/prompt-variability-effects-2025/hn.json b/papers/prompt-variability-effects-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "29726112",
+ "title": "Nassim Taleb: Bitcoin, Currencies, and Fragility [pdf]",
+ "points": 88,
+ "comments": 110,
+ "url": "https://news.ycombinator.com/item?id=29726112",
+ "created_at": "2021-12-29T16:11:43Z"
+ },
+ {
+ "hn_id": "43077074",
+ "title": "Step-Video-T2V: The Practice, Challenges, and Future of Video Foundation Model",
+ "points": 41,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=43077074",
+ "created_at": "2025-02-17T09:54:46Z"
+ },
+ {
+ "hn_id": "27584167",
+ "title": "DeDLOC – Distributed Deep Learning in Open Collaborations",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27584167",
+ "created_at": "2021-06-21T20:41:27Z"
+ },
+ {
+ "hn_id": "44002385",
+ "title": "Community Fact-Checks Do Not Break Follower Loyalty",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44002385",
+ "created_at": "2025-05-16T06:35:29Z"
+ },
+ {
+ "hn_id": "27575557",
+ "title": "Distributed Deep Learning in Open Collaborations",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27575557",
+ "created_at": "2021-06-21T01:57:21Z"
+ },
+ {
+ "hn_id": "28454986",
+ "title": "Bitcoin, Currencies, and Fragility",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28454986",
+ "created_at": "2021-09-08T09:44:31Z"
+ },
+ {
+ "hn_id": "44105816",
+ "title": "Seamless acceleration of Fortran intrinsics via AMD AI engines",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44105816",
+ "created_at": "2025-05-27T11:19:12Z"
+ },
+ {
+ "hn_id": "43847316",
+ "title": "EDGS: Eliminating Densification for Efficient Convergence of 3DGS",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43847316",
+ "created_at": "2025-04-30T16:16:24Z"
+ },
+ {
+ "hn_id": "40766830",
+ "title": "Indicators of the Human Origin of Numbers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40766830",
+ "created_at": "2024-06-23T12:07:55Z"
+ },
+ {
+ "hn_id": "31894669",
+ "title": "Protecting President Zelenskyy Against Deep Fakes",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31894669",
+ "created_at": "2022-06-27T13:58:39Z"
+ }
+ ],
+ "top_points": 88,
+ "total_points": 152,
+ "total_comments": 115
+}
+\ No newline at end of file
diff --git a/papers/promptarmor-simple-yet-2025/hn.json b/papers/promptarmor-simple-yet-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36881989",
+ "title": "BasicBlocker: ISA Redesign to Make Spectre-Immune CPUs Faster (2021)",
+ "points": 52,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=36881989",
+ "created_at": "2023-07-26T17:55:38Z"
+ },
+ {
+ "hn_id": "41085077",
+ "title": "Recursive Introspection: Teaching Language Model Agents How to Self-Improve",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41085077",
+ "created_at": "2024-07-27T07:45:48Z"
+ },
+ {
+ "hn_id": "24042644",
+ "title": "BasicBlocker: Redesigning ISAs to Eliminate Speculative-Execution Attacks",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24042644",
+ "created_at": "2020-08-03T20:01:37Z"
+ },
+ {
+ "hn_id": "47002668",
+ "title": "LLMs exceed physicians on complex text-based differential diagnosis",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=47002668",
+ "created_at": "2026-02-13T13:48:36Z"
+ },
+ {
+ "hn_id": "45534337",
+ "title": "Advancing medical artificial intelligence using a century of cases",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45534337",
+ "created_at": "2025-10-10T00:15:46Z"
+ },
+ {
+ "hn_id": "45300655",
+ "title": "Generalizable Geometric Image Caption Synthesis",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45300655",
+ "created_at": "2025-09-19T12:05:01Z"
+ },
+ {
+ "hn_id": "43425030",
+ "title": "Closing the Chain: How to reduce your risk of being SolarWinds, Log4j, XZ Utils",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43425030",
+ "created_at": "2025-03-20T16:01:05Z"
+ },
+ {
+ "hn_id": "36942453",
+ "title": "Open Problems and Fundamental Limitations of RLHF",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36942453",
+ "created_at": "2023-07-31T13:52:09Z"
+ },
+ {
+ "hn_id": "44324675",
+ "title": "ProtoReasoning: Prototypes as the Foundation for Generalizable Reasoning in LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44324675",
+ "created_at": "2025-06-20T04:10:28Z"
+ },
+ {
+ "hn_id": "43871863",
+ "title": "Does Functional Package Management Enable Reproducible Builds at Scale? Yes. [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43871863",
+ "created_at": "2025-05-02T16:28:18Z"
+ }
+ ],
+ "top_points": 52,
+ "total_points": 79,
+ "total_comments": 35
+}
+\ No newline at end of file
diff --git a/papers/prompting-programming-query-2022/hn.json b/papers/prompting-programming-query-2022/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "36326766",
+ "title": "Prompting Is Programming: A Query Language for Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36326766",
+ "created_at": "2023-06-14T14:43:09Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/prompts-first-precision-2025/hn.json b/papers/prompts-first-precision-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/proof-time-benchmark-2026/hn.json b/papers/proof-time-benchmark-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46598155",
+ "title": "Why Slop Matters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46598155",
+ "created_at": "2026-01-13T07:22:01Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/protect-llm-agent-2025/hn.json b/papers/protect-llm-agent-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43460455",
+ "title": "Every Flop Counts: Scaling a 300B LLM Without Premium GPUs",
+ "points": 117,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=43460455",
+ "created_at": "2025-03-24T12:48:16Z"
+ },
+ {
+ "hn_id": "40659322",
+ "title": "Accessing Math Solutions via Monte Carlo Self-Refine with LLaMa-3 8B",
+ "points": 100,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=40659322",
+ "created_at": "2024-06-12T15:38:45Z"
+ },
+ {
+ "hn_id": "43031298",
+ "title": "The Curse of Depth in Large Language Models",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43031298",
+ "created_at": "2025-02-13T00:15:24Z"
+ },
+ {
+ "hn_id": "43477150",
+ "title": "Scaling a 300B Mixture-of-Experts LING LLM Without Premium GPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43477150",
+ "created_at": "2025-03-25T23:21:21Z"
+ },
+ {
+ "hn_id": "43090350",
+ "title": "The Curse of Depth in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43090350",
+ "created_at": "2025-02-18T15:08:24Z"
+ },
+ {
+ "hn_id": "43016968",
+ "title": "The Curse of Depth in Large Language Models [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43016968",
+ "created_at": "2025-02-11T19:12:07Z"
+ },
+ {
+ "hn_id": "36302185",
+ "title": "Instruction Tuned Models Are Quick Learners",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36302185",
+ "created_at": "2023-06-12T22:28:08Z"
+ },
+ {
+ "hn_id": "27471715",
+ "title": "Basins with Tentacles",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27471715",
+ "created_at": "2021-06-11T11:08:17Z"
+ },
+ {
+ "hn_id": "44388100",
+ "title": "Gen4D: Synthesizing Humans and Scenes in the Wild",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44388100",
+ "created_at": "2025-06-26T14:58:56Z"
+ },
+ {
+ "hn_id": "41135921",
+ "title": "Ask HN: Research Papers on Prompt Engineering?",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=41135921",
+ "created_at": "2024-08-02T03:40:53Z"
+ }
+ ],
+ "top_points": 117,
+ "total_points": 233,
+ "total_comments": 20
+}
+\ No newline at end of file
diff --git a/papers/proteus-slaaware-routing-2026/hn.json b/papers/proteus-slaaware-routing-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/proververifier-games-improve-2024/hn.json b/papers/proververifier-games-improve-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41148160",
+ "title": "Prover-Verifier Games improve legibility of LLM outputs",
+ "points": 53,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=41148160",
+ "created_at": "2024-08-03T18:05:36Z"
+ },
+ {
+ "hn_id": "39811260",
+ "title": "Explorer: Exploration-Guided Reasoning for Textual Reinforcement Learning",
+ "points": 25,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39811260",
+ "created_at": "2024-03-24T22:53:25Z"
+ },
+ {
+ "hn_id": "45658172",
+ "title": "Prompt Baking",
+ "points": 8,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45658172",
+ "created_at": "2025-10-21T16:58:16Z"
+ },
+ {
+ "hn_id": "39418700",
+ "title": "ARB: Advanced Reasoning Benchmark For Large Language Models (2023)",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39418700",
+ "created_at": "2024-02-18T13:03:33Z"
+ },
+ {
+ "hn_id": "41391255",
+ "title": "Choosing the \"Brain\" for your AI-powered app – My new method, feedback requested",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41391255",
+ "created_at": "2024-08-29T14:37:34Z"
+ },
+ {
+ "hn_id": "42987447",
+ "title": "Total cost of ownership of Google cloud resources for ATLAS at the LHC (2024)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42987447",
+ "created_at": "2025-02-09T00:34:49Z"
+ },
+ {
+ "hn_id": "41777249",
+ "title": "You Only Use Reactive Attention Slice for Long Context Retrieval",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41777249",
+ "created_at": "2024-10-08T13:39:12Z"
+ },
+ {
+ "hn_id": "41428028",
+ "title": "Enhancing Autism Spectrum Disorder Early Detection with xLSTM",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41428028",
+ "created_at": "2024-09-02T19:12:57Z"
+ },
+ {
+ "hn_id": "36783931",
+ "title": "Becoming self-instruct: early stopping criteria for instruct tuning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36783931",
+ "created_at": "2023-07-19T09:33:34Z"
+ },
+ {
+ "hn_id": "40479171",
+ "title": "Some models are useful, but for how long?: When to refit prediction models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40479171",
+ "created_at": "2024-05-26T01:37:40Z"
+ }
+ ],
+ "top_points": 53,
+ "total_points": 100,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/psychometric-personality-shaping-2025/hn.json b/papers/psychometric-personality-shaping-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "43540413",
+ "title": "Show HN: CVE-Bench, the first LLM benchmark using real-world web vulnerabilities",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43540413",
+ "created_at": "2025-03-31T21:56:45Z"
+ },
+ {
+ "hn_id": "43819670",
+ "title": "LinPrim: Linear Primitives for Differentiable Volumetric Rendering",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43819670",
+ "created_at": "2025-04-28T10:32:53Z"
+ },
+ {
+ "hn_id": "43444889",
+ "title": "Difference-in-Differences Designs: A Practitioner's Guide",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43444889",
+ "created_at": "2025-03-22T10:53:58Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 11,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/pyramid-moa-probabilistic-2026/hn.json b/papers/pyramid-moa-probabilistic-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/quantization-model-neural-2023/hn.json b/papers/quantization-model-neural-2023/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46634035",
+ "title": "Can LLMs Express Their Uncertainty? Not Really",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46634035",
+ "created_at": "2026-01-15T15:37:42Z"
+ },
+ {
+ "hn_id": "39846254",
+ "title": "Reconstructing Scenes with an Autoregressive Structured Language Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39846254",
+ "created_at": "2024-03-28T00:12:21Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/qwen25-technical-report-2024/hn.json b/papers/qwen25-technical-report-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "40934608",
+ "title": "A relativistic framework to establish coordinate time on the Moon and beyond",
+ "points": 130,
+ "comments": 72,
+ "url": "https://news.ycombinator.com/item?id=40934608",
+ "created_at": "2024-07-11T08:11:36Z"
+ },
+ {
+ "hn_id": "42561512",
+ "title": "Re-Bench: Evaluating ML agents against human ML experts",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42561512",
+ "created_at": "2024-12-31T20:19:14Z"
+ },
+ {
+ "hn_id": "46363503",
+ "title": "Layout-Aware Text Editing for Efficient Conversion of Academic PDFs to Markdown",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46363503",
+ "created_at": "2025-12-23T08:26:53Z"
+ },
+ {
+ "hn_id": "41941601",
+ "title": "Point Cloud Compression with Bits-Back Coding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41941601",
+ "created_at": "2024-10-25T01:51:49Z"
+ },
+ {
+ "hn_id": "40524589",
+ "title": "A Relativistic Framework to Establish Coordinate Time on the Moon and Beyond",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40524589",
+ "created_at": "2024-05-30T15:01:26Z"
+ }
+ ],
+ "top_points": 130,
+ "total_points": 135,
+ "total_comments": 73
+}
+\ No newline at end of file
diff --git a/papers/qwen25coder-technical-report-2024/hn.json b/papers/qwen25coder-technical-report-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40479660",
+ "title": "Phobos photometric properties from Mars Express HRSC observations",
+ "points": 14,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40479660",
+ "created_at": "2024-05-26T03:49:33Z"
+ },
+ {
+ "hn_id": "40490632",
+ "title": "Berkeley researchers discover a suspiciously military-relevant Chinese dataset",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40490632",
+ "created_at": "2024-05-27T13:42:31Z"
+ },
+ {
+ "hn_id": "40603853",
+ "title": "Analyzing Chinese Naval Targeting Models in the Open Source",
+ "points": 9,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40603853",
+ "created_at": "2024-06-06T23:56:59Z"
+ },
+ {
+ "hn_id": "42110236",
+ "title": "Qwen2.5-Coder Technical Report",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42110236",
+ "created_at": "2024-11-11T20:36:54Z"
+ },
+ {
+ "hn_id": "41020207",
+ "title": "Building AI Agents for Autonomous Clouds: Challenges and Design Principles",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41020207",
+ "created_at": "2024-07-20T21:40:34Z"
+ },
+ {
+ "hn_id": "42258289",
+ "title": "A Survey on Employing Large Language Models for Text-to-SQL Tasks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258289",
+ "created_at": "2024-11-27T18:17:00Z"
+ },
+ {
+ "hn_id": "41608942",
+ "title": "Qwen2.5-Coder Technical Report",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41608942",
+ "created_at": "2024-09-21T10:17:37Z"
+ },
+ {
+ "hn_id": "41732123",
+ "title": "To CoT or not? Chain-of-thought helps mainly on math and symbolic reasoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41732123",
+ "created_at": "2024-10-03T16:18:57Z"
+ },
+ {
+ "hn_id": "41656862",
+ "title": "Chain-of-thought helps mainly on math and symbolic reasoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41656862",
+ "created_at": "2024-09-26T10:54:14Z"
+ },
+ {
+ "hn_id": "41599628",
+ "title": "To CoT or not to CoT? Chain-of-thought helps on math and symbolic reasoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41599628",
+ "created_at": "2024-09-20T07:20:47Z"
+ }
+ ],
+ "top_points": 14,
+ "total_points": 47,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/r2router-new-paradigm-2026/hn.json b/papers/r2router-new-paradigm-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/ral2m-retrieval-augmented-2026/hn.json b/papers/ral2m-retrieval-augmented-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/ramon-llulls-thinking-2025/hn.json b/papers/ramon-llulls-thinking-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "42919597",
+ "title": "Efficient Reasoning with Hidden Thinking",
+ "points": 172,
+ "comments": 43,
+ "url": "https://news.ycombinator.com/item?id=42919597",
+ "created_at": "2025-02-03T16:06:48Z"
+ },
+ {
+ "hn_id": "35268898",
+ "title": "Fat Pointers for Temporal Memory Safety in C",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35268898",
+ "created_at": "2023-03-23T00:14:34Z"
+ },
+ {
+ "hn_id": "44768359",
+ "title": "Robotic Hand for Multimodal Observations with Thermal, Inertial, Force Sensors",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44768359",
+ "created_at": "2025-08-02T15:21:42Z"
+ },
+ {
+ "hn_id": "44443760",
+ "title": "Your Language Model Can Handle Non-Canonical Tokenizations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44443760",
+ "created_at": "2025-07-02T13:53:44Z"
+ },
+ {
+ "hn_id": "43503479",
+ "title": "The Quantum Technology Job Market: A Quantitative Investigation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43503479",
+ "created_at": "2025-03-28T10:05:27Z"
+ }
+ ],
+ "top_points": 172,
+ "total_points": 181,
+ "total_comments": 43
+}
+\ No newline at end of file
diff --git a/papers/random-scaling-emergent-2025/hn.json b/papers/random-scaling-emergent-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43171463",
+ "title": "Beyond NISQ: The Megaquop Machine",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43171463",
+ "created_at": "2025-02-25T13:21:24Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rankllm-python-package-2025/hn.json b/papers/rankllm-python-package-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "44381292",
+ "title": "Building a Monostable Tetrahedron",
+ "points": 41,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=44381292",
+ "created_at": "2025-06-25T20:00:38Z"
+ },
+ {
+ "hn_id": "45645528",
+ "title": "Show HN: Visual autocomplete for drawings (real-time Human-AI interaction)",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45645528",
+ "created_at": "2025-10-20T16:09:00Z"
+ },
+ {
+ "hn_id": "45161642",
+ "title": "Tricking LLM-Based NPCs into Spilling Secrets",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45161642",
+ "created_at": "2025-09-07T20:02:05Z"
+ },
+ {
+ "hn_id": "36142266",
+ "title": "NetHack Is Hard to Hack",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36142266",
+ "created_at": "2023-05-31T18:46:53Z"
+ },
+ {
+ "hn_id": "44503369",
+ "title": "Monostable Tetrahedron",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44503369",
+ "created_at": "2025-07-08T19:46:42Z"
+ },
+ {
+ "hn_id": "44711345",
+ "title": "Transfinite Fixed Points in Alpay Algebra as Ordinal Game Equilibria in Depen",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44711345",
+ "created_at": "2025-07-28T14:40:55Z"
+ },
+ {
+ "hn_id": "38082100",
+ "title": "Grammar Prompting for Domain-Specific Language Generation with LLMs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38082100",
+ "created_at": "2023-10-31T09:19:36Z"
+ },
+ {
+ "hn_id": "43877098",
+ "title": "Sentiment Analysis on the perception about the mobile Internet costs in Senegal",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43877098",
+ "created_at": "2025-05-03T05:46:01Z"
+ }
+ ],
+ "top_points": 41,
+ "total_points": 55,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/raudit-blind-auditing-2026/hn.json b/papers/raudit-blind-auditing-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46830595",
+ "title": "Qwen3-ASR Technical Report",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46830595",
+ "created_at": "2026-01-30T22:05:00Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 7,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/react-synergizing-reasoning-2022/hn.json b/papers/react-synergizing-reasoning-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37862039",
+ "title": "PeaTMOSS: Mining Pre-Trained Models in Open-Source Software",
+ "points": 23,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37862039",
+ "created_at": "2023-10-12T19:35:57Z"
+ },
+ {
+ "hn_id": "42333823",
+ "title": "Show HN: Data Connector – Chat with Your Database and APIs",
+ "points": 17,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42333823",
+ "created_at": "2024-12-05T23:00:20Z"
+ },
+ {
+ "hn_id": "38871141",
+ "title": "Do Users Write More Insecure Code with AI Assistants?",
+ "points": 5,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=38871141",
+ "created_at": "2024-01-04T19:25:41Z"
+ },
+ {
+ "hn_id": "35085425",
+ "title": "Study: Do Users Write More Insecure Code with AI Assistants?",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35085425",
+ "created_at": "2023-03-09T19:22:52Z"
+ },
+ {
+ "hn_id": "33645522",
+ "title": "Do Users Write More Insecure Code with AI Assistants?",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33645522",
+ "created_at": "2022-11-17T20:54:54Z"
+ },
+ {
+ "hn_id": "42535956",
+ "title": "ReAct: Synergizing Reasoning and Acting in Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42535956",
+ "created_at": "2024-12-28T23:45:41Z"
+ },
+ {
+ "hn_id": "47021638",
+ "title": "To ReAct or not to ReAct?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47021638",
+ "created_at": "2026-02-15T06:57:48Z"
+ },
+ {
+ "hn_id": "40394226",
+ "title": "ReAct: Synergizing Reasoning and Acting in Language Models (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40394226",
+ "created_at": "2024-05-17T21:06:58Z"
+ },
+ {
+ "hn_id": "34671297",
+ "title": "ReAct – interesting paper on LLM prompt engineering",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34671297",
+ "created_at": "2023-02-06T00:00:01Z"
+ },
+ {
+ "hn_id": "34211951",
+ "title": "ReAct: Synergizing Reasoning and Acting in Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34211951",
+ "created_at": "2023-01-01T22:53:27Z"
+ }
+ ],
+ "top_points": 23,
+ "total_points": 60,
+ "total_comments": 8
+}
+\ No newline at end of file
diff --git a/papers/realist-pluralist-conceptions-2025/hn.json b/papers/realist-pluralist-conceptions-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "46332231",
+ "title": "GEMM Performance Optimization Across Generations of Ryzen AI NPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46332231",
+ "created_at": "2025-12-19T23:35:15Z"
+ },
+ {
+ "hn_id": "45822499",
+ "title": "Production and Manufacturing of 3D Printed Acoustic Guitars",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45822499",
+ "created_at": "2025-11-05T13:15:34Z"
+ },
+ {
+ "hn_id": "46707683",
+ "title": "Human-Like Working Memory from Artificial Intrinsic Plasticity Neurons",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46707683",
+ "created_at": "2026-01-21T16:12:56Z"
+ },
+ {
+ "hn_id": "46559316",
+ "title": "Auto-Tuning Safety Guardrails for Black-Box Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46559316",
+ "created_at": "2026-01-09T21:05:38Z"
+ },
+ {
+ "hn_id": "38444655",
+ "title": "GeoChat: Grounded Large Vision-Language Model for Remote Sensing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38444655",
+ "created_at": "2023-11-28T11:26:59Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 7,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/reasoning-large-language-2023/hn.json b/papers/reasoning-large-language-2023/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/reasoning-runtime-behavior-2024/hn.json b/papers/reasoning-runtime-behavior-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "39252249",
+ "title": "Characterizing and Recovering Information Loss in Text Simplification",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39252249",
+ "created_at": "2024-02-04T17:25:22Z"
+ },
+ {
+ "hn_id": "35502828",
+ "title": "Completing Tasks by Connecting Foundation Models with Millions of APIs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35502828",
+ "created_at": "2023-04-09T14:04:00Z"
+ },
+ {
+ "hn_id": "35383096",
+ "title": "Taskmatrix.ai: Completing Tasks Using Foundation Models with Millions of APIs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35383096",
+ "created_at": "2023-03-31T05:46:05Z"
+ },
+ {
+ "hn_id": "35378281",
+ "title": "Completing Tasks by Connecting Foundation Models with Millions of APIs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35378281",
+ "created_at": "2023-03-30T20:15:54Z"
+ },
+ {
+ "hn_id": "41730209",
+ "title": "Algorithmic Drift: The Effects of Recommender Systems on User Preferences",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41730209",
+ "created_at": "2024-10-03T12:41:17Z"
+ },
+ {
+ "hn_id": "39296402",
+ "title": "ReGAL: Refactoring Programs to Discover Generalizable Abstractions",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39296402",
+ "created_at": "2024-02-08T00:46:54Z"
+ },
+ {
+ "hn_id": "35412785",
+ "title": "Taskmatrix.ai: Completing Tasks by Connecting Foundation Models with APIs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35412785",
+ "created_at": "2023-04-02T17:16:16Z"
+ },
+ {
+ "hn_id": "22758168",
+ "title": "Infostop: Scalable stop-location detection in multi-user mobility data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22758168",
+ "created_at": "2020-04-02T12:17:16Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 19,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rebench-evaluating-frontier-2024/hn.json b/papers/rebench-evaluating-frontier-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "42495703",
+ "title": "Supernovae Evidence for Foundational Change to Cosmological Models",
+ "points": 107,
+ "comments": 74,
+ "url": "https://news.ycombinator.com/item?id=42495703",
+ "created_at": "2024-12-23T16:44:28Z"
+ },
+ {
+ "hn_id": "42561512",
+ "title": "Re-Bench: Evaluating ML agents against human ML experts",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42561512",
+ "created_at": "2024-12-31T20:19:14Z"
+ },
+ {
+ "hn_id": "42887216",
+ "title": "Tulu 3: Pushing Frontiers in Open Language Model Post-Training",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42887216",
+ "created_at": "2025-01-31T12:59:43Z"
+ },
+ {
+ "hn_id": "33747476",
+ "title": "Step Counting with Attention-Based LSTM",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33747476",
+ "created_at": "2022-11-25T22:24:25Z"
+ },
+ {
+ "hn_id": "42496475",
+ "title": "Unveiling the Mechanisms of DAI: A Logic-Based Approach to Stablecoin Analysis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42496475",
+ "created_at": "2024-12-23T18:25:11Z"
+ }
+ ],
+ "top_points": 107,
+ "total_points": 114,
+ "total_comments": 76
+}
+\ No newline at end of file
diff --git a/papers/reducing-hallucinations-llmgenerated-2025/hn.json b/papers/reducing-hallucinations-llmgenerated-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46099108",
+ "title": "Program-of-Thought Prompting Outperforms Chain-of-Thought by 15% (2022)",
+ "points": 136,
+ "comments": 36,
+ "url": "https://news.ycombinator.com/item?id=46099108",
+ "created_at": "2025-11-30T18:34:52Z"
+ }
+ ],
+ "top_points": 136,
+ "total_points": 136,
+ "total_comments": 36
+}
+\ No newline at end of file
diff --git a/papers/refinestat-efficient-exploration-2025/hn.json b/papers/refinestat-efficient-exploration-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45553577",
+ "title": "Meta Superintelligence Labs' first paper is about RAG",
+ "points": 423,
+ "comments": 271,
+ "url": "https://news.ycombinator.com/item?id=45553577",
+ "created_at": "2025-10-11T23:16:05Z"
+ },
+ {
+ "hn_id": "44502527",
+ "title": "Dynamical origin of Theia, the last giant impactor on Earth",
+ "points": 96,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=44502527",
+ "created_at": "2025-07-08T18:10:46Z"
+ },
+ {
+ "hn_id": "36872139",
+ "title": "Generation of MT magnetic fields by intense-laser-driven microtube implosions",
+ "points": 36,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36872139",
+ "created_at": "2023-07-26T01:41:49Z"
+ },
+ {
+ "hn_id": "24405884",
+ "title": "Using Tree Neural Networks in Proof-Assistant HOL4",
+ "points": 15,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24405884",
+ "created_at": "2020-09-08T07:04:15Z"
+ },
+ {
+ "hn_id": "45213397",
+ "title": "Refrag: Rethinking RAG Based Decoding",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45213397",
+ "created_at": "2025-09-11T16:22:46Z"
+ },
+ {
+ "hn_id": "45164490",
+ "title": "Refrag: Rethinking RAG Based Decoding",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45164490",
+ "created_at": "2025-09-08T03:53:27Z"
+ },
+ {
+ "hn_id": "37402520",
+ "title": "One Wide Feedforward Is All You Need",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37402520",
+ "created_at": "2023-09-06T08:14:03Z"
+ },
+ {
+ "hn_id": "45992137",
+ "title": "Token embeddings violate the manifold hypothesis",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45992137",
+ "created_at": "2025-11-20T13:03:04Z"
+ },
+ {
+ "hn_id": "45586983",
+ "title": "Refrag: Rethinking RAG Based Decoding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45586983",
+ "created_at": "2025-10-15T01:13:32Z"
+ },
+ {
+ "hn_id": "46073193",
+ "title": "Refrag: Rethinking RAG Based Decoding",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46073193",
+ "created_at": "2025-11-27T21:00:11Z"
+ }
+ ],
+ "top_points": 423,
+ "total_points": 589,
+ "total_comments": 322
+}
+\ No newline at end of file
diff --git a/papers/relative-scaling-laws-2025/hn.json b/papers/relative-scaling-laws-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/relativebased-scaling-law-2025/hn.json b/papers/relativebased-scaling-law-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46515987",
+ "title": "Hierarchical Autoregressive Modeling for Memory-Efficient Language Generation",
+ "points": 46,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46515987",
+ "created_at": "2026-01-06T18:02:01Z"
+ },
+ {
+ "hn_id": "38098179",
+ "title": "Unleashing the Power of Pre-Trained LLMs for Offline Reinforcement Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38098179",
+ "created_at": "2023-11-01T13:52:18Z"
+ },
+ {
+ "hn_id": "41993962",
+ "title": "Generator Matching: Generative modeling with arbitrary Markov processes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41993962",
+ "created_at": "2024-10-30T12:04:43Z"
+ }
+ ],
+ "top_points": 46,
+ "total_points": 49,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/relaygen-intrageneration-model-2026/hn.json b/papers/relaygen-intrageneration-model-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rele-scalable-system-2026/hn.json b/papers/rele-scalable-system-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47442194",
+ "title": "Vectorization of Verilog Designs and its Effects on Verification and Synthesis",
+ "points": 32,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=47442194",
+ "created_at": "2026-03-19T16:40:37Z"
+ },
+ {
+ "hn_id": "47478878",
+ "title": "Whole-Brain Connectomic Graph Model Enables Locomotion Control in Fruit Fly",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47478878",
+ "created_at": "2026-03-22T16:00:44Z"
+ }
+ ],
+ "top_points": 32,
+ "total_points": 34,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/reliable-agent-engineering-2025/hn.json b/papers/reliable-agent-engineering-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "38725930",
+ "title": "Astrocyte-Enabled Spiking Neural Networks for Large Language Modeling",
+ "points": 27,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=38725930",
+ "created_at": "2023-12-21T19:56:15Z"
+ },
+ {
+ "hn_id": "11060532",
+ "title": "Probabilistic Programming with Gaussian Process Memoization",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=11060532",
+ "created_at": "2016-02-08T20:07:29Z"
+ }
+ ],
+ "top_points": 27,
+ "total_points": 32,
+ "total_comments": 12
+}
+\ No newline at end of file
diff --git a/papers/reliable-llmbased-edgecloudexpert-2025/hn.json b/papers/reliable-llmbased-edgecloudexpert-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42609595",
+ "title": "Time-Series Anomaly Detection: A Decade Review",
+ "points": 446,
+ "comments": 80,
+ "url": "https://news.ycombinator.com/item?id=42609595",
+ "created_at": "2025-01-06T11:10:01Z"
+ },
+ {
+ "hn_id": "45505462",
+ "title": "BigBang-Proton, Next-Word-Prediction Is Scientific Multitask Learner",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45505462",
+ "created_at": "2025-10-07T16:43:40Z"
+ }
+ ],
+ "top_points": 446,
+ "total_points": 448,
+ "total_comments": 81
+}
+\ No newline at end of file
diff --git a/papers/remote-labor-index-2025/hn.json b/papers/remote-labor-index-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "47008619",
+ "title": "Remote Labor Index: Measuring AI Automation of Remote Work",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47008619",
+ "created_at": "2026-02-13T22:23:03Z"
+ },
+ {
+ "hn_id": "45782607",
+ "title": "Remote Labor Index: Measuring AI Automation of Remote Work",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45782607",
+ "created_at": "2025-11-01T15:48:50Z"
+ },
+ {
+ "hn_id": "45777838",
+ "title": "Defeating the Training-Inference Mismatch via FP16",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45777838",
+ "created_at": "2025-10-31T23:28:08Z"
+ },
+ {
+ "hn_id": "45795402",
+ "title": "Defeating the Training-Inference Mismatch via FP16",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45795402",
+ "created_at": "2025-11-03T02:46:42Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 7,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/repairagent-llm-bug-repair-2024/hn.json b/papers/repairagent-llm-bug-repair-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "26659812",
+ "title": "Research: Self-supervised learning methods are subject to evolutionary pressures",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26659812",
+ "created_at": "2021-04-01T12:52:37Z"
+ },
+ {
+ "hn_id": "40541123",
+ "title": "Compressed-Language Models for Understanding Compressed File Formats: JPEG",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40541123",
+ "created_at": "2024-05-31T22:46:10Z"
+ },
+ {
+ "hn_id": "36096237",
+ "title": "Not yet Another Digital ID: Privacy-Preserving Humanitarian Aid Distribution",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36096237",
+ "created_at": "2023-05-27T16:57:29Z"
+ },
+ {
+ "hn_id": "39546939",
+ "title": "StableLM 1.6B Technical Report – includes all data, training, strategy",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39546939",
+ "created_at": "2024-02-29T06:43:10Z"
+ },
+ {
+ "hn_id": "31280855",
+ "title": "Learning Reusable Robot Movement Skills from Human and Animal Behaviors",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31280855",
+ "created_at": "2022-05-06T03:08:11Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 14,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/repoagent-documentation-2024/hn.json b/papers/repoagent-documentation-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "40251747",
+ "title": "StructLM: Towards Building Generalist Models for Structured Knowledge Grounding",
+ "points": 78,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40251747",
+ "created_at": "2024-05-03T20:01:41Z"
+ }
+ ],
+ "top_points": 78,
+ "total_points": 78,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/requirements-to-code-practices-2025/hn.json b/papers/requirements-to-code-practices-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "32167256",
+ "title": "Securing name resolution in the IoT: DNS over CoAP",
+ "points": 22,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=32167256",
+ "created_at": "2022-07-20T15:34:10Z"
+ },
+ {
+ "hn_id": "44629175",
+ "title": "Machine Bullshit: Characterizing the Emergent Disregard for Truth in LLMs",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44629175",
+ "created_at": "2025-07-20T20:48:20Z"
+ },
+ {
+ "hn_id": "43026894",
+ "title": "We Can't Understand AI Using Our Existing Vocabulary [pdf]",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43026894",
+ "created_at": "2025-02-12T16:27:34Z"
+ },
+ {
+ "hn_id": "44426406",
+ "title": "Mechanistic Interpretability of Emotion Inference in Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44426406",
+ "created_at": "2025-06-30T18:31:45Z"
+ },
+ {
+ "hn_id": "43342729",
+ "title": "VACE: All-in-One Video Creation and Editing from Alibaba",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43342729",
+ "created_at": "2025-03-12T12:58:00Z"
+ },
+ {
+ "hn_id": "44247421",
+ "title": "Mixed-Chip Clusters Enable Efficient Large-Scale AI Training",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44247421",
+ "created_at": "2025-06-11T13:28:31Z"
+ },
+ {
+ "hn_id": "42805043",
+ "title": "The Future of AI: Exploring the Potential of Large Concept Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42805043",
+ "created_at": "2025-01-23T15:41:17Z"
+ },
+ {
+ "hn_id": "42715230",
+ "title": "Imagine While Reasoning in Space: Multimodal Visualization-of-Thought",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42715230",
+ "created_at": "2025-01-15T18:47:39Z"
+ },
+ {
+ "hn_id": "44643330",
+ "title": "Machine Bullshit: Characterizing the Emergent Disregard for Truth in LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44643330",
+ "created_at": "2025-07-22T04:49:47Z"
+ },
+ {
+ "hn_id": "32507478",
+ "title": "Leakage and the Reproducibility Crisis in ML-Based Science",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32507478",
+ "created_at": "2022-08-18T10:13:25Z"
+ }
+ ],
+ "top_points": 22,
+ "total_points": 45,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/researchcodebench-benchmarking-llms-2025/hn.json b/papers/researchcodebench-benchmarking-llms-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "44186607",
+ "title": "Not all tokens are meant to be forgotten",
+ "points": 54,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=44186607",
+ "created_at": "2025-06-04T23:15:48Z"
+ },
+ {
+ "hn_id": "43997113",
+ "title": "An Empirical Study on the Performance and Energy Usage of Compiled Python Code",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43997113",
+ "created_at": "2025-05-15T17:12:36Z"
+ },
+ {
+ "hn_id": "40728907",
+ "title": "Flash Diffusion: Accelerating Any Conditional Diffusion Model",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40728907",
+ "created_at": "2024-06-19T14:56:30Z"
+ },
+ {
+ "hn_id": "40706673",
+ "title": "Neural Thermodynamic Integration: Free Energies from Diffusion Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40706673",
+ "created_at": "2024-06-17T15:34:30Z"
+ },
+ {
+ "hn_id": "39186889",
+ "title": "Quantum delay in the time of arrival of free-falling atoms",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39186889",
+ "created_at": "2024-01-30T06:09:26Z"
+ },
+ {
+ "hn_id": "23456451",
+ "title": "Human mobility and viral transmissibility during Covid-19 in Italy",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23456451",
+ "created_at": "2020-06-08T13:50:04Z"
+ },
+ {
+ "hn_id": "43908546",
+ "title": "Performance and Energy Usage of Compiled Python",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43908546",
+ "created_at": "2025-05-06T19:03:58Z"
+ }
+ ],
+ "top_points": 54,
+ "total_points": 66,
+ "total_comments": 23
+}
+\ No newline at end of file
diff --git a/papers/researchrubrics-benchmark-prompts-2025/hn.json b/papers/researchrubrics-benchmark-prompts-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "45905451",
+ "title": "LLM Output Drift in Financial Workflows: Validation and Mitigation (arXiv)",
+ "points": 24,
+ "comments": 26,
+ "url": "https://news.ycombinator.com/item?id=45905451",
+ "created_at": "2025-11-12T19:53:25Z"
+ },
+ {
+ "hn_id": "46118400",
+ "title": "Intelligence per Watt: Measuring Intelligence Efficiency of Local AI",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46118400",
+ "created_at": "2025-12-02T06:55:58Z"
+ },
+ {
+ "hn_id": "38287654",
+ "title": "Mart: Improving LLM Safety with Multi-Round Automatic Red-Teaming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38287654",
+ "created_at": "2023-11-16T10:04:01Z"
+ },
+ {
+ "hn_id": "38285475",
+ "title": "Bring Your Own KG: Self-Supervised Program Synthesis for Zero-Shot KGQA",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38285475",
+ "created_at": "2023-11-16T03:11:23Z"
+ },
+ {
+ "hn_id": "38282521",
+ "title": "Mart: Improving LLM Safety with Multi-Round Automatic Red-Teaming",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38282521",
+ "created_at": "2023-11-15T21:09:22Z"
+ }
+ ],
+ "top_points": 24,
+ "total_points": 32,
+ "total_comments": 26
+}
+\ No newline at end of file
diff --git a/papers/reshaping-higher-education-2025/hn.json b/papers/reshaping-higher-education-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/resourceefficient-multimodal-intelligence-2025/hn.json b/papers/resourceefficient-multimodal-intelligence-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "10978787",
+ "title": "Facebook's AI to make computesr play GO better",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10978787",
+ "created_at": "2016-01-27T07:36:22Z"
+ },
+ {
+ "hn_id": "42657501",
+ "title": "The GAN is dead; long live the GAN - A Modern GAN Baseline",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42657501",
+ "created_at": "2025-01-10T17:07:45Z"
+ },
+ {
+ "hn_id": "10685500",
+ "title": "Better Computer Go Player with Neural Network and Long-Term Prediction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10685500",
+ "created_at": "2015-12-06T15:46:54Z"
+ },
+ {
+ "hn_id": "42420050",
+ "title": "Evaluating Emerging AI/ML Accelerators: IPU, RDU and Nvidia/AMD GPUs",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42420050",
+ "created_at": "2024-12-14T22:50:55Z"
+ },
+ {
+ "hn_id": "10619192",
+ "title": "EBear: An Expressive Bear-Like Robot",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10619192",
+ "created_at": "2015-11-24T04:58:34Z"
+ }
+ ],
+ "top_points": 9,
+ "total_points": 16,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/responsible-artificial-intelligence-2025/hn.json b/papers/responsible-artificial-intelligence-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "39659473",
+ "title": "SoftTiger: A Clinical Foundation Model for Healthcare Workflows",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39659473",
+ "created_at": "2024-03-10T14:38:11Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rethinking-knowledge-distillation-2025/hn.json b/papers/rethinking-knowledge-distillation-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "44026992",
+ "title": "Direct estimates of irreversibility from time series",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44026992",
+ "created_at": "2025-05-19T06:30:47Z"
+ },
+ {
+ "hn_id": "34536354",
+ "title": "Scalable Adaptive Computation for Iterative Generation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34536354",
+ "created_at": "2023-01-26T18:32:43Z"
+ },
+ {
+ "hn_id": "42574580",
+ "title": "Would You Donate to a Chatbot?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42574580",
+ "created_at": "2025-01-02T14:16:01Z"
+ },
+ {
+ "hn_id": "46311266",
+ "title": "Tiny-TSM: Efficiently Training a Lightweight SOTA Time Series Foundation Model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46311266",
+ "created_at": "2025-12-18T11:07:07Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 11,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/retrievalaugmented-code-generation-2025/hn.json b/papers/retrievalaugmented-code-generation-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45545406",
+ "title": "Impolite LLM prompts consistently outperform polite ones",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45545406",
+ "created_at": "2025-10-11T00:46:19Z"
+ },
+ {
+ "hn_id": "45772418",
+ "title": "Investigating How Prompt Politeness Affects LLM Accuracy",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45772418",
+ "created_at": "2025-10-31T14:36:48Z"
+ },
+ {
+ "hn_id": "33177812",
+ "title": "Ecovisor: A Virtual Energy System for Carbon-Efficient Applications",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33177812",
+ "created_at": "2022-10-12T14:50:30Z"
+ },
+ {
+ "hn_id": "46556726",
+ "title": "Mind Your Tone: Investigating How Prompt Politeness Affects LLM Accuracy",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46556726",
+ "created_at": "2026-01-09T17:54:09Z"
+ },
+ {
+ "hn_id": "45918216",
+ "title": "Rapid-response characterization of near-Earth asteroid 2024 YR4 (Torino Scale 3)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45918216",
+ "created_at": "2025-11-13T18:02:31Z"
+ },
+ {
+ "hn_id": "43149484",
+ "title": "AI and ML Accelerator Survey and Trends (2022)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43149484",
+ "created_at": "2025-02-23T14:33:35Z"
+ },
+ {
+ "hn_id": "42883727",
+ "title": "The Power of Negative Zero: Datatype Customization for Quantized LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42883727",
+ "created_at": "2025-01-31T00:45:25Z"
+ },
+ {
+ "hn_id": "42876488",
+ "title": "Open Problems in Machine Unlearning for AI Safety",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42876488",
+ "created_at": "2025-01-30T10:15:38Z"
+ },
+ {
+ "hn_id": "37927852",
+ "title": "A new distance-based feature set for keystroke dynamics",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37927852",
+ "created_at": "2023-10-18T12:49:49Z"
+ },
+ {
+ "hn_id": "34738091",
+ "title": "Ecovisor: A Virtual Energy System for Carbon-Efficient Applications",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34738091",
+ "created_at": "2023-02-10T10:56:59Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 18,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/retrievalaugmented-generation-multilingual-2024/hn.json b/papers/retrievalaugmented-generation-multilingual-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40515957",
+ "title": "New attention mechanisms that outperform standard multi-head attention",
+ "points": 233,
+ "comments": 49,
+ "url": "https://news.ycombinator.com/item?id=40515957",
+ "created_at": "2024-05-29T19:33:12Z"
+ },
+ {
+ "hn_id": "40624563",
+ "title": "Teams of LLM Agents Can Exploit Zero-Day Vulnerabilities",
+ "points": 105,
+ "comments": 75,
+ "url": "https://news.ycombinator.com/item?id=40624563",
+ "created_at": "2024-06-09T14:15:06Z"
+ },
+ {
+ "hn_id": "41061085",
+ "title": "Avoiding Model Collapse via Accumulating Real and Synthetic Data",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41061085",
+ "created_at": "2024-07-24T19:42:56Z"
+ },
+ {
+ "hn_id": "40235449",
+ "title": "Is Model Collapse Inevitable?",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40235449",
+ "created_at": "2024-05-02T12:36:02Z"
+ },
+ {
+ "hn_id": "40034053",
+ "title": "You Need to Pay Better Attention",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40034053",
+ "created_at": "2024-04-14T20:13:13Z"
+ },
+ {
+ "hn_id": "44494491",
+ "title": "AsyncFlow: An Asynchronous Streaming RL Framework for LLM Post-Training",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44494491",
+ "created_at": "2025-07-07T20:42:12Z"
+ },
+ {
+ "hn_id": "41213942",
+ "title": "Qubernetes: Unified Cloud-Native Platform for Hybrid Classic-Quantum Computing",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41213942",
+ "created_at": "2024-08-11T04:15:49Z"
+ },
+ {
+ "hn_id": "39972589",
+ "title": "Is Model Collapse Inevitable? Breaking the Curse with Real and Synthetic Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39972589",
+ "created_at": "2024-04-08T18:47:58Z"
+ },
+ {
+ "hn_id": "40653476",
+ "title": "An LLM-Based Recommender System Environment",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40653476",
+ "created_at": "2024-06-12T01:15:51Z"
+ },
+ {
+ "hn_id": "40552810",
+ "title": "Is Model Collapse Inevitable? Breaking the Curse of Recursion",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40552810",
+ "created_at": "2024-06-02T09:48:29Z"
+ }
+ ],
+ "top_points": 233,
+ "total_points": 367,
+ "total_comments": 126
+}
+\ No newline at end of file
diff --git a/papers/review-hallucination-understanding-2025/hn.json b/papers/review-hallucination-understanding-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45675681",
+ "title": "A Novel Spinor-Based Embedding Model for Transformers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45675681",
+ "created_at": "2025-10-22T21:58:51Z"
+ },
+ {
+ "hn_id": "45979786",
+ "title": "Semi-Supervised Preference Optimization with Limited Feedback",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45979786",
+ "created_at": "2025-11-19T14:18:46Z"
+ },
+ {
+ "hn_id": "45917707",
+ "title": "Probing Knowledge Holes in Unlearned LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45917707",
+ "created_at": "2025-11-13T17:27:48Z"
+ },
+ {
+ "hn_id": "37829533",
+ "title": "PB-LLM: Partially Binarized Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37829533",
+ "created_at": "2023-10-10T07:51:34Z"
+ },
+ {
+ "hn_id": "28822004",
+ "title": "Show HN: SpliceOut, a Simple and Efficient Audio Augmentation Method",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28822004",
+ "created_at": "2021-10-10T21:10:15Z"
+ },
+ {
+ "hn_id": "42816854",
+ "title": "NewsHomepages: Homepage Layouts Capture Information Prioritization Decisions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42816854",
+ "created_at": "2025-01-24T20:57:12Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 11,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/review-research-aiassisted-2025/hn.json b/papers/review-research-aiassisted-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/revolution-hype-seeking-2025/hn.json b/papers/revolution-hype-seeking-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "37727937",
+ "title": "A Penny a Function: Towards Cost Transparent Cloud Programming [pdf]",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37727937",
+ "created_at": "2023-10-01T16:56:41Z"
+ },
+ {
+ "hn_id": "45182849",
+ "title": "Capture of Interstellar Objects and Binaries",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45182849",
+ "created_at": "2025-09-09T15:00:32Z"
+ },
+ {
+ "hn_id": "33223016",
+ "title": "Cotton Gravity: a potential alternative to the dark matter paradigm",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33223016",
+ "created_at": "2022-10-16T12:18:43Z"
+ },
+ {
+ "hn_id": "42883727",
+ "title": "The Power of Negative Zero: Datatype Customization for Quantized LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42883727",
+ "created_at": "2025-01-31T00:45:25Z"
+ },
+ {
+ "hn_id": "42876488",
+ "title": "Open Problems in Machine Unlearning for AI Safety",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42876488",
+ "created_at": "2025-01-30T10:15:38Z"
+ },
+ {
+ "hn_id": "43291999",
+ "title": "Think Inside the JSON: Reinforcement Strategy for Strict LLM Schema Adherence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43291999",
+ "created_at": "2025-03-07T17:19:08Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 10,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rexbench-can-coding-2025/hn.json b/papers/rexbench-can-coding-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "44138856",
+ "title": "Model-Preserving Adaptive Rounding",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44138856",
+ "created_at": "2025-05-30T18:37:41Z"
+ },
+ {
+ "hn_id": "43557667",
+ "title": "Prompt, Divide, and Conquer: Bypassing Large Language Model Safety Filters",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43557667",
+ "created_at": "2025-04-02T15:19:05Z"
+ },
+ {
+ "hn_id": "43624475",
+ "title": "Are Domain-Specific Trade-Offs Undermining On-Device Language Models?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43624475",
+ "created_at": "2025-04-08T17:44:46Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 7,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/rise-potential-large-2023/hn.json b/papers/rise-potential-large-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41572984",
+ "title": "The real Q-Star paper: Critical Planning Step Learning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41572984",
+ "created_at": "2024-09-17T21:27:52Z"
+ },
+ {
+ "hn_id": "37649880",
+ "title": "The Rise and Potential of Large Language Model Based Agents",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37649880",
+ "created_at": "2023-09-25T20:10:11Z"
+ },
+ {
+ "hn_id": "41625255",
+ "title": "The MLIR Transform Dialect. Your compiler is more powerful than you think",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41625255",
+ "created_at": "2024-09-23T12:13:03Z"
+ },
+ {
+ "hn_id": "37151228",
+ "title": "There Is a Digital Art History",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37151228",
+ "created_at": "2023-08-16T18:12:00Z"
+ },
+ {
+ "hn_id": "36373344",
+ "title": "AssistGPT: Multi-Modal Assistant That Can Plan, Execute, Inspect, and Learn",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36373344",
+ "created_at": "2023-06-17T18:59:36Z"
+ },
+ {
+ "hn_id": "35965533",
+ "title": "Improving Small Language Models in Domain-Specific QA",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35965533",
+ "created_at": "2023-05-16T18:08:24Z"
+ },
+ {
+ "hn_id": "35672784",
+ "title": "Proposed Resolution to the Solar Open Magnetic Flux Problem",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35672784",
+ "created_at": "2023-04-23T02:26:20Z"
+ },
+ {
+ "hn_id": "34841951",
+ "title": "Augmented Language Models: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34841951",
+ "created_at": "2023-02-17T23:21:04Z"
+ },
+ {
+ "hn_id": "37572125",
+ "title": "The Rise and Potential of Large Language Model Based Agents: A Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37572125",
+ "created_at": "2023-09-19T16:14:14Z"
+ },
+ {
+ "hn_id": "37616115",
+ "title": "Do Pre-Trained Code Models Possess Knowledge of Correct API Names?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37616115",
+ "created_at": "2023-09-22T18:52:27Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 19,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/rise-potential-opportunities-2025/hn.json b/papers/rise-potential-opportunities-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rltf-reinforcement-learning-2023/hn.json b/papers/rltf-reinforcement-learning-2023/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "35146223",
+ "title": "Resurrecting Recurrent Neural Networks for Long Sequences",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35146223",
+ "created_at": "2023-03-14T01:45:43Z"
+ },
+ {
+ "hn_id": "36514257",
+ "title": "Utilizing Deep Learning for Automated Tuning of Database Management Systems",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36514257",
+ "created_at": "2023-06-28T23:36:50Z"
+ },
+ {
+ "hn_id": "37507879",
+ "title": "Hopper: Interpretative Fuzzing for Libraries",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37507879",
+ "created_at": "2023-09-14T12:14:07Z"
+ },
+ {
+ "hn_id": "34743651",
+ "title": "Learning to Play Atari with the Help of the Instruction Manuals",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34743651",
+ "created_at": "2023-02-10T18:28:43Z"
+ },
+ {
+ "hn_id": "37481206",
+ "title": "Wi-Fi Enabled Practical Keystroke Eavesdropping",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37481206",
+ "created_at": "2023-09-12T13:47:49Z"
+ },
+ {
+ "hn_id": "36351352",
+ "title": "UrbanIR: Large-Scale Urban Scene Inverse Rendering from a Single Video",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36351352",
+ "created_at": "2023-06-16T04:40:32Z"
+ },
+ {
+ "hn_id": "34705483",
+ "title": "A Categorical Archive of ChatGPT Failures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34705483",
+ "created_at": "2023-02-08T08:13:56Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 14,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/robon-routed-online-2025/hn.json b/papers/robon-routed-online-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46151267",
+ "title": "Generative Graph Vocabularies for Robust Graph Foundation Models Fine-Tuning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46151267",
+ "created_at": "2025-12-04T18:46:47Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/robust-retrievalbased-summarization-2024/hn.json b/papers/robust-retrievalbased-summarization-2024/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "39890254",
+ "title": "Jamba: A Hybrid Transformer-Mamba Language Model",
+ "points": 74,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=39890254",
+ "created_at": "2024-04-01T02:15:10Z"
+ },
+ {
+ "hn_id": "40832702",
+ "title": "Leapfrogging Sycamore: 1432 GPUs for 7× Faster Quantum Random Circuit Sampling",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40832702",
+ "created_at": "2024-06-29T19:05:11Z"
+ },
+ {
+ "hn_id": "41708152",
+ "title": "ForecastBench: A Dynamic Benchmark of AI Forecasting Capabilities",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41708152",
+ "created_at": "2024-10-01T13:31:10Z"
+ },
+ {
+ "hn_id": "30817957",
+ "title": "Insights from the NeurIPS 2021 NetHack Challenge",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30817957",
+ "created_at": "2022-03-27T05:34:39Z"
+ }
+ ],
+ "top_points": 74,
+ "total_points": 81,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/role-artificial-intelligence-2025/hn.json b/papers/role-artificial-intelligence-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/rooflinebench-benchmarking-framework-2026/hn.json b/papers/rooflinebench-benchmarking-framework-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/routing-cascades-user-2026/hn.json b/papers/routing-cascades-user-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47014123",
+ "title": "A Framework for Time-Updating Probabilistic Forecasts",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47014123",
+ "created_at": "2026-02-14T12:40:18Z"
+ },
+ {
+ "hn_id": "46995551",
+ "title": "Routing LLM queries using internal success predictions (70% cost reduction)",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46995551",
+ "created_at": "2026-02-12T21:33:47Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 7,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/rtl-graphenhanced-llm-2025/hn.json b/papers/rtl-graphenhanced-llm-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "42798811",
+ "title": "Lossless Compression of Vector IDs for Approximate Nearest Neighbor Search",
+ "points": 151,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=42798811",
+ "created_at": "2025-01-22T23:46:09Z"
+ },
+ {
+ "hn_id": "40504161",
+ "title": "Specular Polynomials",
+ "points": 17,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40504161",
+ "created_at": "2024-05-28T18:54:33Z"
+ },
+ {
+ "hn_id": "44638392",
+ "title": "Vera C. Rubin Observatory Observations of Interstellar Comet 3I/Atlas",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44638392",
+ "created_at": "2025-07-21T18:07:14Z"
+ },
+ {
+ "hn_id": "46458146",
+ "title": "Cognitive Diagnosis Framework for Evaluating Financial Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46458146",
+ "created_at": "2026-01-01T21:23:43Z"
+ },
+ {
+ "hn_id": "44714721",
+ "title": "NSF-DOE Vera C. Rubin Observatory Observations of Interstellar Comet 3I/Atlas",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44714721",
+ "created_at": "2025-07-28T19:43:51Z"
+ },
+ {
+ "hn_id": "44796040",
+ "title": "From Large to Super-Tiny: End-to-End Optimization for Cost-Efficient LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44796040",
+ "created_at": "2025-08-05T09:39:59Z"
+ },
+ {
+ "hn_id": "30579179",
+ "title": "A Flawed Dataset for Symbolic Equation Verification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30579179",
+ "created_at": "2022-03-06T17:29:28Z"
+ },
+ {
+ "hn_id": "24885104",
+ "title": "Towards a Catalogue of Software Quality Metrics for Infrastructure Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24885104",
+ "created_at": "2020-10-25T09:59:01Z"
+ },
+ {
+ "hn_id": "45023706",
+ "title": "AlphaX: An AI-Based Value Investing Strategy for the Brazilian Stock Market",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45023706",
+ "created_at": "2025-08-26T08:13:47Z"
+ }
+ ],
+ "top_points": 151,
+ "total_points": 184,
+ "total_comments": 8
+}
+\ No newline at end of file
diff --git a/papers/rtlsquad-multiagent-based-2025/hn.json b/papers/rtlsquad-multiagent-based-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42706206",
+ "title": "Decentralized Diffusion Models",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42706206",
+ "created_at": "2025-01-15T01:20:10Z"
+ },
+ {
+ "hn_id": "42694008",
+ "title": "Multiagent Finetuning: Self Improvement with Diverse Reasoning Chains",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42694008",
+ "created_at": "2025-01-14T05:29:27Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 2,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/rubric-all-you-2025-2/hn.json b/papers/rubric-all-you-2025-2/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46230885",
+ "title": "Streaming Speech Synthesis Without the Trade-Offs: Meet StreamFlow",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46230885",
+ "created_at": "2025-12-11T13:05:42Z"
+ },
+ {
+ "hn_id": "44446118",
+ "title": "Transition Matching: Scalable and Flexible Generative Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44446118",
+ "created_at": "2025-07-02T17:02:38Z"
+ },
+ {
+ "hn_id": "47162104",
+ "title": "A Computational Perspective on NeuroAI and Synthetic Biological Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47162104",
+ "created_at": "2026-02-26T05:05:59Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 6,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/rubric-all-you-2025/hn.json b/papers/rubric-all-you-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46230885",
+ "title": "Streaming Speech Synthesis Without the Trade-Offs: Meet StreamFlow",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46230885",
+ "created_at": "2025-12-11T13:05:42Z"
+ },
+ {
+ "hn_id": "44446118",
+ "title": "Transition Matching: Scalable and Flexible Generative Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44446118",
+ "created_at": "2025-07-02T17:02:38Z"
+ },
+ {
+ "hn_id": "47162104",
+ "title": "A Computational Perspective on NeuroAI and Synthetic Biological Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47162104",
+ "created_at": "2026-02-26T05:05:59Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 6,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/rustassistant-llms-fix-2025/hn.json b/papers/rustassistant-llms-fix-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42208383",
+ "title": "Show HN: Llama 3.2 Interpretability with Sparse Autoencoders",
+ "points": 579,
+ "comments": 99,
+ "url": "https://news.ycombinator.com/item?id=42208383",
+ "created_at": "2024-11-21T20:37:56Z"
+ },
+ {
+ "hn_id": "35887701",
+ "title": "FrugalGPT: How to Use LLMs While Reducing Cost and Improving Performance",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35887701",
+ "created_at": "2023-05-10T14:15:34Z"
+ },
+ {
+ "hn_id": "45586600",
+ "title": "Dynamically relevant consciousness precludes artificial consciousness (2023)",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45586600",
+ "created_at": "2025-10-15T00:22:05Z"
+ },
+ {
+ "hn_id": "35912401",
+ "title": "Achieve 98% cost reduction or 4% accuracy improvement over large LLM(GPT-4)",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35912401",
+ "created_at": "2023-05-12T05:48:48Z"
+ },
+ {
+ "hn_id": "34457674",
+ "title": "Individual Fairness for Social Media Influencers",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34457674",
+ "created_at": "2023-01-20T18:41:27Z"
+ },
+ {
+ "hn_id": "35573848",
+ "title": "Automatic Gradient Descent: Deep Learning Without Hyperparameters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35573848",
+ "created_at": "2023-04-14T19:49:17Z"
+ },
+ {
+ "hn_id": "37146164",
+ "title": "Fixing Rust Compilation Errors Using LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37146164",
+ "created_at": "2023-08-16T12:39:51Z"
+ },
+ {
+ "hn_id": "28083250",
+ "title": "Statistical Aspects of the Quantum Supremacy Demonstration [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28083250",
+ "created_at": "2021-08-06T04:11:55Z"
+ },
+ {
+ "hn_id": "37975304",
+ "title": "Debugging Trait Errors as Logic Programs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37975304",
+ "created_at": "2023-10-22T13:45:45Z"
+ },
+ {
+ "hn_id": "35606043",
+ "title": "Automatic Gradient Descent: Deep Learning Without Hyperparameters",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35606043",
+ "created_at": "2023-04-17T20:22:08Z"
+ }
+ ],
+ "top_points": 579,
+ "total_points": 597,
+ "total_comments": 102
+}
+\ No newline at end of file
diff --git a/papers/saber-efficient-sampling-2025/hn.json b/papers/saber-efficient-sampling-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "39555675",
+ "title": "Functional ownership through fractional uniqueness",
+ "points": 122,
+ "comments": 49,
+ "url": "https://news.ycombinator.com/item?id=39555675",
+ "created_at": "2024-02-29T21:52:13Z"
+ },
+ {
+ "hn_id": "46423044",
+ "title": "Propose, Solve, Verify: Self-Play Through Formal Verification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46423044",
+ "created_at": "2025-12-29T17:34:53Z"
+ },
+ {
+ "hn_id": "42826239",
+ "title": "Advancing Language Model Reasoning Through RL and Inference Scaling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42826239",
+ "created_at": "2025-01-25T23:56:32Z"
+ },
+ {
+ "hn_id": "42032714",
+ "title": "Improving Embedding Accuracy for Using ER Maps and Model-Aware Sampling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42032714",
+ "created_at": "2024-11-03T12:40:18Z"
+ },
+ {
+ "hn_id": "46021507",
+ "title": "World-in-World: World Models in a Closed-Loop World",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46021507",
+ "created_at": "2025-11-23T07:25:35Z"
+ },
+ {
+ "hn_id": "46363503",
+ "title": "Layout-Aware Text Editing for Efficient Conversion of Academic PDFs to Markdown",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46363503",
+ "created_at": "2025-12-23T08:26:53Z"
+ },
+ {
+ "hn_id": "41941601",
+ "title": "Point Cloud Compression with Bits-Back Coding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41941601",
+ "created_at": "2024-10-25T01:51:49Z"
+ },
+ {
+ "hn_id": "38179551",
+ "title": "Functional Ownership Through Fractional Uniqueness",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38179551",
+ "created_at": "2023-11-07T17:10:42Z"
+ }
+ ],
+ "top_points": 122,
+ "total_points": 132,
+ "total_comments": 49
+}
+\ No newline at end of file
diff --git a/papers/saber-small-actions-2025/hn.json b/papers/saber-small-actions-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "31883373",
+ "title": "Ask HN: GPT-3 reveals my full name – can I do anything?",
+ "points": 710,
+ "comments": 346,
+ "url": "https://news.ycombinator.com/item?id=31883373",
+ "created_at": "2022-06-26T12:37:21Z"
+ },
+ {
+ "hn_id": "25314681",
+ "title": "Mathematical Game Theory",
+ "points": 16,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25314681",
+ "created_at": "2020-12-05T14:14:19Z"
+ },
+ {
+ "hn_id": "29582801",
+ "title": "An Empirical Lower Bound on the Overheads of Production Garbage Collectors",
+ "points": 15,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29582801",
+ "created_at": "2021-12-16T19:39:37Z"
+ },
+ {
+ "hn_id": "42524709",
+ "title": "Language Model as Visual Explainer",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42524709",
+ "created_at": "2024-12-27T18:36:16Z"
+ },
+ {
+ "hn_id": "25447938",
+ "title": "Object-based attention for spatio-temporal reasoning",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=25447938",
+ "created_at": "2020-12-16T20:15:41Z"
+ },
+ {
+ "hn_id": "25463693",
+ "title": "Real-Time High-Resolution Background Matting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25463693",
+ "created_at": "2020-12-18T04:02:26Z"
+ },
+ {
+ "hn_id": "25439523",
+ "title": "Extracting Training Data from Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25439523",
+ "created_at": "2020-12-16T05:50:02Z"
+ },
+ {
+ "hn_id": "46224562",
+ "title": "Nonlinear Quantum Mechanics and Artificial Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46224562",
+ "created_at": "2025-12-10T22:07:14Z"
+ },
+ {
+ "hn_id": "43383185",
+ "title": "A physics lab inside your head: Quantum thought experiments (2023)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43383185",
+ "created_at": "2025-03-16T22:36:14Z"
+ },
+ {
+ "hn_id": "39118915",
+ "title": "Quantum thought experiments as quantum computing circuits",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39118915",
+ "created_at": "2024-01-24T16:01:20Z"
+ }
+ ],
+ "top_points": 710,
+ "total_points": 755,
+ "total_comments": 348
+}
+\ No newline at end of file
diff --git a/papers/safegenbench-benchmark-framework-2025/hn.json b/papers/safegenbench-benchmark-framework-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44048574",
+ "title": "Sugar-Coated Poison: Benign Generation Unlocks LLM Jailbreaking",
+ "points": 45,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=44048574",
+ "created_at": "2025-05-21T05:36:16Z"
+ },
+ {
+ "hn_id": "44836387",
+ "title": "Back to Bits: Extending Shannon's channel capacity to computing",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44836387",
+ "created_at": "2025-08-08T12:49:12Z"
+ },
+ {
+ "hn_id": "40659143",
+ "title": "Improve Math Reasoning in Language Models by Automated Process Supervision",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40659143",
+ "created_at": "2024-06-12T15:24:05Z"
+ },
+ {
+ "hn_id": "40876777",
+ "title": "Improve Mathematical Logic in Language Models by Automated Process Supervision",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40876777",
+ "created_at": "2024-07-04T17:54:35Z"
+ },
+ {
+ "hn_id": "40652031",
+ "title": "Self-Supervised Visual Grounding of Sound and Language",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40652031",
+ "created_at": "2024-06-11T21:53:58Z"
+ },
+ {
+ "hn_id": "45129707",
+ "title": "New constraints on the age of the Universe and the Hubble constant",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45129707",
+ "created_at": "2025-09-04T17:19:39Z"
+ },
+ {
+ "hn_id": "45051439",
+ "title": "LMAR: Language Model Augmented Retriever for Domain-Specific Knowledge Indexing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45051439",
+ "created_at": "2025-08-28T12:40:12Z"
+ },
+ {
+ "hn_id": "44481935",
+ "title": "Superintelligence Strategy: Expert Version",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44481935",
+ "created_at": "2025-07-06T16:10:13Z"
+ },
+ {
+ "hn_id": "43030018",
+ "title": "Mixture-of-Agents Enhances Large Language Model Capabilities",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43030018",
+ "created_at": "2025-02-12T21:38:02Z"
+ },
+ {
+ "hn_id": "44637767",
+ "title": "Superintelligence Strategy: Expert Version",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44637767",
+ "created_at": "2025-07-21T17:20:43Z"
+ }
+ ],
+ "top_points": 45,
+ "total_points": 65,
+ "total_comments": 48
+}
+\ No newline at end of file
diff --git a/papers/safepro-evaluating-safety-2026/hn.json b/papers/safepro-evaluating-safety-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/safetyefficacy-trade-off-2026/hn.json b/papers/safetyefficacy-trade-off-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/sage-steerable-agentic-2026/hn.json b/papers/sage-steerable-agentic-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/salad-systematic-assessment-2025/hn.json b/papers/salad-systematic-assessment-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "27394692",
+ "title": "Reinforcement Learning as One Big Sequence Modeling Problem",
+ "points": 18,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27394692",
+ "created_at": "2021-06-04T15:37:59Z"
+ },
+ {
+ "hn_id": "27721037",
+ "title": "Reinforcement Learning As One Big Sequence Modeling Problem",
+ "points": 14,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27721037",
+ "created_at": "2021-07-03T12:00:58Z"
+ },
+ {
+ "hn_id": "45235119",
+ "title": "Instruction-Following Pruning for Large Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45235119",
+ "created_at": "2025-09-13T20:37:50Z"
+ },
+ {
+ "hn_id": "44497182",
+ "title": "Energy-Based Transformers Are Scalable Learners and Thinkers",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44497182",
+ "created_at": "2025-07-08T04:51:08Z"
+ },
+ {
+ "hn_id": "45661775",
+ "title": "Measuring the Impact of Early-2025 AI on Experienced Developer Productivity",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45661775",
+ "created_at": "2025-10-21T21:12:22Z"
+ },
+ {
+ "hn_id": "45013883",
+ "title": "EvoGit: Decentralized multi-agent framework for software development",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45013883",
+ "created_at": "2025-08-25T13:54:50Z"
+ },
+ {
+ "hn_id": "44248214",
+ "title": "Planets similar in size are often dissimilar in interior",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44248214",
+ "created_at": "2025-06-11T14:47:20Z"
+ },
+ {
+ "hn_id": "9766379",
+ "title": "When to post on social networks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=9766379",
+ "created_at": "2015-06-23T17:55:58Z"
+ },
+ {
+ "hn_id": "45291121",
+ "title": "Cut Costs, Not Accuracy: LLM-Powered Data Processing with Guarantees",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45291121",
+ "created_at": "2025-09-18T15:47:00Z"
+ },
+ {
+ "hn_id": "44593569",
+ "title": "Measuring the Impact of Early-2025 AI on Experienced Developer Productivity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44593569",
+ "created_at": "2025-07-17T14:03:27Z"
+ }
+ ],
+ "top_points": 18,
+ "total_points": 58,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/sampleefficient-human-evaluation-2024/hn.json b/papers/sampleefficient-human-evaluation-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "27595879",
+ "title": "Why is AI hard and physics simple?",
+ "points": 59,
+ "comments": 70,
+ "url": "https://news.ycombinator.com/item?id=27595879",
+ "created_at": "2021-06-22T19:15:21Z"
+ },
+ {
+ "hn_id": "40023531",
+ "title": "Mechanics of Next Token Prediction with Self-Attention",
+ "points": 13,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40023531",
+ "created_at": "2024-04-13T14:54:02Z"
+ },
+ {
+ "hn_id": "41558674",
+ "title": "Microarchitectural comparison and in-core modeling of state-of-the-art CPUs",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41558674",
+ "created_at": "2024-09-16T17:55:03Z"
+ },
+ {
+ "hn_id": "30993051",
+ "title": "Taxonomy of Attacks on Open-Source Software Supply Chains",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=30993051",
+ "created_at": "2022-04-11T18:53:19Z"
+ },
+ {
+ "hn_id": "26672208",
+ "title": "Why is AI hard and Physics simple?",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=26672208",
+ "created_at": "2021-04-02T15:28:32Z"
+ },
+ {
+ "hn_id": "28299229",
+ "title": "Real-Time Data Infrastructure at Uber",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28299229",
+ "created_at": "2021-08-25T08:34:09Z"
+ },
+ {
+ "hn_id": "41419014",
+ "title": "Large Language Models as Agents in Two-Player Games",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41419014",
+ "created_at": "2024-09-01T18:20:02Z"
+ },
+ {
+ "hn_id": "40416395",
+ "title": "People cannot distinguish GPT-4 from a human in a Turing test",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40416395",
+ "created_at": "2024-05-20T15:09:13Z"
+ },
+ {
+ "hn_id": "43884582",
+ "title": "Ozaki Scheme II: A GEMM-oriented emulation of FP matrix multiplication using INT",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43884582",
+ "created_at": "2025-05-04T04:54:14Z"
+ },
+ {
+ "hn_id": "40117581",
+ "title": "Analyzing the Performance of Large Language Models on Code Summarization",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40117581",
+ "created_at": "2024-04-22T18:58:18Z"
+ }
+ ],
+ "top_points": 59,
+ "total_points": 109,
+ "total_comments": 72
+}
+\ No newline at end of file
diff --git a/papers/scaffolded-model-capability-2023/hn.json b/papers/scaffolded-model-capability-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "27536424",
+ "title": "Estimating the Prevalence of Surveillance Cameras with Street View Data",
+ "points": 58,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=27536424",
+ "created_at": "2021-06-17T05:45:59Z"
+ },
+ {
+ "hn_id": "35607616",
+ "title": "ChemCrow: Augmenting large-language models with chemistry tools",
+ "points": 30,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=35607616",
+ "created_at": "2023-04-17T22:41:11Z"
+ },
+ {
+ "hn_id": "35887701",
+ "title": "FrugalGPT: How to Use LLMs While Reducing Cost and Improving Performance",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35887701",
+ "created_at": "2023-05-10T14:15:34Z"
+ },
+ {
+ "hn_id": "35566174",
+ "title": "Flap: A Deterministic Parser with Fused Lexing",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35566174",
+ "created_at": "2023-04-14T06:27:22Z"
+ },
+ {
+ "hn_id": "35912401",
+ "title": "Achieve 98% cost reduction or 4% accuracy improvement over large LLM(GPT-4)",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35912401",
+ "created_at": "2023-05-12T05:48:48Z"
+ },
+ {
+ "hn_id": "35960207",
+ "title": "Large Language Models Humanize Technology",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35960207",
+ "created_at": "2023-05-16T11:16:21Z"
+ },
+ {
+ "hn_id": "35882378",
+ "title": "LLMs Humanize Technology",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35882378",
+ "created_at": "2023-05-10T01:03:32Z"
+ },
+ {
+ "hn_id": "31515994",
+ "title": "LSI: A Learned Secondary Index Structure",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31515994",
+ "created_at": "2022-05-26T08:25:19Z"
+ },
+ {
+ "hn_id": "44288108",
+ "title": "Appraisal-Based Chain-of-Emotion Improves AI Persona Accuracy",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44288108",
+ "created_at": "2025-06-16T10:19:10Z"
+ },
+ {
+ "hn_id": "40619823",
+ "title": "Air Gap: Protecting Privacy-Conscious Conversational Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40619823",
+ "created_at": "2024-06-08T19:52:25Z"
+ }
+ ],
+ "top_points": 58,
+ "total_points": 108,
+ "total_comments": 26
+}
+\ No newline at end of file
diff --git a/papers/scalable-oversight-partitioned-2025/hn.json b/papers/scalable-oversight-partitioned-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/scales-justitia-comprehensive-2025/hn.json b/papers/scales-justitia-comprehensive-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "44271284",
+ "title": "Self-Adapting Language Models",
+ "points": 246,
+ "comments": 73,
+ "url": "https://news.ycombinator.com/item?id=44271284",
+ "created_at": "2025-06-13T19:03:42Z"
+ },
+ {
+ "hn_id": "44770561",
+ "title": "B-Splines and Fourier-Best Friends for Spatial-Temporal Video Super-Resolution",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44770561",
+ "created_at": "2025-08-02T19:22:17Z"
+ },
+ {
+ "hn_id": "44308612",
+ "title": "SageAttention3: Microscaling FP4 Attention. 5x Speed up",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44308612",
+ "created_at": "2025-06-18T10:37:52Z"
+ },
+ {
+ "hn_id": "40784867",
+ "title": "DataComp-LM: In search of the next generation training sets for language models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40784867",
+ "created_at": "2024-06-25T05:36:59Z"
+ },
+ {
+ "hn_id": "45363837",
+ "title": "GPU Implementation of Second-Order Linear and Nonlinear Programming Solvers",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45363837",
+ "created_at": "2025-09-24T18:00:59Z"
+ }
+ ],
+ "top_points": 246,
+ "total_points": 255,
+ "total_comments": 74
+}
+\ No newline at end of file
diff --git a/papers/scaling-laws-2020/hn.json b/papers/scaling-laws-2020/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "22402079",
+ "title": "Scaling Laws for Neural Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22402079",
+ "created_at": "2020-02-24T06:24:12Z"
+ },
+ {
+ "hn_id": "31928058",
+ "title": "Scaling Laws for Neural Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31928058",
+ "created_at": "2022-06-30T02:13:00Z"
+ },
+ {
+ "hn_id": "22197251",
+ "title": "Deep Transformer Models for Time Series: The Influenza Prevalence Case",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22197251",
+ "created_at": "2020-01-30T23:42:01Z"
+ },
+ {
+ "hn_id": "34686313",
+ "title": "Ask HN: How “real” are AI scaling laws?",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34686313",
+ "created_at": "2023-02-06T23:47:53Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 8,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/scaling-laws-code-2025/hn.json b/papers/scaling-laws-code-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45961411",
+ "title": "Back to Basics: Let Denoising Generative Models Denoise",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45961411",
+ "created_at": "2025-11-18T04:30:24Z"
+ },
+ {
+ "hn_id": "46002697",
+ "title": "Back to Basics: Let Denoising Generative Models Denoise",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46002697",
+ "created_at": "2025-11-21T09:10:31Z"
+ },
+ {
+ "hn_id": "46137790",
+ "title": "Can LLMs Create Legally Relevant Summaries and Analyses of Videos?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46137790",
+ "created_at": "2025-12-03T18:05:20Z"
+ },
+ {
+ "hn_id": "32562345",
+ "title": "Decomposing the local arrow of time in interacting systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32562345",
+ "created_at": "2022-08-23T09:22:33Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 11,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/scaling-laws-data-2025/hn.json b/papers/scaling-laws-data-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "45781713",
+ "title": "Consequences of Undecidability in Physics on the Theory of Everything",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45781713",
+ "created_at": "2025-11-01T14:00:39Z"
+ },
+ {
+ "hn_id": "44291959",
+ "title": "Improving Brain-to-Image Reconstruction via Fine-Grained Text Bridging",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44291959",
+ "created_at": "2025-06-16T18:13:28Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 2,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/scaling-laws-economic-productivity-2024/hn.json b/papers/scaling-laws-economic-productivity-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "43257719",
+ "title": "Translating natural language to first-order logic for logical fallacy detection",
+ "points": 258,
+ "comments": 143,
+ "url": "https://news.ycombinator.com/item?id=43257719",
+ "created_at": "2025-03-04T17:36:23Z"
+ },
+ {
+ "hn_id": "39069816",
+ "title": "Efficient LLM inference solution on Intel GPU",
+ "points": 103,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=39069816",
+ "created_at": "2024-01-20T17:11:29Z"
+ },
+ {
+ "hn_id": "38957230",
+ "title": "A Philosophical Introduction to Language Models",
+ "points": 83,
+ "comments": 24,
+ "url": "https://news.ycombinator.com/item?id=38957230",
+ "created_at": "2024-01-11T19:11:18Z"
+ },
+ {
+ "hn_id": "39272490",
+ "title": "General Relativistic Hydrodynamics in Discrete Spacetime",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39272490",
+ "created_at": "2024-02-06T09:30:48Z"
+ },
+ {
+ "hn_id": "40706673",
+ "title": "Neural Thermodynamic Integration: Free Energies from Diffusion Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40706673",
+ "created_at": "2024-06-17T15:34:30Z"
+ },
+ {
+ "hn_id": "42345848",
+ "title": "General Relativistic Hydrodynamics in Discrete Spacetime",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42345848",
+ "created_at": "2024-12-06T23:45:53Z"
+ },
+ {
+ "hn_id": "37511430",
+ "title": "Explaining Neural Network grokking through circuit efficiency",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37511430",
+ "created_at": "2023-09-14T16:51:26Z"
+ }
+ ],
+ "top_points": 258,
+ "total_points": 450,
+ "total_comments": 193
+}
+\ No newline at end of file
diff --git a/papers/scaling-laws-multiagent-2022/hn.json b/papers/scaling-laws-multiagent-2022/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "37803171",
+ "title": "ImPlicit Self-ImprovemenT (Pit) for LLMs vs. Prompting",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37803171",
+ "created_at": "2023-10-07T16:37:34Z"
+ },
+ {
+ "hn_id": "37944560",
+ "title": "Synthetic Data Generation with Large Language Models for Text Classification",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37944560",
+ "created_at": "2023-10-19T15:51:43Z"
+ },
+ {
+ "hn_id": "35719730",
+ "title": "Schrödinger cat states of a 16-microgram mechanical oscillator",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35719730",
+ "created_at": "2023-04-26T20:43:33Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 4,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/scaling-testtime-compute-2025/hn.json b/papers/scaling-testtime-compute-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "43086347",
+ "title": "SWE-Lancer: a benchmark of freelance software engineering tasks from Upwork",
+ "points": 111,
+ "comments": 74,
+ "url": "https://news.ycombinator.com/item?id=43086347",
+ "created_at": "2025-02-18T05:25:05Z"
+ },
+ {
+ "hn_id": "46636707",
+ "title": "Show HN: A-MEM – Memory for Claude Code that links and evolves on its own",
+ "points": 8,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=46636707",
+ "created_at": "2026-01-15T18:15:04Z"
+ },
+ {
+ "hn_id": "45632961",
+ "title": "Hallucinations are inevitable but can be made statistically negligible",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45632961",
+ "created_at": "2025-10-19T09:16:28Z"
+ },
+ {
+ "hn_id": "43284108",
+ "title": "Hallucinations are inevitable but statistically negligible",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43284108",
+ "created_at": "2025-03-06T19:22:06Z"
+ },
+ {
+ "hn_id": "43086430",
+ "title": "SWE-Lancer: Can LLMs Earn $1M from Real-World Freelance Software Engineering?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43086430",
+ "created_at": "2025-02-18T05:40:39Z"
+ }
+ ],
+ "top_points": 111,
+ "total_points": 125,
+ "total_comments": 79
+}
+\ No newline at end of file
diff --git a/papers/scenarios-transition-agi-2024/hn.json b/papers/scenarios-transition-agi-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39109304",
+ "title": "Spotting LLMs with Binoculars: Zero-Shot Detection of Machine-Generated Text",
+ "points": 161,
+ "comments": 99,
+ "url": "https://news.ycombinator.com/item?id=39109304",
+ "created_at": "2024-01-23T20:29:35Z"
+ },
+ {
+ "hn_id": "39761265",
+ "title": "MindEye2: Shared-Subject Models Enable fMRI-to-Image with 1 Hour of Data",
+ "points": 77,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=39761265",
+ "created_at": "2024-03-19T23:09:01Z"
+ },
+ {
+ "hn_id": "39869603",
+ "title": "TnT-LLM: Text Mining at Scale with Large Language Models",
+ "points": 66,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=39869603",
+ "created_at": "2024-03-29T22:18:45Z"
+ },
+ {
+ "hn_id": "41204287",
+ "title": "Apple Intelligence Foundation Language Models",
+ "points": 56,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=41204287",
+ "created_at": "2024-08-09T18:38:35Z"
+ },
+ {
+ "hn_id": "40490632",
+ "title": "Berkeley researchers discover a suspiciously military-relevant Chinese dataset",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40490632",
+ "created_at": "2024-05-27T13:42:31Z"
+ },
+ {
+ "hn_id": "45404675",
+ "title": "Fine-Tune Black Box Embedding Models",
+ "points": 10,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45404675",
+ "created_at": "2025-09-28T14:42:14Z"
+ },
+ {
+ "hn_id": "40603853",
+ "title": "Analyzing Chinese Naval Targeting Models in the Open Source",
+ "points": 9,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40603853",
+ "created_at": "2024-06-06T23:56:59Z"
+ },
+ {
+ "hn_id": "40776255",
+ "title": "Basilisk: An End-to-End Open-Source Linux-Capable RISC-V SoC in 130nm CMOS",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40776255",
+ "created_at": "2024-06-24T14:10:04Z"
+ },
+ {
+ "hn_id": "43250672",
+ "title": "Optimal Control of Malware Propagation in IoT Networks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43250672",
+ "created_at": "2025-03-04T05:25:30Z"
+ },
+ {
+ "hn_id": "35256623",
+ "title": "VAD: Vectorized Scene Representation for Efficient Autonomous Driving",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35256623",
+ "created_at": "2023-03-22T03:55:32Z"
+ }
+ ],
+ "top_points": 161,
+ "total_points": 397,
+ "total_comments": 161
+}
+\ No newline at end of file
diff --git a/papers/scheming-llm-to-llm-interactions-2025/hn.json b/papers/scheming-llm-to-llm-interactions-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41878959",
+ "title": "LLMD: A Large Language Model for Interpreting Longitudinal Medical Records",
+ "points": 48,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=41878959",
+ "created_at": "2024-10-18T12:51:22Z"
+ },
+ {
+ "hn_id": "45963729",
+ "title": "The Fundamental Limits of LLMs at Scale",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45963729",
+ "created_at": "2025-11-18T11:26:02Z"
+ },
+ {
+ "hn_id": "45654929",
+ "title": "Tensor Logic: The Language of AI",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45654929",
+ "created_at": "2025-10-21T12:23:07Z"
+ },
+ {
+ "hn_id": "47097399",
+ "title": "The Fundamental Limits of LLMs at Scale",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47097399",
+ "created_at": "2026-02-21T04:07:37Z"
+ },
+ {
+ "hn_id": "45603909",
+ "title": "Tensor Logic: The Language of AI",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45603909",
+ "created_at": "2025-10-16T11:02:28Z"
+ },
+ {
+ "hn_id": "45600344",
+ "title": "Towards Logic: The Language of AI",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45600344",
+ "created_at": "2025-10-16T01:00:47Z"
+ },
+ {
+ "hn_id": "45588468",
+ "title": "Tensor Logic: The Language of AI",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45588468",
+ "created_at": "2025-10-15T05:46:48Z"
+ },
+ {
+ "hn_id": "45822499",
+ "title": "Production and Manufacturing of 3D Printed Acoustic Guitars",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45822499",
+ "created_at": "2025-11-05T13:15:34Z"
+ },
+ {
+ "hn_id": "42805056",
+ "title": "UI-Tars: Pioneering Automated GUI Interaction with Native Agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42805056",
+ "created_at": "2025-01-23T15:42:53Z"
+ },
+ {
+ "hn_id": "38099116",
+ "title": "Deep machine learning for meteor monitoring",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38099116",
+ "created_at": "2023-11-01T15:02:04Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 78,
+ "total_comments": 19
+}
+\ No newline at end of file
diff --git a/papers/science-scaling-agent-2025/hn.json b/papers/science-scaling-agent-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38675037",
+ "title": "Towards SSH3: how HTTP/3 improves secure shells [pdf]",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38675037",
+ "created_at": "2023-12-17T18:25:57Z"
+ },
+ {
+ "hn_id": "46224599",
+ "title": "Systemization of Knowledge: Security and Safety Challenges in MCP",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46224599",
+ "created_at": "2025-12-10T22:09:44Z"
+ },
+ {
+ "hn_id": "34164308",
+ "title": "A Survey of Password Guessing",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34164308",
+ "created_at": "2022-12-28T18:51:03Z"
+ },
+ {
+ "hn_id": "46230927",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46230927",
+ "created_at": "2025-12-11T13:09:28Z"
+ },
+ {
+ "hn_id": "45667959",
+ "title": "Concept-Based Generic Programming in C++",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45667959",
+ "created_at": "2025-10-22T12:22:26Z"
+ },
+ {
+ "hn_id": "43071390",
+ "title": "Improving Existing Optimization Algorithms with LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43071390",
+ "created_at": "2025-02-16T20:31:40Z"
+ },
+ {
+ "hn_id": "46641808",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46641808",
+ "created_at": "2026-01-16T01:12:48Z"
+ },
+ {
+ "hn_id": "47297903",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47297903",
+ "created_at": "2026-03-08T15:04:46Z"
+ },
+ {
+ "hn_id": "46409589",
+ "title": "Towards a Science of Scaling Agent Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46409589",
+ "created_at": "2025-12-28T09:07:07Z"
+ },
+ {
+ "hn_id": "46351355",
+ "title": "Towards a Science of Scaling Agent System",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46351355",
+ "created_at": "2025-12-22T04:40:00Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 20,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/scmas-constructing-costefficient-2026/hn.json b/papers/scmas-constructing-costefficient-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/sdag-subjectbased-directed-2025/hn.json b/papers/sdag-subjectbased-directed-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42746506",
+ "title": "ELIZA Reanimated",
+ "points": 59,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=42746506",
+ "created_at": "2025-01-18T07:09:15Z"
+ },
+ {
+ "hn_id": "10608008",
+ "title": "Neural Programmer-Interpreters",
+ "points": 18,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10608008",
+ "created_at": "2015-11-21T21:00:52Z"
+ },
+ {
+ "hn_id": "10705078",
+ "title": "Learning Simple Algorithms from Examples",
+ "points": 16,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10705078",
+ "created_at": "2015-12-09T17:22:21Z"
+ },
+ {
+ "hn_id": "10716926",
+ "title": "Deep Neural Network that learns algorithms",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10716926",
+ "created_at": "2015-12-11T13:29:45Z"
+ },
+ {
+ "hn_id": "44635377",
+ "title": "The Surprising Effectiveness of Test-Time Training for Few-Shot Learning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44635377",
+ "created_at": "2025-07-21T14:16:18Z"
+ },
+ {
+ "hn_id": "42699687",
+ "title": "Eliza Reanimated: the first chatbot restored",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42699687",
+ "created_at": "2025-01-14T16:40:58Z"
+ },
+ {
+ "hn_id": "42179437",
+ "title": "The Surprising Effectiveness of Test-Time Training for Abstract Reasoning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42179437",
+ "created_at": "2024-11-19T02:03:29Z"
+ },
+ {
+ "hn_id": "42127507",
+ "title": "UniGAD: Unifying Multi-Level Graph Anomaly Detection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42127507",
+ "created_at": "2024-11-13T16:32:30Z"
+ },
+ {
+ "hn_id": "42734349",
+ "title": "The Surprising Effectiveness of Test-Time Training for Abstract Reasoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42734349",
+ "created_at": "2025-01-17T05:19:33Z"
+ },
+ {
+ "hn_id": "42314792",
+ "title": "The Surprising Effectiveness of Test-Time Training for Abstract Reasoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42314792",
+ "created_at": "2024-12-04T05:51:38Z"
+ }
+ ],
+ "top_points": 59,
+ "total_points": 113,
+ "total_comments": 18
+}
+\ No newline at end of file
diff --git a/papers/se-agentic-benchmarks-survey-2025/hn.json b/papers/se-agentic-benchmarks-survey-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "10468555",
+ "title": "On End-To-End Program Generation from User Intention by Deep Neural Networks",
+ "points": 20,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=10468555",
+ "created_at": "2015-10-29T01:01:32Z"
+ },
+ {
+ "hn_id": "24844142",
+ "title": "Re-analysis of ALMA observations of Venus: No significant detection of phosphine",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24844142",
+ "created_at": "2020-10-21T01:53:54Z"
+ },
+ {
+ "hn_id": "24847175",
+ "title": "Re-analysis: No statistically significant detection of phosphine on Venus",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24847175",
+ "created_at": "2020-10-21T12:38:50Z"
+ },
+ {
+ "hn_id": "42743177",
+ "title": "Generating particle physics Lagrangians with transformers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42743177",
+ "created_at": "2025-01-17T21:01:09Z"
+ },
+ {
+ "hn_id": "42789001",
+ "title": "VideoWorld: Exploring Knowledge Learning from Unlabeled Video",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42789001",
+ "created_at": "2025-01-22T04:26:19Z"
+ },
+ {
+ "hn_id": "38194847",
+ "title": "Multinational AGI Consortium (Magic): A Proposal for International Coordination",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38194847",
+ "created_at": "2023-11-08T18:37:39Z"
+ },
+ {
+ "hn_id": "24854551",
+ "title": "No statistically significant detection of phosphine on Venus",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24854551",
+ "created_at": "2020-10-22T03:12:35Z"
+ },
+ {
+ "hn_id": "45615530",
+ "title": "It's 2025 – Narrative Learning is the new baseline to beat for explainable ML",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45615530",
+ "created_at": "2025-10-17T11:39:20Z"
+ },
+ {
+ "hn_id": "10463772",
+ "title": "On End-To-End Program Generation from User Intention by Deep Neural Networks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10463772",
+ "created_at": "2015-10-28T11:23:39Z"
+ }
+ ],
+ "top_points": 20,
+ "total_points": 41,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/seccodeprm-process-reward-2026/hn.json b/papers/seccodeprm-process-reward-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/secureagentbench-benchmarking-secure-2025/hn.json b/papers/secureagentbench-benchmarking-secure-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "46113387",
+ "title": "Pose-free 3D Gaussian splatting via shape-ray estimation",
+ "points": 36,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46113387",
+ "created_at": "2025-12-01T21:20:28Z"
+ },
+ {
+ "hn_id": "44505548",
+ "title": "UCD: Unlearning in LLMs via Contrastive Decoding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44505548",
+ "created_at": "2025-07-09T01:33:33Z"
+ },
+ {
+ "hn_id": "44954794",
+ "title": "Runtime Failure Hunting for Physics Engine Based Software Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44954794",
+ "created_at": "2025-08-19T18:39:28Z"
+ }
+ ],
+ "top_points": 36,
+ "total_points": 39,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/securing-ai-agents-2025/hn.json b/papers/securing-ai-agents-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46331455",
+ "title": "Braid: Bounded reasoning for LLMs using symbolic Mermaid graphs",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46331455",
+ "created_at": "2025-12-19T22:00:16Z"
+ },
+ {
+ "hn_id": "46508063",
+ "title": "A Systematic Analysis of Biases in Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46508063",
+ "created_at": "2026-01-06T02:33:50Z"
+ },
+ {
+ "hn_id": "42245908",
+ "title": "A Survey on LLM-as-a-Judge",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42245908",
+ "created_at": "2024-11-26T14:12:08Z"
+ },
+ {
+ "hn_id": "46325684",
+ "title": "Braid: Bounded Reasoning for Autonomous Inference and Decisions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46325684",
+ "created_at": "2025-12-19T13:35:56Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 13,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/securing-large-language-2025/hn.json b/papers/securing-large-language-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "46210641",
+ "title": "Is Vibe Coding Safe? Benchmarking Vulnerability of Agent-Generated Code",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46210641",
+ "created_at": "2025-12-09T21:05:49Z"
+ },
+ {
+ "hn_id": "45507411",
+ "title": "Continuously Augmented Discrete Diffusion Model",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45507411",
+ "created_at": "2025-10-07T19:08:29Z"
+ },
+ {
+ "hn_id": "46194269",
+ "title": "Is Vibe Coding Safe? Benchmarking Vulnerability of Agent-Generated Code",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46194269",
+ "created_at": "2025-12-08T16:29:33Z"
+ },
+ {
+ "hn_id": "45465138",
+ "title": "Aristotle: IMO-Level Automated Theorem Proving",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45465138",
+ "created_at": "2025-10-03T17:05:46Z"
+ },
+ {
+ "hn_id": "10714941",
+ "title": "Thinking Required",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10714941",
+ "created_at": "2015-12-11T01:23:44Z"
+ },
+ {
+ "hn_id": "46820686",
+ "title": "Show HN: I made a dev tool that helps vibecoders to AVOID security issues",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46820686",
+ "created_at": "2026-01-30T04:58:43Z"
+ },
+ {
+ "hn_id": "46200850",
+ "title": "Benchmarking Vulnerability of Agent-Generated Code in Real-World Tasks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46200850",
+ "created_at": "2025-12-09T03:13:01Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 19,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/security-assertions-by-2023/hn.json b/papers/security-assertions-by-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44784297",
+ "title": "GHz spiking neuromorphic photonic chip with in-situ training",
+ "points": 115,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=44784297",
+ "created_at": "2025-08-04T11:21:05Z"
+ },
+ {
+ "hn_id": "32276219",
+ "title": "The importance of exponentially more computing power",
+ "points": 72,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=32276219",
+ "created_at": "2022-07-29T12:52:31Z"
+ },
+ {
+ "hn_id": "41703726",
+ "title": "A Comprehensive Analysis of Package Hallucinations by Code Generating LLMs",
+ "points": 31,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=41703726",
+ "created_at": "2024-10-01T01:06:50Z"
+ },
+ {
+ "hn_id": "40727755",
+ "title": "Adversarial Perturbations Cannot Reliably Protect Artists from Generative AI",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40727755",
+ "created_at": "2024-06-19T12:45:11Z"
+ },
+ {
+ "hn_id": "40755630",
+ "title": "Adversarial Perturbations Cannot Reliably Protect Artists from Generative AI",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40755630",
+ "created_at": "2024-06-22T02:16:18Z"
+ },
+ {
+ "hn_id": "46360656",
+ "title": "Early proofs of Hilbert's Nullstellensatz (2023)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46360656",
+ "created_at": "2025-12-22T23:46:31Z"
+ },
+ {
+ "hn_id": "44339875",
+ "title": "CVDP: LLM Benchmark for Verilog RTL Design and Verification",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44339875",
+ "created_at": "2025-06-21T18:58:45Z"
+ },
+ {
+ "hn_id": "40824471",
+ "title": "Investigating the Effect of Display Refresh Rate on First-Person Shooting Games",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40824471",
+ "created_at": "2024-06-28T19:43:22Z"
+ },
+ {
+ "hn_id": "42374470",
+ "title": "PyPIM: Integrating Digital Processing-in-Memory from Microarchitectural Design",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42374470",
+ "created_at": "2024-12-10T06:56:41Z"
+ },
+ {
+ "hn_id": "44324333",
+ "title": "Learning-based density-equalizing map",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44324333",
+ "created_at": "2025-06-20T02:54:40Z"
+ }
+ ],
+ "top_points": 115,
+ "total_points": 240,
+ "total_comments": 52
+}
+\ No newline at end of file
diff --git a/papers/security-degradation-iterative-2025/hn.json b/papers/security-degradation-iterative-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "44699521",
+ "title": "Does visualization help AI understand data?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44699521",
+ "created_at": "2025-07-27T07:33:53Z"
+ },
+ {
+ "hn_id": "44257355",
+ "title": "Reasoning Language Models: A Blueprint",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44257355",
+ "created_at": "2025-06-12T13:07:26Z"
+ },
+ {
+ "hn_id": "40802608",
+ "title": "Evaluating Reasoning by LLMs Using the New York Times Connections Word Game",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40802608",
+ "created_at": "2024-06-26T17:59:12Z"
+ },
+ {
+ "hn_id": "45461358",
+ "title": "Security Degradation in Iterative AI Code Generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45461358",
+ "created_at": "2025-10-03T10:47:00Z"
+ },
+ {
+ "hn_id": "43410189",
+ "title": "LLMs Are Bug Replicators: An Empirical Study on LLMs' Completing Bug-Prone Code",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43410189",
+ "created_at": "2025-03-19T10:27:02Z"
+ },
+ {
+ "hn_id": "38626277",
+ "title": "An Introduction to the Compute Express Link (CXL) Interconnect",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38626277",
+ "created_at": "2023-12-13T12:18:22Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 10,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/selfconsistency-improves-chain-2022/hn.json b/papers/selfconsistency-improves-chain-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "22702751",
+ "title": "Mathematical Modeling of Epidemic Diseases; a Case Study of the Coronavirus",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22702751",
+ "created_at": "2020-03-27T13:45:03Z"
+ },
+ {
+ "hn_id": "37799577",
+ "title": "The Alberta Plan for AI Research",
+ "points": 11,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37799577",
+ "created_at": "2023-10-07T06:52:42Z"
+ },
+ {
+ "hn_id": "36688863",
+ "title": "ME/CFS and Long Covid similarities: road map to the literature",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36688863",
+ "created_at": "2023-07-12T00:14:14Z"
+ },
+ {
+ "hn_id": "35507525",
+ "title": "The Alberta Plan for AI Research – Richard S. Sutton et al.",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35507525",
+ "created_at": "2023-04-09T23:33:38Z"
+ },
+ {
+ "hn_id": "30827709",
+ "title": "To Type, or Not to Type",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30827709",
+ "created_at": "2022-03-28T06:30:59Z"
+ },
+ {
+ "hn_id": "37743457",
+ "title": "Quality of JavaScript and TypeScript Applications on GitHub",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37743457",
+ "created_at": "2023-10-02T19:45:47Z"
+ },
+ {
+ "hn_id": "38054920",
+ "title": "TypeScript has less code smells than JavaScript",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38054920",
+ "created_at": "2023-10-29T01:00:19Z"
+ },
+ {
+ "hn_id": "37433157",
+ "title": "To Type or Not to Type? A Comparison of the Quality of JavaScript and TS Apps",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37433157",
+ "created_at": "2023-09-08T13:24:25Z"
+ },
+ {
+ "hn_id": "32222695",
+ "title": "Silent Spring: Prototype Pollution Leads to Remote Code Execution in Node.js",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=32222695",
+ "created_at": "2022-07-25T10:42:42Z"
+ },
+ {
+ "hn_id": "32239122",
+ "title": "Prototype Pollution Leads to Remote Code Execution in Node.js",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32239122",
+ "created_at": "2022-07-26T14:51:28Z"
+ }
+ ],
+ "top_points": 12,
+ "total_points": 41,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/selforganized-agents-llm-2024/hn.json b/papers/selforganized-agents-llm-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43565234",
+ "title": "Lorentz Invariance Violation?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43565234",
+ "created_at": "2025-04-03T05:47:07Z"
+ },
+ {
+ "hn_id": "41006162",
+ "title": "The Dynamical Origins of the Dark Comets and a Proposed Evolutionary Track",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41006162",
+ "created_at": "2024-07-19T13:11:14Z"
+ },
+ {
+ "hn_id": "39742652",
+ "title": "A Case Study on the Impact of ChatGPT on AI Conference Peer Reviews",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39742652",
+ "created_at": "2024-03-18T11:34:55Z"
+ },
+ {
+ "hn_id": "42970476",
+ "title": "Altermagnetism: Exploring New Frontiers in Magnetism and Spintronics",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42970476",
+ "created_at": "2025-02-07T07:58:09Z"
+ },
+ {
+ "hn_id": "41446864",
+ "title": "Dart Impact Ejecta to Mars and Earth: Meteor Observation Opportunities",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41446864",
+ "created_at": "2024-09-04T15:24:04Z"
+ },
+ {
+ "hn_id": "41292700",
+ "title": "Treating the Intent Detection Problem as Dynamics in a Low-Dimensional Space",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41292700",
+ "created_at": "2024-08-19T17:01:52Z"
+ },
+ {
+ "hn_id": "40850219",
+ "title": "The Factorization Curse: Which Tokens You Predict Underlie the Reversal Curse",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40850219",
+ "created_at": "2024-07-01T20:20:59Z"
+ },
+ {
+ "hn_id": "40710779",
+ "title": "The Factorization Curse: Which Tokens You Predict Underlie the Reversal Curse",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40710779",
+ "created_at": "2024-06-17T20:37:20Z"
+ },
+ {
+ "hn_id": "39993650",
+ "title": "A Case Study on the Impact of ChatGPT on AI Conference Peer Reviews",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39993650",
+ "created_at": "2024-04-10T17:49:12Z"
+ },
+ {
+ "hn_id": "39909692",
+ "title": "Monitoring AI-Modified Content: Impact of ChatGPT on AI Conference Peer Reviews",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39909692",
+ "created_at": "2024-04-02T19:12:10Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 14,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/semisupervised-cascaded-clustering-2022/hn.json b/papers/semisupervised-cascaded-clustering-2022/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "34485631",
+ "title": "Neural Networks and the Chomsky Hierarchy",
+ "points": 164,
+ "comments": 79,
+ "url": "https://news.ycombinator.com/item?id=34485631",
+ "created_at": "2023-01-23T04:55:38Z"
+ },
+ {
+ "hn_id": "32346962",
+ "title": "Detection of Compiler- and Linker-Introduced Leakage",
+ "points": 18,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32346962",
+ "created_at": "2022-08-04T19:03:15Z"
+ },
+ {
+ "hn_id": "32121105",
+ "title": "Neural Networks and the Chomsky Hierarchy by DeepMind",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=32121105",
+ "created_at": "2022-07-16T19:25:01Z"
+ },
+ {
+ "hn_id": "23369699",
+ "title": "Lip2Wav: Synthesize Speech Only from the Lip Movements",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23369699",
+ "created_at": "2020-05-31T14:12:02Z"
+ },
+ {
+ "hn_id": "39271901",
+ "title": "An Intelligent PDF Reader for Scientific Papers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39271901",
+ "created_at": "2024-02-06T07:44:40Z"
+ },
+ {
+ "hn_id": "40421419",
+ "title": "Constant Velocity Physical Warp Drive Solution",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=40421419",
+ "created_at": "2024-05-20T22:45:34Z"
+ },
+ {
+ "hn_id": "40317081",
+ "title": "Constant Velocity Physical Warp Drive Solution",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40317081",
+ "created_at": "2024-05-10T09:56:05Z"
+ },
+ {
+ "hn_id": "40307165",
+ "title": "Constant Velocity Physical Warp Drive Solution",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40307165",
+ "created_at": "2024-05-09T11:42:14Z"
+ },
+ {
+ "hn_id": "40379299",
+ "title": "Constant Velocity Physical Warp Drive Solution",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40379299",
+ "created_at": "2024-05-16T15:05:09Z"
+ },
+ {
+ "hn_id": "35829674",
+ "title": "CodeGen2: Lessons for Training LLMs on Programming and Natural Languages",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35829674",
+ "created_at": "2023-05-05T14:28:08Z"
+ }
+ ],
+ "top_points": 164,
+ "total_points": 210,
+ "total_comments": 84
+}
+\ No newline at end of file
diff --git a/papers/sensorium-arc-ai-2025/hn.json b/papers/sensorium-arc-ai-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42295597",
+ "title": "Kleene algebra with commutativity conditions is undecidable",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42295597",
+ "created_at": "2024-12-02T12:37:41Z"
+ },
+ {
+ "hn_id": "40689052",
+ "title": "Microarchitectural Security of AWS Firecracker VMM for Serverless Cloud (2023)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40689052",
+ "created_at": "2024-06-15T11:25:54Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 8,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/sequential-enumeration-large-2025/hn.json b/papers/sequential-enumeration-large-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "47401734",
+ "title": "Speed at the cost of quality: Study of use of Cursor AI in open source projects (2025)",
+ "points": 147,
+ "comments": 80,
+ "url": "https://news.ycombinator.com/item?id=47401734",
+ "created_at": "2026-03-16T17:07:37Z"
+ },
+ {
+ "hn_id": "42979846",
+ "title": "Value-Based Deep RL Scales Predictably",
+ "points": 68,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=42979846",
+ "created_at": "2025-02-08T02:36:38Z"
+ },
+ {
+ "hn_id": "45968758",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 14,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45968758",
+ "created_at": "2025-11-18T16:50:19Z"
+ },
+ {
+ "hn_id": "46730534",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46730534",
+ "created_at": "2026-01-23T09:54:11Z"
+ },
+ {
+ "hn_id": "46658985",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46658985",
+ "created_at": "2026-01-17T15:53:22Z"
+ },
+ {
+ "hn_id": "45998822",
+ "title": "Does AI-Assisted Coding Deliver? A Difference-in-Differences Study",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45998822",
+ "created_at": "2025-11-20T22:36:21Z"
+ },
+ {
+ "hn_id": "45951387",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45951387",
+ "created_at": "2025-11-17T06:57:28Z"
+ },
+ {
+ "hn_id": "46441898",
+ "title": "The Wave Function of the Universe and Inflation",
+ "points": 1,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46441898",
+ "created_at": "2025-12-31T06:21:23Z"
+ },
+ {
+ "hn_id": "46180812",
+ "title": "Does AI-Assisted Coding Deliver? A Difference-in-Differences Study",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46180812",
+ "created_at": "2025-12-07T10:54:26Z"
+ },
+ {
+ "hn_id": "46070691",
+ "title": "A Difference-in-Differences Study of Cursor's Impact on Software Projects",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46070691",
+ "created_at": "2025-11-27T16:21:41Z"
+ }
+ ],
+ "top_points": 147,
+ "total_points": 240,
+ "total_comments": 88
+}
+\ No newline at end of file
diff --git a/papers/sherlock-reliable-efficient-2025/hn.json b/papers/sherlock-reliable-efficient-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "45721160",
+ "title": "EntropyLong: Effective Long-Context Training via Predictive Uncertainty",
+ "points": 15,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45721160",
+ "created_at": "2025-10-27T14:04:48Z"
+ },
+ {
+ "hn_id": "45917707",
+ "title": "Probing Knowledge Holes in Unlearned LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45917707",
+ "created_at": "2025-11-13T17:27:48Z"
+ },
+ {
+ "hn_id": "42245878",
+ "title": "Scaling Laws for Precision",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42245878",
+ "created_at": "2024-11-26T14:08:00Z"
+ },
+ {
+ "hn_id": "38885570",
+ "title": "BGP Typo: A Longitudinal Study and Remedies",
+ "points": 1,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=38885570",
+ "created_at": "2024-01-05T22:01:26Z"
+ },
+ {
+ "hn_id": "42648810",
+ "title": "Neural Parameter Estimation with Incomplete Data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42648810",
+ "created_at": "2025-01-09T19:04:36Z"
+ }
+ ],
+ "top_points": 15,
+ "total_points": 21,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/shroomindelab-at-semeval2024-2024/hn.json b/papers/shroomindelab-at-semeval2024-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40932006",
+ "title": "An abundance of Katherines: The game theory of baby naming",
+ "points": 288,
+ "comments": 148,
+ "url": "https://news.ycombinator.com/item?id=40932006",
+ "created_at": "2024-07-10T22:08:41Z"
+ },
+ {
+ "hn_id": "40926515",
+ "title": "Training of Physical Neural Networks",
+ "points": 142,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=40926515",
+ "created_at": "2024-07-10T13:13:51Z"
+ },
+ {
+ "hn_id": "39660780",
+ "title": "How far are we from intelligent visual deductive reasoning?",
+ "points": 124,
+ "comments": 118,
+ "url": "https://news.ycombinator.com/item?id=39660780",
+ "created_at": "2024-03-10T17:17:11Z"
+ },
+ {
+ "hn_id": "41565108",
+ "title": "Planning in Natural Language Improves LLM Search for Code Generation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41565108",
+ "created_at": "2024-09-17T07:08:20Z"
+ },
+ {
+ "hn_id": "41470885",
+ "title": "Planning in Natural Language Improves LLM Search for Code Generation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41470885",
+ "created_at": "2024-09-07T01:16:28Z"
+ },
+ {
+ "hn_id": "40442549",
+ "title": "LoRA Land: 310 Fine-Tuned LLMs That Rival GPT-4, a Technical Report",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40442549",
+ "created_at": "2024-05-22T16:00:35Z"
+ },
+ {
+ "hn_id": "40251578",
+ "title": "LoRA Land: 310 Fine-Tuned LLMs That Rival GPT-4, a Technical Report",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40251578",
+ "created_at": "2024-05-03T19:47:14Z"
+ },
+ {
+ "hn_id": "44000313",
+ "title": "Why do LLMs attend to the first token?",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44000313",
+ "created_at": "2025-05-15T23:15:20Z"
+ },
+ {
+ "hn_id": "43655654",
+ "title": "Security and Privacy Issues in WhatsApp's Handshake Mechanism",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43655654",
+ "created_at": "2025-04-11T16:28:55Z"
+ },
+ {
+ "hn_id": "39991672",
+ "title": "Small Changes and Jailbreaks Affect Large Language Model Performance",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39991672",
+ "created_at": "2024-04-10T15:16:08Z"
+ }
+ ],
+ "top_points": 288,
+ "total_points": 572,
+ "total_comments": 314
+}
+\ No newline at end of file
diff --git a/papers/sidiffagent-selfimproving-diffusion-2026/hn.json b/papers/sidiffagent-selfimproving-diffusion-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/signedprompt-new-approach-2024/hn.json b/papers/signedprompt-new-approach-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/significant-productivity-gains-2024/hn.json b/papers/significant-productivity-gains-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/simple-llm-baselines-2026/hn.json b/papers/simple-llm-baselines-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/simulationguided-llmbased-code-2025/hn.json b/papers/simulationguided-llmbased-code-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43390400",
+ "title": "Deep Learning Is Not So Mysterious or Different",
+ "points": 485,
+ "comments": 126,
+ "url": "https://news.ycombinator.com/item?id=43390400",
+ "created_at": "2025-03-17T16:47:02Z"
+ },
+ {
+ "hn_id": "35472750",
+ "title": "A radiation hard RISC-V microprocessor for high-energy physics applications",
+ "points": 111,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=35472750",
+ "created_at": "2023-04-06T18:54:30Z"
+ },
+ {
+ "hn_id": "41061085",
+ "title": "Avoiding Model Collapse via Accumulating Real and Synthetic Data",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41061085",
+ "created_at": "2024-07-24T19:42:56Z"
+ },
+ {
+ "hn_id": "40235449",
+ "title": "Is Model Collapse Inevitable?",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40235449",
+ "created_at": "2024-05-02T12:36:02Z"
+ },
+ {
+ "hn_id": "39941576",
+ "title": "Jailbreaking Leading Safety-Aligned LLMs with Simple Adaptive Attacks",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39941576",
+ "created_at": "2024-04-05T12:30:05Z"
+ },
+ {
+ "hn_id": "39972589",
+ "title": "Is Model Collapse Inevitable? Breaking the Curse with Real and Synthetic Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39972589",
+ "created_at": "2024-04-08T18:47:58Z"
+ },
+ {
+ "hn_id": "43703965",
+ "title": "LLMs, Syntax, and Semantics: Long-Distance Binding of Chinese Reflexive Ziji",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43703965",
+ "created_at": "2025-04-16T11:22:09Z"
+ },
+ {
+ "hn_id": "40552810",
+ "title": "Is Model Collapse Inevitable? Breaking the Curse of Recursion",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40552810",
+ "created_at": "2024-06-02T09:48:29Z"
+ },
+ {
+ "hn_id": "43291939",
+ "title": "Deep Learning Is Not So Mysterious or Different",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43291939",
+ "created_at": "2025-03-07T17:11:27Z"
+ },
+ {
+ "hn_id": "43255649",
+ "title": "How Well Do LLMs Compress Their Own Chain-of-Thought?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43255649",
+ "created_at": "2025-03-04T15:08:40Z"
+ }
+ ],
+ "top_points": 485,
+ "total_points": 618,
+ "total_comments": 175
+}
+\ No newline at end of file
diff --git a/papers/single-direction-truth-2025/hn.json b/papers/single-direction-truth-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "44440356",
+ "title": "On the Feasibility of Deduplicating Compiler Bugs with Bisection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44440356",
+ "created_at": "2025-07-02T04:54:30Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/singleagent-scaling-fails-2025/hn.json b/papers/singleagent-scaling-fails-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45854862",
+ "title": "Making Democracy Work: Fixing and Simplifying Egalitarian Paxos",
+ "points": 180,
+ "comments": 56,
+ "url": "https://news.ycombinator.com/item?id=45854862",
+ "created_at": "2025-11-08T07:29:35Z"
+ },
+ {
+ "hn_id": "42978639",
+ "title": "DocVLM: Make Your VLM an Efficient Reader",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42978639",
+ "created_at": "2025-02-07T23:20:57Z"
+ },
+ {
+ "hn_id": "25456448",
+ "title": "Cross Layer Attacks and How to Use Them",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=25456448",
+ "created_at": "2020-12-17T15:33:42Z"
+ },
+ {
+ "hn_id": "45925934",
+ "title": "Artificially intelligent agents in the social and behavioral sciences: A history",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45925934",
+ "created_at": "2025-11-14T11:49:02Z"
+ },
+ {
+ "hn_id": "45609137",
+ "title": "Modeling Developer Burnout with GenAI Adoption",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45609137",
+ "created_at": "2025-10-16T18:43:48Z"
+ },
+ {
+ "hn_id": "25449265",
+ "title": "Cross Layer Attacks and How to Use Them (For DNS Cache Poisoning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25449265",
+ "created_at": "2020-12-16T21:51:22Z"
+ }
+ ],
+ "top_points": 180,
+ "total_points": 186,
+ "total_comments": 57
+}
+\ No newline at end of file
diff --git a/papers/singlehead-attention-high-2025/hn.json b/papers/singlehead-attention-high-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "44162771",
+ "title": "3D CAD from Images, Text, and Point Clouds with RLVR",
+ "points": 13,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44162771",
+ "created_at": "2025-06-02T20:37:52Z"
+ }
+ ],
+ "top_points": 13,
+ "total_points": 13,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/singlemulti-evolution-loop-2026/hn.json b/papers/singlemulti-evolution-loop-2026/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46924591",
+ "title": "First Proof",
+ "points": 186,
+ "comments": 122,
+ "url": "https://news.ycombinator.com/item?id=46924591",
+ "created_at": "2026-02-07T15:25:49Z"
+ },
+ {
+ "hn_id": "46909953",
+ "title": "First Proof",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46909953",
+ "created_at": "2026-02-06T07:00:23Z"
+ },
+ {
+ "hn_id": "47326182",
+ "title": "A Methodological Critique of \"First Proof\" (Abouzaid et al., 2026)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47326182",
+ "created_at": "2026-03-10T17:21:04Z"
+ },
+ {
+ "hn_id": "47166669",
+ "title": "Randomness Becomes an Attack Vector in Machine Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47166669",
+ "created_at": "2026-02-26T14:35:15Z"
+ }
+ ],
+ "top_points": 186,
+ "total_points": 190,
+ "total_comments": 123
+}
+\ No newline at end of file
diff --git a/papers/six-sigma-agent-2026/hn.json b/papers/six-sigma-agent-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46519961",
+ "title": "Coxeter and Dynkin Diagrams",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46519961",
+ "created_at": "2026-01-06T22:50:59Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/skate-scalable-tournament-2025/hn.json b/papers/skate-scalable-tournament-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "24268698",
+ "title": "Intelligent Architectures for Intelligent Machines",
+ "points": 13,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24268698",
+ "created_at": "2020-08-25T06:45:11Z"
+ },
+ {
+ "hn_id": "44514297",
+ "title": "Fun with flags: How Compilers Break and Fix Constant-Time Code",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44514297",
+ "created_at": "2025-07-09T20:13:02Z"
+ },
+ {
+ "hn_id": "44859559",
+ "title": "Modern Methods in Associative Memory",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44859559",
+ "created_at": "2025-08-10T23:58:49Z"
+ },
+ {
+ "hn_id": "28196179",
+ "title": "The Threat of Voltage Glitching: A Case Study on Nvidia Tegra X2 SoCs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28196179",
+ "created_at": "2021-08-16T08:59:38Z"
+ },
+ {
+ "hn_id": "44582856",
+ "title": "A LoD of Gaussians: Ultra-Large Scale Reconstruction with External Memory",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44582856",
+ "created_at": "2025-07-16T14:40:05Z"
+ },
+ {
+ "hn_id": "44561157",
+ "title": "The Kinematic Age of 3I/Atlas and Its Implications for Early Planet Formation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44561157",
+ "created_at": "2025-07-14T15:12:25Z"
+ },
+ {
+ "hn_id": "43678932",
+ "title": "Wanting to Be Understood",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43678932",
+ "created_at": "2025-04-14T07:30:01Z"
+ },
+ {
+ "hn_id": "45867965",
+ "title": "FPI-Det: A Face–Phone Interaction Dataset for Phone-Use Detection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45867965",
+ "created_at": "2025-11-09T18:43:52Z"
+ }
+ ],
+ "top_points": 13,
+ "total_points": 36,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/skillorchestra-learning-route-2026/hn.json b/papers/skillorchestra-learning-route-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47156186",
+ "title": "Hexagon-MLIR: An AI Compilation Stack for Qualcomm's NPUs",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47156186",
+ "created_at": "2026-02-25T19:04:03Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/sleeper-agents-2024/hn.json b/papers/sleeper-agents-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "38974404",
+ "title": "Sleeper Agents: Training Deceptive LLMs That Persist Through Safety Training",
+ "points": 143,
+ "comments": 17,
+ "url": "https://news.ycombinator.com/item?id=38974404",
+ "created_at": "2024-01-12T21:31:59Z"
+ }
+ ],
+ "top_points": 143,
+ "total_points": 143,
+ "total_comments": 17
+}
+\ No newline at end of file
diff --git a/papers/slidesgenbench-evaluating-slides-2026/hn.json b/papers/slidesgenbench-evaluating-slides-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/sloconditioned-action-routing-2025/hn.json b/papers/sloconditioned-action-routing-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46559301",
+ "title": "Deep Delta Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46559301",
+ "created_at": "2026-01-09T21:04:16Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/smoothquant-accurate-efficient-2022/hn.json b/papers/smoothquant-accurate-efficient-2022/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "33334233",
+ "title": "High Fidelity Neural Audio Compression",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33334233",
+ "created_at": "2022-10-25T18:16:26Z"
+ },
+ {
+ "hn_id": "33448213",
+ "title": "High Fidelity Neural Audio Compression",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33448213",
+ "created_at": "2022-11-03T07:57:04Z"
+ },
+ {
+ "hn_id": "46465744",
+ "title": "Firmhive: LLMs as Firmware Experts, a Runtime-Grown Tree-of-Agents Framework",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46465744",
+ "created_at": "2026-01-02T15:33:38Z"
+ },
+ {
+ "hn_id": "35460526",
+ "title": "Show HN: Guesstimate – Generate a spreadsheet-like interface for any question",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35460526",
+ "created_at": "2023-04-05T21:21:00Z"
+ },
+ {
+ "hn_id": "34590248",
+ "title": "Program Aided Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34590248",
+ "created_at": "2023-01-31T02:51:56Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 11,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/socialveil-probing-social-2026/hn.json b/papers/socialveil-probing-social-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/sok-comprehensive-causality-2025/hn.json b/papers/sok-comprehensive-causality-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "45506268",
+ "title": "Less is more: Recursive reasoning with tiny networks",
+ "points": 323,
+ "comments": 71,
+ "url": "https://news.ycombinator.com/item?id=45506268",
+ "created_at": "2025-10-07T17:42:06Z"
+ },
+ {
+ "hn_id": "38636225",
+ "title": "Do black holes have singularities?",
+ "points": 139,
+ "comments": 215,
+ "url": "https://news.ycombinator.com/item?id=38636225",
+ "created_at": "2023-12-14T00:26:25Z"
+ },
+ {
+ "hn_id": "45516346",
+ "title": "Samsung released a 7M model that achieved 45% on ARC-AGI-1",
+ "points": 34,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=45516346",
+ "created_at": "2025-10-08T14:04:40Z"
+ },
+ {
+ "hn_id": "45542329",
+ "title": "Less is More: An LLM that outscores Claude Sonnet 4 while being 50.000x smaller",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45542329",
+ "created_at": "2025-10-10T18:43:52Z"
+ },
+ {
+ "hn_id": "45522827",
+ "title": "Less Is More: Recursive Reasoning with Tiny Networks",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45522827",
+ "created_at": "2025-10-09T02:23:09Z"
+ },
+ {
+ "hn_id": "45535098",
+ "title": "Less is More: An LLM that outscores Claude Sonnet 4 while being 50.000x smaller",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45535098",
+ "created_at": "2025-10-10T03:19:10Z"
+ },
+ {
+ "hn_id": "45516900",
+ "title": "Show HN: Recursive Reasoning with Tiny Networks in the Browser",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45516900",
+ "created_at": "2025-10-08T14:55:44Z"
+ }
+ ],
+ "top_points": 323,
+ "total_points": 506,
+ "total_comments": 301
+}
+\ No newline at end of file
diff --git a/papers/sok-trustauthorization-mismatch-2025/hn.json b/papers/sok-trustauthorization-mismatch-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42810048",
+ "title": "CogAgent: Open-Source Alternative to OpenAI Operator Agent from China",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42810048",
+ "created_at": "2025-01-24T02:43:31Z"
+ },
+ {
+ "hn_id": "44301799",
+ "title": "CURE: A Dataset for Clinical Understanding and Retrieval Evaluation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44301799",
+ "created_at": "2025-06-17T17:49:13Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/soleval-benchmarking-large-2025/hn.json b/papers/soleval-benchmarking-large-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43198812",
+ "title": "Symmetries of Living Systems",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43198812",
+ "created_at": "2025-02-27T21:41:54Z"
+ }
+ ],
+ "top_points": 8,
+ "total_points": 8,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/spec2rtlagent-automated-hardware-2025/hn.json b/papers/spec2rtlagent-automated-hardware-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45284766",
+ "title": "Towards a Physics Foundation Model",
+ "points": 117,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=45284766",
+ "created_at": "2025-09-18T03:06:08Z"
+ },
+ {
+ "hn_id": "47472965",
+ "title": "Show HN: ClawMem – Open-source agent memory with SOTA local GPU retrieval",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47472965",
+ "created_at": "2026-03-22T00:13:15Z"
+ },
+ {
+ "hn_id": "44338658",
+ "title": "Buy It Now, Track Me Later: Attacking User Privacy via Wi-Fi AP Online Auctions",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44338658",
+ "created_at": "2025-06-21T16:14:13Z"
+ },
+ {
+ "hn_id": "47330368",
+ "title": "Game Modding with GenAI: A Case Study of Stardew Valley Character Maker",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47330368",
+ "created_at": "2026-03-11T00:08:23Z"
+ },
+ {
+ "hn_id": "43537835",
+ "title": "Coding Malware in Fancy Programming Languages for Fun and Profit",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43537835",
+ "created_at": "2025-03-31T18:00:38Z"
+ },
+ {
+ "hn_id": "43515023",
+ "title": "Coding Malware in Fancy Programming Languages for Fun and Profit",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43515023",
+ "created_at": "2025-03-29T12:32:07Z"
+ },
+ {
+ "hn_id": "43552992",
+ "title": "Coding Malware in Fancy Programming Languages for Fun and Profit",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43552992",
+ "created_at": "2025-04-02T01:47:15Z"
+ },
+ {
+ "hn_id": "31923407",
+ "title": "The Mathematics of Burger Flipping",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31923407",
+ "created_at": "2022-06-29T17:44:29Z"
+ },
+ {
+ "hn_id": "44465492",
+ "title": "Few-Shot Learning for Industrial Time Series: Screw-Fastening Process Monitoring",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44465492",
+ "created_at": "2025-07-04T15:41:35Z"
+ },
+ {
+ "hn_id": "43291999",
+ "title": "Think Inside the JSON: Reinforcement Strategy for Strict LLM Schema Adherence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43291999",
+ "created_at": "2025-03-07T17:19:08Z"
+ }
+ ],
+ "top_points": 117,
+ "total_points": 140,
+ "total_comments": 31
+}
+\ No newline at end of file
diff --git a/papers/specificationguided-vulnerability-detection-2025/hn.json b/papers/specificationguided-vulnerability-detection-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "46145180",
+ "title": "How elites could shape mass preferences as AI reduces persuasion costs",
+ "points": 704,
+ "comments": 661,
+ "url": "https://news.ycombinator.com/item?id=46145180",
+ "created_at": "2025-12-04T08:38:17Z"
+ },
+ {
+ "hn_id": "46120412",
+ "title": "High schoolers excel at Oxford quantum course using pictorial mathematics",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46120412",
+ "created_at": "2025-12-02T12:00:40Z"
+ },
+ {
+ "hn_id": "29211243",
+ "title": "AlphaGarden: Learning to autonomously tend a polyculture garden",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29211243",
+ "created_at": "2021-11-13T16:59:36Z"
+ },
+ {
+ "hn_id": "43022094",
+ "title": "A Survey on Large Language Models (2025)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43022094",
+ "created_at": "2025-02-12T05:08:12Z"
+ },
+ {
+ "hn_id": "42654074",
+ "title": "A Survey on LLMs with Some Insights on Their Capabilities and Limitations",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42654074",
+ "created_at": "2025-01-10T09:27:07Z"
+ }
+ ],
+ "top_points": 704,
+ "total_points": 711,
+ "total_comments": 661
+}
+\ No newline at end of file
diff --git a/papers/specifications-missing-link-2024/hn.json b/papers/specifications-missing-link-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41808683",
+ "title": "Understanding the Limitations of Mathematical Reasoning in LLMs",
+ "points": 282,
+ "comments": 266,
+ "url": "https://news.ycombinator.com/item?id=41808683",
+ "created_at": "2024-10-11T11:55:06Z"
+ },
+ {
+ "hn_id": "41804829",
+ "title": "ARIA: An Open Multimodal Native Mixture-of-Experts Model",
+ "points": 97,
+ "comments": 21,
+ "url": "https://news.ycombinator.com/item?id=41804829",
+ "created_at": "2024-10-11T00:04:52Z"
+ },
+ {
+ "hn_id": "38737262",
+ "title": "Direct initialization of transformers using larger pretrained ones",
+ "points": 48,
+ "comments": 14,
+ "url": "https://news.ycombinator.com/item?id=38737262",
+ "created_at": "2023-12-22T18:54:56Z"
+ },
+ {
+ "hn_id": "44546820",
+ "title": "ZipNN: Lossless Compression for AI Models (2024)",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44546820",
+ "created_at": "2025-07-13T01:50:24Z"
+ },
+ {
+ "hn_id": "42418821",
+ "title": "Specifications: The missing link to make development of LLM an eng discipline",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42418821",
+ "created_at": "2024-12-14T19:07:39Z"
+ },
+ {
+ "hn_id": "39361624",
+ "title": "An Interactive Agent Foundation Model",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39361624",
+ "created_at": "2024-02-13T19:23:10Z"
+ },
+ {
+ "hn_id": "42443177",
+ "title": "Memristor-Based Selective Convolutional Circuit for Salt-N-Pepper Noise Removal",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42443177",
+ "created_at": "2024-12-17T17:20:24Z"
+ },
+ {
+ "hn_id": "39429077",
+ "title": "Hydragen: High-Throughput LLM Inference with Shared Prefixes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39429077",
+ "created_at": "2024-02-19T12:35:31Z"
+ },
+ {
+ "hn_id": "33980774",
+ "title": "Graph algorithms for predicting subcellular localization at the pathway level",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33980774",
+ "created_at": "2022-12-14T06:51:58Z"
+ },
+ {
+ "hn_id": "29539537",
+ "title": "Internet, on the Ground by Nick Merrill",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29539537",
+ "created_at": "2021-12-13T13:49:47Z"
+ }
+ ],
+ "top_points": 282,
+ "total_points": 439,
+ "total_comments": 301
+}
+\ No newline at end of file
diff --git a/papers/speed-at-cost-2025/hn.json b/papers/speed-at-cost-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "47401734",
+ "title": "Speed at the cost of quality: Study of use of Cursor AI in open source projects (2025)",
+ "points": 147,
+ "comments": 80,
+ "url": "https://news.ycombinator.com/item?id=47401734",
+ "created_at": "2026-03-16T17:07:37Z"
+ },
+ {
+ "hn_id": "38283398",
+ "title": "API-Driven Program Synthesis for Testing Static Typing Implementations",
+ "points": 35,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38283398",
+ "created_at": "2023-11-15T22:19:08Z"
+ },
+ {
+ "hn_id": "45968758",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 14,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45968758",
+ "created_at": "2025-11-18T16:50:19Z"
+ },
+ {
+ "hn_id": "46730534",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46730534",
+ "created_at": "2026-01-23T09:54:11Z"
+ },
+ {
+ "hn_id": "46658985",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46658985",
+ "created_at": "2026-01-17T15:53:22Z"
+ },
+ {
+ "hn_id": "45998822",
+ "title": "Does AI-Assisted Coding Deliver? A Difference-in-Differences Study",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45998822",
+ "created_at": "2025-11-20T22:36:21Z"
+ },
+ {
+ "hn_id": "45951387",
+ "title": "Does AI-Assisted Coding Deliver? A Study of Cursor's Impact on Software Projects",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45951387",
+ "created_at": "2025-11-17T06:57:28Z"
+ },
+ {
+ "hn_id": "42127507",
+ "title": "UniGAD: Unifying Multi-Level Graph Anomaly Detection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42127507",
+ "created_at": "2024-11-13T16:32:30Z"
+ },
+ {
+ "hn_id": "46180812",
+ "title": "Does AI-Assisted Coding Deliver? A Difference-in-Differences Study",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46180812",
+ "created_at": "2025-12-07T10:54:26Z"
+ },
+ {
+ "hn_id": "46070691",
+ "title": "A Difference-in-Differences Study of Cursor's Impact on Software Projects",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46070691",
+ "created_at": "2025-11-27T16:21:41Z"
+ }
+ ],
+ "top_points": 147,
+ "total_points": 208,
+ "total_comments": 83
+}
+\ No newline at end of file
diff --git a/papers/spin-selfsupervised-prompt-2024/hn.json b/papers/spin-selfsupervised-prompt-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "29092007",
+ "title": "How Temporal Workload Shifting Can Reduce Carbon Emissions in the Cloud",
+ "points": 48,
+ "comments": 40,
+ "url": "https://news.ycombinator.com/item?id=29092007",
+ "created_at": "2021-11-03T07:37:58Z"
+ },
+ {
+ "hn_id": "42245105",
+ "title": "Regular Expressions which query an Oracle",
+ "points": 37,
+ "comments": 15,
+ "url": "https://news.ycombinator.com/item?id=42245105",
+ "created_at": "2024-11-26T12:28:34Z"
+ },
+ {
+ "hn_id": "42476186",
+ "title": "Posterior Mean Matching: Generative Modeling Through Online Bayesian Inference",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42476186",
+ "created_at": "2024-12-20T23:29:17Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 88,
+ "total_comments": 55
+}
+\ No newline at end of file
diff --git a/papers/split-personality-training-2026/hn.json b/papers/split-personality-training-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/starcoder-2023/hn.json b/papers/starcoder-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35954481",
+ "title": "StarCoder and StarCoderBase: 15.5B parameter models with 8K context length",
+ "points": 317,
+ "comments": 162,
+ "url": "https://news.ycombinator.com/item?id=35954481",
+ "created_at": "2023-05-15T21:06:05Z"
+ },
+ {
+ "hn_id": "31364849",
+ "title": "When Wireless Malware Stays on After Turning Off iPhones [pdf]",
+ "points": 36,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=31364849",
+ "created_at": "2022-05-13T08:39:19Z"
+ },
+ {
+ "hn_id": "25705505",
+ "title": "Pump and Dumps in the Bitcoin Era",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25705505",
+ "created_at": "2021-01-09T22:17:44Z"
+ },
+ {
+ "hn_id": "43906014",
+ "title": "Don't be lazy: CompleteP enables compute-efficient deep transformers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43906014",
+ "created_at": "2025-05-06T15:09:49Z"
+ },
+ {
+ "hn_id": "44109636",
+ "title": "Robotic Table Tennis Swinging Using Lightweight Hardware with Predictive Control",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44109636",
+ "created_at": "2025-05-27T18:47:12Z"
+ },
+ {
+ "hn_id": "36899188",
+ "title": "Sublinear Time Shortest Path in Expander Graphs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36899188",
+ "created_at": "2023-07-27T19:51:09Z"
+ },
+ {
+ "hn_id": "35810243",
+ "title": "Finding Neurons in a Haystack: Case Studies with Sparse Probing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35810243",
+ "created_at": "2023-05-04T01:38:36Z"
+ },
+ {
+ "hn_id": "25673902",
+ "title": "Pump and Dumps in the Bitcoin Era: Real Time Detection of Market Manipulations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25673902",
+ "created_at": "2021-01-07T17:17:19Z"
+ },
+ {
+ "hn_id": "37526373",
+ "title": "A comparison of citation-based clustering and topic modeling for science mapping",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37526373",
+ "created_at": "2023-09-15T17:24:11Z"
+ },
+ {
+ "hn_id": "37559058",
+ "title": "Characterizing Latent Perspectives of Media Houses Towards Public Figures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37559058",
+ "created_at": "2023-09-18T17:20:25Z"
+ }
+ ],
+ "top_points": 317,
+ "total_points": 378,
+ "total_comments": 168
+}
+\ No newline at end of file
diff --git a/papers/starcoder2-2024/hn.json b/papers/starcoder2-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "39558803",
+ "title": "StarCoder 2 and The Stack v2: The Next Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39558803",
+ "created_at": "2024-03-01T05:22:29Z"
+ },
+ {
+ "hn_id": "39606851",
+ "title": "StarCoder 2 and the Stack v2",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39606851",
+ "created_at": "2024-03-05T17:50:32Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/stateflow-enhancing-llm-2024/hn.json b/papers/stateflow-enhancing-llm-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "40766833",
+ "title": "The Origin of Jupiter's Great Red Spot",
+ "points": 48,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=40766833",
+ "created_at": "2024-06-23T12:08:22Z"
+ },
+ {
+ "hn_id": "42238858",
+ "title": "Telepathic Datacenters: Fast RPCs Using Shared CXL Memory",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42238858",
+ "created_at": "2024-11-25T18:41:44Z"
+ },
+ {
+ "hn_id": "35075525",
+ "title": "Hydrodynamics and survivability during post main-sequence engulfment",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35075525",
+ "created_at": "2023-03-08T22:17:43Z"
+ },
+ {
+ "hn_id": "42265487",
+ "title": "Fast RPCs Using Shared CXL Memory [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42265487",
+ "created_at": "2024-11-28T14:27:09Z"
+ },
+ {
+ "hn_id": "41528121",
+ "title": "Telepathic Datacenters: Fast RPCs Using Shared CXL Memory",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41528121",
+ "created_at": "2024-09-13T04:55:44Z"
+ },
+ {
+ "hn_id": "40488703",
+ "title": "Dishonest Approximate Computing: A Coming Crisis for Cloud Clients",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40488703",
+ "created_at": "2024-05-27T08:05:28Z"
+ }
+ ],
+ "top_points": 48,
+ "total_points": 59,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/statically-contextualizing-large-2024/hn.json b/papers/statically-contextualizing-large-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "40005077",
+ "title": "Autonomous LLM agents with human-out-of-loop",
+ "points": 14,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=40005077",
+ "created_at": "2024-04-11T18:10:51Z"
+ },
+ {
+ "hn_id": "39638120",
+ "title": "D-Wave makes new quantum supremacy claim",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39638120",
+ "created_at": "2024-03-08T05:38:37Z"
+ },
+ {
+ "hn_id": "39610787",
+ "title": "Computational Supremacy in Quantum Simulation",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39610787",
+ "created_at": "2024-03-06T00:22:54Z"
+ },
+ {
+ "hn_id": "40053439",
+ "title": "GPT-4 Vision Can Estimate Building Age Epoch",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40053439",
+ "created_at": "2024-04-16T15:40:14Z"
+ },
+ {
+ "hn_id": "39653911",
+ "title": "A new claim to quantum supremacy",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39653911",
+ "created_at": "2024-03-09T18:59:12Z"
+ }
+ ],
+ "top_points": 14,
+ "total_points": 30,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/steering-llms-scalable-2026/hn.json b/papers/steering-llms-scalable-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/stellar-searchbased-testing-2026/hn.json b/papers/stellar-searchbased-testing-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46559301",
+ "title": "Deep Delta Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46559301",
+ "created_at": "2026-01-09T21:04:16Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/stelp-secure-transpilation-2026/hn.json b/papers/stelp-secure-transpilation-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/stepshield-when-not-2026/hn.json b/papers/stepshield-when-not-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/stop-wasting-your-2025/hn.json b/papers/stop-wasting-your-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45772057",
+ "title": "Emu3.5: Native Multimodal Models Are World Learners",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45772057",
+ "created_at": "2025-10-31T13:58:56Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/strategic-dishonesty-safety-evals-2025/hn.json b/papers/strategic-dishonesty-safety-evals-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37699312",
+ "title": "AnyMAL: An Efficient and Scalable Any-Modality Augmented Language Model",
+ "points": 41,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=37699312",
+ "created_at": "2023-09-29T04:36:20Z"
+ },
+ {
+ "hn_id": "42886971",
+ "title": "Thoughts Are All over the Place: On the Underthinking of O1-Like LLMs",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42886971",
+ "created_at": "2025-01-31T12:26:07Z"
+ },
+ {
+ "hn_id": "43537835",
+ "title": "Coding Malware in Fancy Programming Languages for Fun and Profit",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43537835",
+ "created_at": "2025-03-31T18:00:38Z"
+ },
+ {
+ "hn_id": "43515023",
+ "title": "Coding Malware in Fancy Programming Languages for Fun and Profit",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43515023",
+ "created_at": "2025-03-29T12:32:07Z"
+ },
+ {
+ "hn_id": "42891063",
+ "title": "Coverage Semantics for Dependent Pattern Matching",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42891063",
+ "created_at": "2025-01-31T19:43:45Z"
+ },
+ {
+ "hn_id": "43837803",
+ "title": "Fast-Slow Thinking for Large Vision-Language Model Reasoning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43837803",
+ "created_at": "2025-04-29T20:41:58Z"
+ },
+ {
+ "hn_id": "43777601",
+ "title": "Assistance or Disruption? Evaluating the Design of Proactive AI Programming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43777601",
+ "created_at": "2025-04-23T23:02:02Z"
+ },
+ {
+ "hn_id": "43552992",
+ "title": "Coding Malware in Fancy Programming Languages for Fun and Profit",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43552992",
+ "created_at": "2025-04-02T01:47:15Z"
+ },
+ {
+ "hn_id": "43265832",
+ "title": "Evaluating Intelligence via Trial and Error",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43265832",
+ "created_at": "2025-03-05T12:51:05Z"
+ },
+ {
+ "hn_id": "37507459",
+ "title": "Towards Robots That Influence Humans over Long-Term Interaction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37507459",
+ "created_at": "2023-09-14T11:19:46Z"
+ }
+ ],
+ "top_points": 41,
+ "total_points": 64,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/strongermas-multiagent-reinforcement-2025/hn.json b/papers/strongermas-multiagent-reinforcement-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "37946295",
+ "title": "Could a Kilonova Kill: A Threat Assessment",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37946295",
+ "created_at": "2023-10-19T18:05:12Z"
+ },
+ {
+ "hn_id": "28970112",
+ "title": "Stipula: DSL that assists lawyers in programming legal contracts",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28970112",
+ "created_at": "2021-10-23T16:45:10Z"
+ },
+ {
+ "hn_id": "33352589",
+ "title": "Exploration of M31 via Black-Hole Slingshots and the “Intergalactic Imperative”",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33352589",
+ "created_at": "2022-10-27T03:05:59Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 8,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/subliminal-corruption-mechanisms-2025/hn.json b/papers/subliminal-corruption-mechanisms-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46363993",
+ "title": "Classical billiards can compute (2d billiard systems are Turing complete)",
+ "points": 32,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=46363993",
+ "created_at": "2025-12-23T10:05:00Z"
+ },
+ {
+ "hn_id": "46047270",
+ "title": "3I/Atlas spectrophotometric evidence: metal-bearing, carbonaceous, pristine",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46047270",
+ "created_at": "2025-11-25T16:15:49Z"
+ },
+ {
+ "hn_id": "41965188",
+ "title": "Improving Pinterest Search Relevance Using LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41965188",
+ "created_at": "2024-10-27T20:00:39Z"
+ },
+ {
+ "hn_id": "38022154",
+ "title": "Toward an Ontology for Third Generation Systems Thinking",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38022154",
+ "created_at": "2023-10-26T05:59:56Z"
+ }
+ ],
+ "top_points": 32,
+ "total_points": 40,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/subliminal-learning-language-2025/hn.json b/papers/subliminal-learning-language-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45284766",
+ "title": "Towards a Physics Foundation Model",
+ "points": 117,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=45284766",
+ "created_at": "2025-09-18T03:06:08Z"
+ },
+ {
+ "hn_id": "43300062",
+ "title": "Smaller but Better: Unifying Layout Generation with Smaller LLMs",
+ "points": 24,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=43300062",
+ "created_at": "2025-03-08T13:23:30Z"
+ },
+ {
+ "hn_id": "43307759",
+ "title": "Accelerating Long-Context LLM Inference via Two-Stage KV Cache Compression",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43307759",
+ "created_at": "2025-03-09T10:08:13Z"
+ },
+ {
+ "hn_id": "44936480",
+ "title": "Caote: KV Cache Eviction for LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44936480",
+ "created_at": "2025-08-18T01:21:46Z"
+ },
+ {
+ "hn_id": "46541945",
+ "title": "1000 Layer Networks for Self-Supervised RL (NeurIPS 2025 Best Paper Award)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46541945",
+ "created_at": "2026-01-08T15:13:18Z"
+ },
+ {
+ "hn_id": "45340869",
+ "title": "Wan-Animate: Unified Character Animation, Replacement with Holistic Replication",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45340869",
+ "created_at": "2025-09-22T23:23:18Z"
+ },
+ {
+ "hn_id": "42882832",
+ "title": "International AI Safety Report",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42882832",
+ "created_at": "2025-01-30T22:31:49Z"
+ },
+ {
+ "hn_id": "41138059",
+ "title": "LazyLLM: Dynamic Token Pruning for Efficient Long Context LLM Inference",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41138059",
+ "created_at": "2024-08-02T11:50:08Z"
+ },
+ {
+ "hn_id": "46088633",
+ "title": "One Thousand Layer Networks for Self-Supervised RL",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46088633",
+ "created_at": "2025-11-29T16:13:53Z"
+ },
+ {
+ "hn_id": "43291999",
+ "title": "Think Inside the JSON: Reinforcement Strategy for Strict LLM Schema Adherence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43291999",
+ "created_at": "2025-03-07T17:19:08Z"
+ }
+ ],
+ "top_points": 117,
+ "total_points": 158,
+ "total_comments": 33
+}
+\ No newline at end of file
diff --git a/papers/successive-prompting-decomposing-2022/hn.json b/papers/successive-prompting-decomposing-2022/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/survey-agentic-service-2025/hn.json b/papers/survey-agentic-service-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36271112",
+ "title": "LLM.int8(): 8-Bit Matrix Multiplication for Transformers at Scale (2022)",
+ "points": 135,
+ "comments": 23,
+ "url": "https://news.ycombinator.com/item?id=36271112",
+ "created_at": "2023-06-10T15:03:01Z"
+ },
+ {
+ "hn_id": "44238404",
+ "title": "JavelinGuard: Low-Cost Transformer Architectures for LLM Security",
+ "points": 29,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44238404",
+ "created_at": "2025-06-10T15:59:42Z"
+ },
+ {
+ "hn_id": "43994029",
+ "title": "DeepSeek-V3: Achieving Efficient LLM Scaling with 2,048 GPUs",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43994029",
+ "created_at": "2025-05-15T11:51:00Z"
+ },
+ {
+ "hn_id": "32498404",
+ "title": "LLM.int8(): 8-Bit Matrix Multiplication for Transformers at Scale",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=32498404",
+ "created_at": "2022-08-17T16:26:06Z"
+ },
+ {
+ "hn_id": "44011574",
+ "title": "DeepSeek-V3: Scaling Challenges and Reflections on Hardware for AI Architectures",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44011574",
+ "created_at": "2025-05-17T02:24:05Z"
+ },
+ {
+ "hn_id": "43655654",
+ "title": "Security and Privacy Issues in WhatsApp's Handshake Mechanism",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43655654",
+ "created_at": "2025-04-11T16:28:55Z"
+ },
+ {
+ "hn_id": "44055164",
+ "title": "Insights into DeepSeek-V3: Scaling Challenges on Hardware for AI Architectures",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44055164",
+ "created_at": "2025-05-21T19:19:17Z"
+ },
+ {
+ "hn_id": "41267878",
+ "title": "Portability of Fortran's `do concurrent' on GPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41267878",
+ "created_at": "2024-08-16T16:33:05Z"
+ },
+ {
+ "hn_id": "47243636",
+ "title": "The Unreasonable Effectiveness of Nonstandard Analysis (2020)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47243636",
+ "created_at": "2026-03-04T05:56:26Z"
+ },
+ {
+ "hn_id": "43999974",
+ "title": "Insights into DeepSeek-V3: Scaling Challenges and Reflections on Hardware for AI",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43999974",
+ "created_at": "2025-05-15T22:24:10Z"
+ }
+ ],
+ "top_points": 135,
+ "total_points": 191,
+ "total_comments": 28
+}
+\ No newline at end of file
diff --git a/papers/survey-autonomous-llm-agents-2023/hn.json b/papers/survey-autonomous-llm-agents-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "34541836",
+ "title": "MusicLM: Generating music from text",
+ "points": 291,
+ "comments": 107,
+ "url": "https://news.ycombinator.com/item?id=34541836",
+ "created_at": "2023-01-27T02:44:37Z"
+ },
+ {
+ "hn_id": "34596735",
+ "title": "Just Another Day on Twitter: A Complete 24 Hours of Twitter Data",
+ "points": 5,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=34596735",
+ "created_at": "2023-01-31T15:56:04Z"
+ },
+ {
+ "hn_id": "35241870",
+ "title": "DeID-GPT: Zero-Shot Medical Text De-Identification by GPT-4",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35241870",
+ "created_at": "2023-03-21T02:35:17Z"
+ },
+ {
+ "hn_id": "42238858",
+ "title": "Telepathic Datacenters: Fast RPCs Using Shared CXL Memory",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42238858",
+ "created_at": "2024-11-25T18:41:44Z"
+ },
+ {
+ "hn_id": "36102668",
+ "title": "Improving Factuality and Reasoning in Language Models Through Multiagent Debate",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36102668",
+ "created_at": "2023-05-28T10:03:03Z"
+ },
+ {
+ "hn_id": "39703394",
+ "title": "Adaptive Optical Imaging with Entangled Photons",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39703394",
+ "created_at": "2024-03-14T13:01:29Z"
+ },
+ {
+ "hn_id": "36097897",
+ "title": "Improving Factuality and Reasoning in Language Models Through Multiagent Debate",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36097897",
+ "created_at": "2023-05-27T20:19:32Z"
+ },
+ {
+ "hn_id": "42265487",
+ "title": "Fast RPCs Using Shared CXL Memory [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42265487",
+ "created_at": "2024-11-28T14:27:09Z"
+ },
+ {
+ "hn_id": "37313399",
+ "title": "Detecting Language Model Attacks with Perplexity",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37313399",
+ "created_at": "2023-08-29T20:21:04Z"
+ },
+ {
+ "hn_id": "45350786",
+ "title": "Show HN: SyGra – Graph-oriented Synthetic data generation Pipeline for LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45350786",
+ "created_at": "2025-09-23T18:13:04Z"
+ }
+ ],
+ "top_points": 291,
+ "total_points": 317,
+ "total_comments": 114
+}
+\ No newline at end of file
diff --git a/papers/survey-code-gen-llm-agents-2025/hn.json b/papers/survey-code-gen-llm-agents-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43869282",
+ "title": "Can Language Models Represent the Past Without Anachronism?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43869282",
+ "created_at": "2025-05-02T13:10:36Z"
+ },
+ {
+ "hn_id": "42933721",
+ "title": "Querying Databases with Function Calling",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42933721",
+ "created_at": "2025-02-04T15:36:46Z"
+ },
+ {
+ "hn_id": "42821577",
+ "title": "Position Information Emerges in Causal Transformers Without Positional Encoding",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42821577",
+ "created_at": "2025-01-25T13:41:59Z"
+ },
+ {
+ "hn_id": "28064364",
+ "title": "Which RESTful API Design Rules Are Important – Do They Improve Software Quality?",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28064364",
+ "created_at": "2021-08-04T18:18:25Z"
+ },
+ {
+ "hn_id": "43199223",
+ "title": "Querying Databases with Function Calling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43199223",
+ "created_at": "2025-02-27T22:25:25Z"
+ },
+ {
+ "hn_id": "43044281",
+ "title": "How to Make a Universe",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43044281",
+ "created_at": "2025-02-14T02:57:26Z"
+ },
+ {
+ "hn_id": "47280639",
+ "title": "Show HN: Contexa – Git-inspired context management for LLM agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47280639",
+ "created_at": "2026-03-06T20:27:10Z"
+ },
+ {
+ "hn_id": "44782536",
+ "title": "Git Context Controller: Manage the Context of LLM-Based Agents Like Git",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44782536",
+ "created_at": "2025-08-04T06:05:53Z"
+ },
+ {
+ "hn_id": "41292978",
+ "title": "A Foundation Model Based on Recordings of People's Emotions and Physiology",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41292978",
+ "created_at": "2024-08-19T17:38:07Z"
+ },
+ {
+ "hn_id": "43772015",
+ "title": "Show HN: Tokenkit – Convert LLMs to new tokenizers (incl byte-level Llama/Gemma)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43772015",
+ "created_at": "2025-04-23T13:35:34Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 19,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/survey-code-generation-2024/hn.json b/papers/survey-code-generation-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "38957230",
+ "title": "A Philosophical Introduction to Language Models",
+ "points": 83,
+ "comments": 24,
+ "url": "https://news.ycombinator.com/item?id=38957230",
+ "created_at": "2024-01-11T19:11:18Z"
+ },
+ {
+ "hn_id": "37821205",
+ "title": "Personalized Transformer-Based Ranking for E-Commerce at Yandex",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37821205",
+ "created_at": "2023-10-09T15:04:27Z"
+ }
+ ],
+ "top_points": 83,
+ "total_points": 84,
+ "total_comments": 24
+}
+\ No newline at end of file
diff --git a/papers/survey-data-contamination-2025/hn.json b/papers/survey-data-contamination-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/survey-hallucination-large-2023/hn.json b/papers/survey-hallucination-large-2023/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "38143837",
+ "title": "A Survey of Hallucination in Large Foundation Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38143837",
+ "created_at": "2023-11-04T18:32:14Z"
+ },
+ {
+ "hn_id": "35964104",
+ "title": "CodeT5: Open Code Large Language Models for Code Understanding and Generation",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35964104",
+ "created_at": "2023-05-16T16:25:21Z"
+ },
+ {
+ "hn_id": "34599757",
+ "title": "Neural Online Probabilistic Assistance for Socially Intelligent Home Assistants",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34599757",
+ "created_at": "2023-01-31T18:45:15Z"
+ },
+ {
+ "hn_id": "24550963",
+ "title": "AI and Wargaming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24550963",
+ "created_at": "2020-09-22T04:50:56Z"
+ },
+ {
+ "hn_id": "35993703",
+ "title": "CodeT5: Open Code Large Language Models for Code Understanding and Generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35993703",
+ "created_at": "2023-05-18T20:35:21Z"
+ },
+ {
+ "hn_id": "24578527",
+ "title": "AI and Wargaming",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24578527",
+ "created_at": "2020-09-24T13:43:28Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 12,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/survey-large-language-2023/hn.json b/papers/survey-large-language-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "34730365",
+ "title": "Theory of Mind May Have Spontaneously Emerged in Large Language Models",
+ "points": 170,
+ "comments": 309,
+ "url": "https://news.ycombinator.com/item?id=34730365",
+ "created_at": "2023-02-09T19:57:05Z"
+ },
+ {
+ "hn_id": "4427274",
+ "title": "Reasoning Training Alters Structural Connectivity in Brain",
+ "points": 36,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=4427274",
+ "created_at": "2012-08-24T12:36:03Z"
+ },
+ {
+ "hn_id": "38533289",
+ "title": "Large Language Model (LLM) Security and Privacy: The Good, the Bad, and the Ugly",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38533289",
+ "created_at": "2023-12-05T16:44:59Z"
+ },
+ {
+ "hn_id": "38514646",
+ "title": "Acoustic Cybersecurity: Exploiting Voice-Activated Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38514646",
+ "created_at": "2023-12-04T07:41:04Z"
+ },
+ {
+ "hn_id": "37929705",
+ "title": "L2MAC: Large Language Model Automatic Computer for Unbounded Code Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37929705",
+ "created_at": "2023-10-18T15:02:49Z"
+ },
+ {
+ "hn_id": "46355266",
+ "title": "Pharmacophore-based design by learning on voxel grids",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46355266",
+ "created_at": "2025-12-22T16:08:48Z"
+ },
+ {
+ "hn_id": "43531613",
+ "title": "Relax: Composable Abstractions for End-to-End Dynamic Machine Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43531613",
+ "created_at": "2025-03-31T06:02:24Z"
+ },
+ {
+ "hn_id": "40612538",
+ "title": "Benchmarking the Energy Costs of Large Language Model Inference (2023)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40612538",
+ "created_at": "2024-06-07T20:17:48Z"
+ },
+ {
+ "hn_id": "38255724",
+ "title": "Relax: Composable Abstractions for End-to-End Dynamic Machine Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38255724",
+ "created_at": "2023-11-13T21:36:56Z"
+ },
+ {
+ "hn_id": "38698557",
+ "title": "Augmenting LLM with Human-Like Memory for Mobile Task Automation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38698557",
+ "created_at": "2023-12-19T17:29:15Z"
+ }
+ ],
+ "top_points": 170,
+ "total_points": 221,
+ "total_comments": 314
+}
+\ No newline at end of file
diff --git a/papers/survey-llm-code-generation-2025/hn.json b/papers/survey-llm-code-generation-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "43109466",
+ "title": "WonderHuman: 3D avatars from single-view video",
+ "points": 38,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=43109466",
+ "created_at": "2025-02-20T00:05:39Z"
+ },
+ {
+ "hn_id": "9321115",
+ "title": "Discrete Steps in Dispersion Measures of Fast Radio Bursts [pdf]",
+ "points": 10,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=9321115",
+ "created_at": "2015-04-04T15:42:08Z"
+ },
+ {
+ "hn_id": "45116073",
+ "title": "Towards Agentic OS: An LLM Agent Framework for Linux Schedulers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45116073",
+ "created_at": "2025-09-03T14:15:10Z"
+ },
+ {
+ "hn_id": "39786965",
+ "title": "The Ink Splotch Effect: A Case Study on ChatGPT as a Co-Creative Game Designer",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39786965",
+ "created_at": "2024-03-22T02:45:09Z"
+ },
+ {
+ "hn_id": "42930845",
+ "title": "Reinforcing Thinking Through Reasoning-Enhanced Reward Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42930845",
+ "created_at": "2025-02-04T10:59:13Z"
+ },
+ {
+ "hn_id": "47309906",
+ "title": "AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47309906",
+ "created_at": "2026-03-09T14:51:24Z"
+ },
+ {
+ "hn_id": "44051209",
+ "title": "Scalable Quantification of User Attention in Multi-Slot Sponsored Search",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44051209",
+ "created_at": "2025-05-21T13:26:21Z"
+ },
+ {
+ "hn_id": "43086061",
+ "title": "WonderHuman: Hallucinating Unseen Parts in Dynamic 3D Human Reconstruction",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43086061",
+ "created_at": "2025-02-18T04:23:17Z"
+ }
+ ],
+ "top_points": 38,
+ "total_points": 59,
+ "total_comments": 7
+}
+\ No newline at end of file
diff --git a/papers/survey-llm-code-low-resource-2024/hn.json b/papers/survey-llm-code-low-resource-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "38957230",
+ "title": "A Philosophical Introduction to Language Models",
+ "points": 83,
+ "comments": 24,
+ "url": "https://news.ycombinator.com/item?id=38957230",
+ "created_at": "2024-01-11T19:11:18Z"
+ },
+ {
+ "hn_id": "37821205",
+ "title": "Personalized Transformer-Based Ranking for E-Commerce at Yandex",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37821205",
+ "created_at": "2023-10-09T15:04:27Z"
+ }
+ ],
+ "top_points": 83,
+ "total_points": 84,
+ "total_comments": 24
+}
+\ No newline at end of file
diff --git a/papers/survey-llmbased-multiagent-2024/hn.json b/papers/survey-llmbased-multiagent-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/survey-llms-software-engineering-2023/hn.json b/papers/survey-llms-software-engineering-2023/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "38808537",
+ "title": "Gaia – Zero-Shot Talking Avatar Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38808537",
+ "created_at": "2023-12-29T18:37:26Z"
+ },
+ {
+ "hn_id": "39513977",
+ "title": "Towards Efficient Generative LLM Serving: A Survey from Algorithms to Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39513977",
+ "created_at": "2024-02-26T17:18:16Z"
+ },
+ {
+ "hn_id": "42670534",
+ "title": "Modeling Story Expectations to Understand Engagement: A Framework Using LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42670534",
+ "created_at": "2025-01-12T01:49:50Z"
+ },
+ {
+ "hn_id": "38683116",
+ "title": "Unifying Corroborative and Contributive Attributions in Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38683116",
+ "created_at": "2023-12-18T14:40:34Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/survey-useful-llm-2024/hn.json b/papers/survey-useful-llm-2024/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "40258804",
+ "title": "Porting HPC Applications to AMD Instinct MI300A Using Unified Memory and OpenMP",
+ "points": 95,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=40258804",
+ "created_at": "2024-05-04T16:47:17Z"
+ },
+ {
+ "hn_id": "38845508",
+ "title": "Improving Text Embeddings with Large Language Models",
+ "points": 48,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=38845508",
+ "created_at": "2024-01-02T18:59:53Z"
+ },
+ {
+ "hn_id": "39351066",
+ "title": "Bypass4netns: Accelerating TCP/IP Communications in Rootless Containers",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39351066",
+ "created_at": "2024-02-12T21:54:50Z"
+ },
+ {
+ "hn_id": "41411083",
+ "title": "Large Language Model Enhanced Knowledge Representation Learning: A Survey",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41411083",
+ "created_at": "2024-08-31T19:06:00Z"
+ },
+ {
+ "hn_id": "40252515",
+ "title": "Porting HPC Applications to AMD MI300A Using Unified Memory and OpenMP",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40252515",
+ "created_at": "2024-05-03T21:20:24Z"
+ },
+ {
+ "hn_id": "40057965",
+ "title": "Are University Budget Cuts Becoming a Threat to Mathematics?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40057965",
+ "created_at": "2024-04-16T22:17:33Z"
+ },
+ {
+ "hn_id": "38976452",
+ "title": "Leveraging Large Language Models to Boost Dafny's Developers Productivity",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38976452",
+ "created_at": "2024-01-13T01:29:48Z"
+ },
+ {
+ "hn_id": "45847533",
+ "title": "Bypass4netns: Accelerating TCP/IP Communications in Rootless Containers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45847533",
+ "created_at": "2025-11-07T15:40:28Z"
+ },
+ {
+ "hn_id": "43101634",
+ "title": "STT: Stateful Tracking with Transformers for Autonomous Driving [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43101634",
+ "created_at": "2025-02-19T13:01:30Z"
+ }
+ ],
+ "top_points": 95,
+ "total_points": 158,
+ "total_comments": 33
+}
+\ No newline at end of file
diff --git a/papers/survivehr-competing-risks-2025/hn.json b/papers/survivehr-competing-risks-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/sustainable-llm-inference-2026/hn.json b/papers/sustainable-llm-inference-2026/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "47212277",
+ "title": "Code World Models for Parameter Control in Evolutionary Algorithms",
+ "points": 7,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47212277",
+ "created_at": "2026-03-02T00:12:43Z"
+ },
+ {
+ "hn_id": "47275731",
+ "title": "Cybersecurity Data Extraction from Common Crawl",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47275731",
+ "created_at": "2026-03-06T15:03:28Z"
+ },
+ {
+ "hn_id": "47336498",
+ "title": "Diffusion LLM may make most of the AI engineering stack obsolete",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47336498",
+ "created_at": "2026-03-11T15:00:02Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 15,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/swe-agent-2024/hn.json b/papers/swe-agent-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "41565110",
+ "title": "Show HN: Codebased, an AI Search Engine for Code",
+ "points": 17,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=41565110",
+ "created_at": "2024-09-17T07:09:05Z"
+ },
+ {
+ "hn_id": "40496466",
+ "title": "ConvLLaVA: Hierarchical Backbones as Visual Encoder for Large Multimodal Models",
+ "points": 9,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40496466",
+ "created_at": "2024-05-28T01:21:39Z"
+ },
+ {
+ "hn_id": "40194033",
+ "title": "Understanding Emergent Abilities of Language Models from the Loss Perspective",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40194033",
+ "created_at": "2024-04-29T03:10:37Z"
+ },
+ {
+ "hn_id": "39255451",
+ "title": "Contrastive Learning and Mixture of Experts Enables Precise Vector Embeddings",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39255451",
+ "created_at": "2024-02-04T23:04:27Z"
+ },
+ {
+ "hn_id": "40556125",
+ "title": "ToonCrafter: Generative Cartoon Interpolation",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=40556125",
+ "created_at": "2024-06-02T18:11:45Z"
+ },
+ {
+ "hn_id": "40562209",
+ "title": "Evaluating Gemini Models for Dangerous Capabilities",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40562209",
+ "created_at": "2024-06-03T12:55:57Z"
+ },
+ {
+ "hn_id": "40539015",
+ "title": "Sparse Maximal Update Parameterization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40539015",
+ "created_at": "2024-05-31T19:01:45Z"
+ },
+ {
+ "hn_id": "40209912",
+ "title": "Understanding Emergent Abilities of Language Models from the Loss Perspective",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40209912",
+ "created_at": "2024-04-30T11:44:36Z"
+ },
+ {
+ "hn_id": "46907418",
+ "title": "A First Course in Causal Inference",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46907418",
+ "created_at": "2026-02-06T00:25:23Z"
+ },
+ {
+ "hn_id": "40500490",
+ "title": "SWE-Agent: Agent-Computer Interfaces Enable Automated Software Engineering",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40500490",
+ "created_at": "2024-05-28T13:22:56Z"
+ }
+ ],
+ "top_points": 17,
+ "total_points": 51,
+ "total_comments": 14
+}
+\ No newline at end of file
diff --git a/papers/swe-bench-2023/hn.json b/papers/swe-bench-2023/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "35034928",
+ "title": "XDA: Accurate, Robust Disassembly With Transfer Learning (2020)",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35034928",
+ "created_at": "2023-03-05T22:38:07Z"
+ },
+ {
+ "hn_id": "37862645",
+ "title": "SWE-Bench: Can Language Models Resolve Real-World GitHub Issues?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37862645",
+ "created_at": "2023-10-12T20:18:26Z"
+ },
+ {
+ "hn_id": "37909336",
+ "title": "MatFormer: Nested Transformer for Elastic Inference",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37909336",
+ "created_at": "2023-10-17T01:44:39Z"
+ },
+ {
+ "hn_id": "38771869",
+ "title": "Combating the effects of speed and delays in end-to-end self-driving",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38771869",
+ "created_at": "2023-12-26T14:10:26Z"
+ },
+ {
+ "hn_id": "31232922",
+ "title": "Taurus: Lightweight Parallel Logging for In-Memory Database Management Systems",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31232922",
+ "created_at": "2022-05-02T09:33:46Z"
+ },
+ {
+ "hn_id": "39294194",
+ "title": "SWE-BENCH: Can language models resolve real-world GitHub issues?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39294194",
+ "created_at": "2024-02-07T20:55:08Z"
+ },
+ {
+ "hn_id": "24787392",
+ "title": "Should the Ransomware Be Paid?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24787392",
+ "created_at": "2020-10-15T11:28:27Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 13,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/swe-bench-illusion-2025/hn.json b/papers/swe-bench-illusion-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43714004",
+ "title": "BitNet b1.58 2B4T Technical Report",
+ "points": 111,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=43714004",
+ "created_at": "2025-04-17T07:27:11Z"
+ },
+ {
+ "hn_id": "44685869",
+ "title": "WhoFi: Deep Person Re-Identification via Wi-Fi Channel Signal Encoding",
+ "points": 55,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=44685869",
+ "created_at": "2025-07-25T17:35:29Z"
+ },
+ {
+ "hn_id": "45233809",
+ "title": "The SWE-Bench Illusion: When LLMs Remember Instead of Reason",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45233809",
+ "created_at": "2025-09-13T17:34:01Z"
+ },
+ {
+ "hn_id": "44675617",
+ "title": "WhoFi: Deep Person Re-Identification via Wi-Fi Channel Signal Encoding",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44675617",
+ "created_at": "2025-07-24T20:25:00Z"
+ },
+ {
+ "hn_id": "46858786",
+ "title": "Prediction: Claude 5 will be a major regression",
+ "points": 3,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=46858786",
+ "created_at": "2026-02-02T17:41:25Z"
+ },
+ {
+ "hn_id": "44314613",
+ "title": "Wanting to Be Understood Explains the Meta-Problem of Consciousness",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44314613",
+ "created_at": "2025-06-19T01:16:41Z"
+ },
+ {
+ "hn_id": "42911811",
+ "title": "Preserving Culinary Traditions. A Crowdsourced Digital Collection of Cookbooks",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42911811",
+ "created_at": "2025-02-02T21:04:34Z"
+ },
+ {
+ "hn_id": "46858874",
+ "title": "The SWE-Bench Illusion: When LLMs Remember Instead of Reason",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46858874",
+ "created_at": "2026-02-02T17:49:10Z"
+ },
+ {
+ "hn_id": "43424107",
+ "title": "Tapered Off-Policy Reinforce: Stable and Efficient RL for LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43424107",
+ "created_at": "2025-03-20T14:37:45Z"
+ },
+ {
+ "hn_id": "44665400",
+ "title": "WhoFi: Deep Person Re-Identification via Wi-Fi Channel Signal Encoding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44665400",
+ "created_at": "2025-07-24T00:00:04Z"
+ }
+ ],
+ "top_points": 111,
+ "total_points": 188,
+ "total_comments": 52
+}
+\ No newline at end of file
diff --git a/papers/swe-bench-plus-2024/hn.json b/papers/swe-bench-plus-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "43130732",
+ "title": "Some critical issues with the SWE-bench dataset",
+ "points": 350,
+ "comments": 116,
+ "url": "https://news.ycombinator.com/item?id=43130732",
+ "created_at": "2025-02-21T17:59:48Z"
+ },
+ {
+ "hn_id": "42492180",
+ "title": "SWE-Bench+: Enhanced Coding Benchmark for LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42492180",
+ "created_at": "2024-12-23T05:59:28Z"
+ },
+ {
+ "hn_id": "37914396",
+ "title": "8x Acceleration for LLM Inference on CPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37914396",
+ "created_at": "2023-10-17T13:09:26Z"
+ },
+ {
+ "hn_id": "37779086",
+ "title": "Kosmos-G: Generating Images in Context with Multimodal Large Language Models",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37779086",
+ "created_at": "2023-10-05T14:30:45Z"
+ },
+ {
+ "hn_id": "42519434",
+ "title": "When Every Token Counts: Optimal Segmentation for Low-Resource Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42519434",
+ "created_at": "2024-12-27T02:15:18Z"
+ },
+ {
+ "hn_id": "42227610",
+ "title": "Ask, and it shall be given: Turing completeness of prompting",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42227610",
+ "created_at": "2024-11-24T12:31:33Z"
+ },
+ {
+ "hn_id": "42056510",
+ "title": "Ask, and it shall be given: Turing completeness of prompting",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42056510",
+ "created_at": "2024-11-06T00:45:39Z"
+ }
+ ],
+ "top_points": 350,
+ "total_points": 359,
+ "total_comments": 117
+}
+\ No newline at end of file
diff --git a/papers/swe-bench-pro-2025/hn.json b/papers/swe-bench-pro-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "42898914",
+ "title": "Gradual Disempowerment: How Even Incremental AI Progress Poses Existential Risks",
+ "points": 87,
+ "comments": 84,
+ "url": "https://news.ycombinator.com/item?id=42898914",
+ "created_at": "2025-02-01T15:12:22Z"
+ },
+ {
+ "hn_id": "43800823",
+ "title": "Nofl: A Precise Immix",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43800823",
+ "created_at": "2025-04-26T03:58:11Z"
+ },
+ {
+ "hn_id": "37824256",
+ "title": "SIMD-ified R-tree Query Processing and Optimization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37824256",
+ "created_at": "2023-10-09T19:24:11Z"
+ },
+ {
+ "hn_id": "44430055",
+ "title": "Survey on Evaluation of LLM-Based Agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44430055",
+ "created_at": "2025-07-01T02:35:52Z"
+ },
+ {
+ "hn_id": "43809570",
+ "title": "Nofl: A Precise Immix [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43809570",
+ "created_at": "2025-04-27T05:11:33Z"
+ },
+ {
+ "hn_id": "45380660",
+ "title": "Hierarchical Retrieval: The Geometry and a Pretrain-Finetune Recipe",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45380660",
+ "created_at": "2025-09-25T23:30:27Z"
+ },
+ {
+ "hn_id": "42915646",
+ "title": "Stack Overflow Meets Replication: Security Research Amid Evolving Code Snippets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42915646",
+ "created_at": "2025-02-03T06:49:46Z"
+ }
+ ],
+ "top_points": 87,
+ "total_points": 104,
+ "total_comments": 84
+}
+\ No newline at end of file
diff --git a/papers/swe-bench-what-in-benchmark-2026/hn.json b/papers/swe-bench-what-in-benchmark-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/swe-evo-coding-agents-2025/hn.json b/papers/swe-evo-coding-agents-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "43187425",
+ "title": "Dataflow Execution in GPU",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43187425",
+ "created_at": "2025-02-26T19:50:05Z"
+ },
+ {
+ "hn_id": "43198159",
+ "title": "Kitsune: Enabling Dataflow Execution on GPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43198159",
+ "created_at": "2025-02-27T20:32:53Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 5,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/swe-mera-dynamic-benchmark-2025/hn.json b/papers/swe-mera-dynamic-benchmark-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43091339",
+ "title": "DeepSeek Native Sparse Attention",
+ "points": 16,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43091339",
+ "created_at": "2025-02-18T16:17:40Z"
+ },
+ {
+ "hn_id": "43086831",
+ "title": "Native Sparse Attention: Hardware-Aligned, Natively Trainable Sparse Attention",
+ "points": 15,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43086831",
+ "created_at": "2025-02-18T07:04:47Z"
+ },
+ {
+ "hn_id": "43098140",
+ "title": "NSA: Hardware-Aligned and Natively Trainable Sparse Attention",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43098140",
+ "created_at": "2025-02-19T03:12:01Z"
+ },
+ {
+ "hn_id": "44205416",
+ "title": "LLM-Explorer: Efficient and Affordable LLM-Based Exploration for Mobile Apps",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44205416",
+ "created_at": "2025-06-06T21:57:48Z"
+ },
+ {
+ "hn_id": "43740184",
+ "title": "The Cambridge Report on Database Research",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43740184",
+ "created_at": "2025-04-19T23:09:29Z"
+ },
+ {
+ "hn_id": "44714033",
+ "title": "Plex: Perturbation-Free Local Explanations for LLM-Based Text Classification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44714033",
+ "created_at": "2025-07-28T18:53:33Z"
+ },
+ {
+ "hn_id": "44976325",
+ "title": "FormalGrad: Integrating Formal Methods with Gradient-Based LLM Refinement",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44976325",
+ "created_at": "2025-08-21T18:28:43Z"
+ },
+ {
+ "hn_id": "44308612",
+ "title": "SageAttention3: Microscaling FP4 Attention. 5x Speed up",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44308612",
+ "created_at": "2025-06-18T10:37:52Z"
+ },
+ {
+ "hn_id": "43230938",
+ "title": "HW-Aligned Sparse Attention Architecture for Efficient Long-Context Modeling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43230938",
+ "created_at": "2025-03-02T14:44:33Z"
+ },
+ {
+ "hn_id": "43101793",
+ "title": "Native Sparse Attention: Hardware-Aligned and Natively Trainable",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43101793",
+ "created_at": "2025-02-19T13:15:50Z"
+ }
+ ],
+ "top_points": 16,
+ "total_points": 51,
+ "total_comments": 5
+}
+\ No newline at end of file
diff --git a/papers/sweeffi-reevaluating-software-2025/hn.json b/papers/sweeffi-reevaluating-software-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "32922951",
+ "title": "Building a Replicable EMFI Setup for Desktop and Server Hardware",
+ "points": 41,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=32922951",
+ "created_at": "2022-09-21T10:12:56Z"
+ },
+ {
+ "hn_id": "43701195",
+ "title": "Reasoning Models Can Be Effective Without Thinking",
+ "points": 21,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43701195",
+ "created_at": "2025-04-16T03:37:15Z"
+ },
+ {
+ "hn_id": "44607842",
+ "title": "BeePL: Correct-by-Compilation Kernel Extensions",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44607842",
+ "created_at": "2025-07-18T17:56:56Z"
+ },
+ {
+ "hn_id": "44639814",
+ "title": "Automated Hypothesis Validation with Agentic Sequential Falsifications",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44639814",
+ "created_at": "2025-07-21T20:02:28Z"
+ },
+ {
+ "hn_id": "44428306",
+ "title": "SKA-Low simulations for a cosmic dawn/epoch of reionisation deep field",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44428306",
+ "created_at": "2025-06-30T21:53:05Z"
+ },
+ {
+ "hn_id": "37588180",
+ "title": "Adapting Large Language Models via Reading Comprehension",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37588180",
+ "created_at": "2023-09-20T18:41:44Z"
+ },
+ {
+ "hn_id": "45038131",
+ "title": "Speed Always Wins: A Survey on Efficient Architectures for LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45038131",
+ "created_at": "2025-08-27T11:25:18Z"
+ },
+ {
+ "hn_id": "44991926",
+ "title": "Modeling Annotator Disagreement with Demographic-Aware Experts",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44991926",
+ "created_at": "2025-08-23T01:03:09Z"
+ },
+ {
+ "hn_id": "44948011",
+ "title": "Invertible Syntax Without the Tuples (Functional Pearl)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44948011",
+ "created_at": "2025-08-19T03:33:34Z"
+ },
+ {
+ "hn_id": "44932660",
+ "title": "Profiling LLM Inference on Apple Silicon: A Quantization Perspective",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44932660",
+ "created_at": "2025-08-17T16:14:06Z"
+ }
+ ],
+ "top_points": 41,
+ "total_points": 82,
+ "total_comments": 15
+}
+\ No newline at end of file
diff --git a/papers/swelancer-can-frontier-2025/hn.json b/papers/swelancer-can-frontier-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "43086347",
+ "title": "SWE-Lancer: a benchmark of freelance software engineering tasks from Upwork",
+ "points": 111,
+ "comments": 74,
+ "url": "https://news.ycombinator.com/item?id=43086347",
+ "created_at": "2025-02-18T05:25:05Z"
+ },
+ {
+ "hn_id": "46636707",
+ "title": "Show HN: A-MEM – Memory for Claude Code that links and evolves on its own",
+ "points": 8,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=46636707",
+ "created_at": "2026-01-15T18:15:04Z"
+ },
+ {
+ "hn_id": "43086430",
+ "title": "SWE-Lancer: Can LLMs Earn $1M from Real-World Freelance Software Engineering?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43086430",
+ "created_at": "2025-02-18T05:40:39Z"
+ },
+ {
+ "hn_id": "43121276",
+ "title": "Idiosyncrasies in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43121276",
+ "created_at": "2025-02-20T22:37:15Z"
+ }
+ ],
+ "top_points": 111,
+ "total_points": 123,
+ "total_comments": 78
+}
+\ No newline at end of file
diff --git a/papers/swenergy-empirical-study-2025/hn.json b/papers/swenergy-empirical-study-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46232220",
+ "title": "An Orbital House of Cards: Frequent Megaconstellation Close Conjunctions",
+ "points": 90,
+ "comments": 46,
+ "url": "https://news.ycombinator.com/item?id=46232220",
+ "created_at": "2025-12-11T15:01:44Z"
+ },
+ {
+ "hn_id": "42449924",
+ "title": "Meshtron: High-fidelity 3D mesh generation from point clouds",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42449924",
+ "created_at": "2024-12-18T12:26:41Z"
+ },
+ {
+ "hn_id": "39140086",
+ "title": "Machine Learning Systems Are Bloated and Vulnerable",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39140086",
+ "created_at": "2024-01-26T08:23:20Z"
+ },
+ {
+ "hn_id": "46289799",
+ "title": "Beaver: An Efficient Deterministic LLM Verifier",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46289799",
+ "created_at": "2025-12-16T15:33:02Z"
+ }
+ ],
+ "top_points": 90,
+ "total_points": 96,
+ "total_comments": 49
+}
+\ No newline at end of file
diff --git a/papers/sweprotege-learning-selectively-2026/hn.json b/papers/sweprotege-learning-selectively-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/swerank-multilingual-multiturn-2025/hn.json b/papers/swerank-multilingual-multiturn-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "45997327",
+ "title": "Parallel Loop Transformer for Efficient Test-Time Computation Scaling",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45997327",
+ "created_at": "2025-11-20T20:33:06Z"
+ },
+ {
+ "hn_id": "45873709",
+ "title": "The Drain of Scientific Publishing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45873709",
+ "created_at": "2025-11-10T08:21:43Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/swtbench-testing-validating-2024/hn.json b/papers/swtbench-testing-validating-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "36475563",
+ "title": "AudioPaLM: A large language model that can speak and listen",
+ "points": 69,
+ "comments": 11,
+ "url": "https://news.ycombinator.com/item?id=36475563",
+ "created_at": "2023-06-26T03:50:34Z"
+ },
+ {
+ "hn_id": "44494845",
+ "title": "Because We Have LLMs, We Can and Should Pursue Agentic Interpretability",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44494845",
+ "created_at": "2025-07-07T21:28:40Z"
+ },
+ {
+ "hn_id": "41617735",
+ "title": "WaveletGPT: Wavelets Meet Large Language Models",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41617735",
+ "created_at": "2024-09-22T15:31:12Z"
+ },
+ {
+ "hn_id": "39128778",
+ "title": "Meta Prompting by OpenAI and Mirac Suzgun Stanford",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39128778",
+ "created_at": "2024-01-25T12:23:06Z"
+ },
+ {
+ "hn_id": "39900200",
+ "title": "Model Stock: All we need is just a few fine-tuned models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39900200",
+ "created_at": "2024-04-01T22:35:46Z"
+ },
+ {
+ "hn_id": "40855651",
+ "title": "Generalist Lightweight Model for Various Information Extraction Tasks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40855651",
+ "created_at": "2024-07-02T11:42:48Z"
+ },
+ {
+ "hn_id": "40727537",
+ "title": "A 2 min burst of highly polarised radio originating from low Galactic latitude",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40727537",
+ "created_at": "2024-06-19T12:15:35Z"
+ },
+ {
+ "hn_id": "40427929",
+ "title": "A Nearly Quadratic Improvement for Memory Reallocation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40427929",
+ "created_at": "2024-05-21T13:00:56Z"
+ },
+ {
+ "hn_id": "40169742",
+ "title": "Cocoon: Semantic Table Profiling Using Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40169742",
+ "created_at": "2024-04-26T14:16:26Z"
+ },
+ {
+ "hn_id": "39904982",
+ "title": "Model Stock: All we need is just a few fine-tuned models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39904982",
+ "created_at": "2024-04-02T12:33:13Z"
+ }
+ ],
+ "top_points": 69,
+ "total_points": 87,
+ "total_comments": 11
+}
+\ No newline at end of file
diff --git a/papers/syncode-llm-generation-2024/hn.json b/papers/syncode-llm-generation-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40624563",
+ "title": "Teams of LLM Agents Can Exploit Zero-Day Vulnerabilities",
+ "points": 105,
+ "comments": 75,
+ "url": "https://news.ycombinator.com/item?id=40624563",
+ "created_at": "2024-06-09T14:15:06Z"
+ },
+ {
+ "hn_id": "42527496",
+ "title": "Explaining Large Language Models Decisions Using Shapley Values",
+ "points": 89,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=42527496",
+ "created_at": "2024-12-28T00:44:18Z"
+ },
+ {
+ "hn_id": "44721629",
+ "title": "Machine Learners Should Acknowledge Legal Implications of LLMs as Personal Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44721629",
+ "created_at": "2025-07-29T10:47:17Z"
+ },
+ {
+ "hn_id": "41136138",
+ "title": "Interpreting LLM outputs reveals the \"token noise\" effect",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41136138",
+ "created_at": "2024-08-02T04:37:08Z"
+ },
+ {
+ "hn_id": "41047931",
+ "title": "When in Doubt, Cascade: Towards Building Efficient and Capable Guardrails",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41047931",
+ "created_at": "2024-07-23T16:31:18Z"
+ },
+ {
+ "hn_id": "40653476",
+ "title": "An LLM-Based Recommender System Environment",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40653476",
+ "created_at": "2024-06-12T01:15:51Z"
+ },
+ {
+ "hn_id": "39912958",
+ "title": "Wait, It's All Token Noise? Always Has Been: Interpreting LLM Behavior",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39912958",
+ "created_at": "2024-04-03T02:16:14Z"
+ },
+ {
+ "hn_id": "22591606",
+ "title": "Fireiron: A Scheduling Language for High-Performance Linear Algebra on GPUs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22591606",
+ "created_at": "2020-03-16T10:55:18Z"
+ },
+ {
+ "hn_id": "44004315",
+ "title": "Generative Ghosts: Anticipating Benefits and Risks of AI Afterlives",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44004315",
+ "created_at": "2025-05-16T11:56:41Z"
+ },
+ {
+ "hn_id": "42130442",
+ "title": "Computing quantum waves and spin from classical and relativistic action",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42130442",
+ "created_at": "2024-11-13T21:51:36Z"
+ }
+ ],
+ "top_points": 105,
+ "total_points": 208,
+ "total_comments": 94
+}
+\ No newline at end of file
diff --git a/papers/syntactic-robustness-llmbased-2024/hn.json b/papers/syntactic-robustness-llmbased-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38859659",
+ "title": "Self-Play Fine-Tuning Converts Weak Language Models to Strong Language Models",
+ "points": 41,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=38859659",
+ "created_at": "2024-01-03T20:46:59Z"
+ },
+ {
+ "hn_id": "37213912",
+ "title": "What if the “placebo effect” is just regression to the mean? (2004)",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=37213912",
+ "created_at": "2023-08-21T19:04:23Z"
+ },
+ {
+ "hn_id": "46007332",
+ "title": "AI-Newton: Concept-Driven Physical Law Discovery System Without Prior Knowledge",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46007332",
+ "created_at": "2025-11-21T18:33:14Z"
+ },
+ {
+ "hn_id": "40259966",
+ "title": "Flame: Factuality-Aware Alignment for Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40259966",
+ "created_at": "2024-05-04T20:09:19Z"
+ },
+ {
+ "hn_id": "41759567",
+ "title": "Block-Attention for Low-Latency RAG",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41759567",
+ "created_at": "2024-10-06T19:30:48Z"
+ },
+ {
+ "hn_id": "42097339",
+ "title": "Confinement in the Transverse Field Ising Model on the Heavy Hex Lattice",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=42097339",
+ "created_at": "2024-11-09T22:36:03Z"
+ },
+ {
+ "hn_id": "41175175",
+ "title": "Pathfinder: Semantic Framework for Lit. Review and Knowledge Discovery in Astro",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41175175",
+ "created_at": "2024-08-06T20:47:29Z"
+ },
+ {
+ "hn_id": "40855311",
+ "title": "xLSTM-UNet can be an Effective 2D and 3D Medical Image Segmentation Backbone",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40855311",
+ "created_at": "2024-07-02T10:49:11Z"
+ },
+ {
+ "hn_id": "39851071",
+ "title": "Making Hybrid Languages: A Recipe",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39851071",
+ "created_at": "2024-03-28T13:24:52Z"
+ },
+ {
+ "hn_id": "26716084",
+ "title": "Unexpected novel Merbecovirus discoveries in agricultural sequencing datasets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26716084",
+ "created_at": "2021-04-06T19:13:04Z"
+ }
+ ],
+ "top_points": 41,
+ "total_points": 63,
+ "total_comments": 16
+}
+\ No newline at end of file
diff --git a/papers/sysllmatic-large-language-2025/hn.json b/papers/sysllmatic-large-language-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43578430",
+ "title": "DeepSeek: Inference-Time Scaling for Generalist Reward Modeling",
+ "points": 163,
+ "comments": 35,
+ "url": "https://news.ycombinator.com/item?id=43578430",
+ "created_at": "2025-04-04T04:50:45Z"
+ },
+ {
+ "hn_id": "24306206",
+ "title": "Security weakness in Visa allows money theft in contactless payments",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=24306206",
+ "created_at": "2020-08-28T15:43:58Z"
+ },
+ {
+ "hn_id": "45116073",
+ "title": "Towards Agentic OS: An LLM Agent Framework for Linux Schedulers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45116073",
+ "created_at": "2025-09-03T14:15:10Z"
+ },
+ {
+ "hn_id": "45115249",
+ "title": "When Do Consumers Lose from Variable Electricity Pricing?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45115249",
+ "created_at": "2025-09-03T13:05:57Z"
+ },
+ {
+ "hn_id": "42966672",
+ "title": "Develop AI Agents for System Engineering in Factorio",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42966672",
+ "created_at": "2025-02-06T21:28:58Z"
+ },
+ {
+ "hn_id": "24786448",
+ "title": "The EMV Standard: Break, Fix, Verify",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24786448",
+ "created_at": "2020-10-15T09:05:10Z"
+ },
+ {
+ "hn_id": "44495026",
+ "title": "Frustratingly Simple Retrieval for Challenging, Reasoning-Intensive Benchmarks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44495026",
+ "created_at": "2025-07-07T21:50:32Z"
+ },
+ {
+ "hn_id": "36764204",
+ "title": "Accelerating science with human-aware artificial intelligence",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36764204",
+ "created_at": "2023-07-17T21:14:48Z"
+ },
+ {
+ "hn_id": "24409220",
+ "title": "Protocol Verification Finds Holes in Contactless Payments",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24409220",
+ "created_at": "2020-09-08T15:15:02Z"
+ },
+ {
+ "hn_id": "44799772",
+ "title": "Pre-Discovery Tess Observations of Interstellar Object 3I/ATLAS",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44799772",
+ "created_at": "2025-08-05T16:00:49Z"
+ }
+ ],
+ "top_points": 163,
+ "total_points": 185,
+ "total_comments": 36
+}
+\ No newline at end of file
diff --git a/papers/systematic-literature-review-2024/hn.json b/papers/systematic-literature-review-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40584534",
+ "title": "What no one has seen before: gravitational waveforms from warp drive collapse",
+ "points": 158,
+ "comments": 112,
+ "url": "https://news.ycombinator.com/item?id=40584534",
+ "created_at": "2024-06-05T13:29:06Z"
+ },
+ {
+ "hn_id": "40338825",
+ "title": "Wit, Creativity, and Detectability of LLMs Adapted to Reddit's Showerthoughts",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40338825",
+ "created_at": "2024-05-13T01:01:02Z"
+ },
+ {
+ "hn_id": "41593960",
+ "title": "QueryBuilder: Human-in-the-Loop Query Development for Information Retrieval",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41593960",
+ "created_at": "2024-09-19T17:06:37Z"
+ },
+ {
+ "hn_id": "41213942",
+ "title": "Qubernetes: Unified Cloud-Native Platform for Hybrid Classic-Quantum Computing",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41213942",
+ "created_at": "2024-08-11T04:15:49Z"
+ },
+ {
+ "hn_id": "38931826",
+ "title": "ColorizeDiffusion: Adjustable Sketch Colorization with Reference Image and Text",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38931826",
+ "created_at": "2024-01-09T20:43:19Z"
+ },
+ {
+ "hn_id": "45221743",
+ "title": "Image-GS: Content-Adaptive Image Representation via 2D Gaussians",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45221743",
+ "created_at": "2025-09-12T13:10:34Z"
+ },
+ {
+ "hn_id": "41675647",
+ "title": "Explaining Data in Words: Statistical Models with Natural Language Parameters",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41675647",
+ "created_at": "2024-09-27T21:20:17Z"
+ },
+ {
+ "hn_id": "41257333",
+ "title": "XMainframe: A Large Language Model for Mainframe Modernization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41257333",
+ "created_at": "2024-08-15T15:41:07Z"
+ },
+ {
+ "hn_id": "41161123",
+ "title": "How to Applied FTL (Faster Than Light) Research Theory to RWX Computational?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41161123",
+ "created_at": "2024-08-05T13:18:50Z"
+ },
+ {
+ "hn_id": "44004315",
+ "title": "Generative Ghosts: Anticipating Benefits and Risks of AI Afterlives",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44004315",
+ "created_at": "2025-05-16T11:56:41Z"
+ }
+ ],
+ "top_points": 158,
+ "total_points": 178,
+ "total_comments": 112
+}
+\ No newline at end of file
diff --git a/papers/syzygy-dual-codetest-2024/hn.json b/papers/syzygy-dual-codetest-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38856563",
+ "title": "Magnetic tunnel junction-based computational random-access memory",
+ "points": 34,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=38856563",
+ "created_at": "2024-01-03T17:11:00Z"
+ },
+ {
+ "hn_id": "38841314",
+ "title": "Framework for identification of chaotic systems with symbolic regression",
+ "points": 32,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=38841314",
+ "created_at": "2024-01-02T13:17:44Z"
+ },
+ {
+ "hn_id": "42550956",
+ "title": "Syzygy: Dual Code-Test C to Rust Translation Using LLMs and Dynamic Analysis",
+ "points": 7,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=42550956",
+ "created_at": "2024-12-30T16:46:35Z"
+ },
+ {
+ "hn_id": "34178437",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34178437",
+ "created_at": "2022-12-29T21:44:44Z"
+ },
+ {
+ "hn_id": "42484386",
+ "title": "Syzygy: Dual Code-Test C to Rust Translation Using LLMs and Dynamic Analysis",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42484386",
+ "created_at": "2024-12-22T04:29:41Z"
+ },
+ {
+ "hn_id": "42209577",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42209577",
+ "created_at": "2024-11-21T23:01:03Z"
+ },
+ {
+ "hn_id": "39224616",
+ "title": "Building Your Own Product Copilot: Challenges, Opportunities, and Needs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39224616",
+ "created_at": "2024-02-02T03:25:18Z"
+ },
+ {
+ "hn_id": "38854937",
+ "title": "Building Your Own Product Copilot: Challenges, Opportunities, and Needs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38854937",
+ "created_at": "2024-01-03T15:10:05Z"
+ },
+ {
+ "hn_id": "34232125",
+ "title": "Cramming: Training a Language Model on a Single GPU in One Day",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34232125",
+ "created_at": "2023-01-03T14:57:13Z"
+ },
+ {
+ "hn_id": "38857186",
+ "title": "Parrot Captions Teach Clip to Spot Text",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38857186",
+ "created_at": "2024-01-03T17:54:07Z"
+ }
+ ],
+ "top_points": 34,
+ "total_points": 97,
+ "total_comments": 18
+}
+\ No newline at end of file
diff --git a/papers/tamas-benchmarking-adversarial-2025/hn.json b/papers/tamas-benchmarking-adversarial-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "10637988",
+ "title": "Deep Learning on Spatio-temporal graphs",
+ "points": 16,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10637988",
+ "created_at": "2015-11-27T17:04:38Z"
+ },
+ {
+ "hn_id": "44546820",
+ "title": "ZipNN: Lossless Compression for AI Models (2024)",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44546820",
+ "created_at": "2025-07-13T01:50:24Z"
+ },
+ {
+ "hn_id": "43894099",
+ "title": "JPEC: A Novel GNN for Competitor Retrieval in Financial Knowledge Graphs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43894099",
+ "created_at": "2025-05-05T11:56:52Z"
+ },
+ {
+ "hn_id": "45639961",
+ "title": "The Circular Electron Positron Collider (CEPC) Technical Design Report",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45639961",
+ "created_at": "2025-10-20T03:25:39Z"
+ }
+ ],
+ "top_points": 16,
+ "total_points": 23,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/tasklevel-evaluation-ai-2026/hn.json b/papers/tasklevel-evaluation-ai-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47378712",
+ "title": "Printed helicoids with air channels make sensorized segments for soft robots",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47378712",
+ "created_at": "2026-03-14T17:04:45Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/teaching-critiquing-conceptualization-2025/hn.json b/papers/teaching-critiquing-conceptualization-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "42554209",
+ "title": "Beyond Gradient Averaging in Parallel Optimization",
+ "points": 96,
+ "comments": 41,
+ "url": "https://news.ycombinator.com/item?id=42554209",
+ "created_at": "2024-12-30T22:24:51Z"
+ },
+ {
+ "hn_id": "45817559",
+ "title": "The physics of news, rumors, and opinions",
+ "points": 89,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=45817559",
+ "created_at": "2025-11-05T00:22:16Z"
+ },
+ {
+ "hn_id": "46406923",
+ "title": "Toward Training Superintelligent Software Agents Through Self-Play SWE-RL",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46406923",
+ "created_at": "2025-12-28T00:09:34Z"
+ },
+ {
+ "hn_id": "46411380",
+ "title": "Toward Training Superintelligent Software Agents Through Self-Play SWE-RL",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46411380",
+ "created_at": "2025-12-28T14:39:43Z"
+ },
+ {
+ "hn_id": "46389205",
+ "title": "Toward Training Superintelligent Software Agents Through Self-Play SWE-RL (Meta)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46389205",
+ "created_at": "2025-12-26T04:21:41Z"
+ }
+ ],
+ "top_points": 96,
+ "total_points": 189,
+ "total_comments": 71
+}
+\ No newline at end of file
diff --git a/papers/teamcraft-benchmark-multimodal-2024/hn.json b/papers/teamcraft-benchmark-multimodal-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "41776324",
+ "title": "Differential Transformer",
+ "points": 562,
+ "comments": 177,
+ "url": "https://news.ycombinator.com/item?id=41776324",
+ "created_at": "2024-10-08T11:54:30Z"
+ },
+ {
+ "hn_id": "42910028",
+ "title": "Reinforcement Learning: An Overview",
+ "points": 82,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=42910028",
+ "created_at": "2025-02-02T17:20:21Z"
+ },
+ {
+ "hn_id": "42164637",
+ "title": "A Taxonomy of AgentOps",
+ "points": 67,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42164637",
+ "created_at": "2024-11-17T15:23:38Z"
+ },
+ {
+ "hn_id": "42363625",
+ "title": "Reinforcement Learning: An Overview",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42363625",
+ "created_at": "2024-12-09T06:52:42Z"
+ },
+ {
+ "hn_id": "25366028",
+ "title": "Effect of the initial configuration on the training and function of ANN",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=25366028",
+ "created_at": "2020-12-09T22:16:27Z"
+ },
+ {
+ "hn_id": "33956930",
+ "title": "Ask HN: Running (multimodal) semantic search on edge?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33956930",
+ "created_at": "2022-12-12T16:51:41Z"
+ },
+ {
+ "hn_id": "34067639",
+ "title": "Multi Hash Embeddings in SpaCy",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34067639",
+ "created_at": "2022-12-20T15:55:55Z"
+ }
+ ],
+ "top_points": 562,
+ "total_points": 722,
+ "total_comments": 191
+}
+\ No newline at end of file
diff --git a/papers/temporal-knowledgebase-creation-2025/hn.json b/papers/temporal-knowledgebase-creation-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "10238373",
+ "title": "The Erdos discrepancy problem",
+ "points": 83,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=10238373",
+ "created_at": "2015-09-18T10:31:42Z"
+ },
+ {
+ "hn_id": "47168154",
+ "title": "AI buying agents concentrate demand on 2-3 products and ignore the rest",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47168154",
+ "created_at": "2026-02-26T16:22:06Z"
+ },
+ {
+ "hn_id": "44001821",
+ "title": "eqsat: An Equality Saturation Dialect for Non-destructive Rewriting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44001821",
+ "created_at": "2025-05-16T04:24:29Z"
+ },
+ {
+ "hn_id": "41620743",
+ "title": "Nudge: Lightweight Non-Parametric Fine-Tuning of Embeddings for Retrieval",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41620743",
+ "created_at": "2024-09-22T22:47:08Z"
+ },
+ {
+ "hn_id": "43926603",
+ "title": "Pearch.ai beat LinkedIn's AI search in a head-to-head benchmark",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43926603",
+ "created_at": "2025-05-08T14:50:43Z"
+ },
+ {
+ "hn_id": "43622263",
+ "title": "GIScience in the Era of Artificial Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43622263",
+ "created_at": "2025-04-08T14:33:08Z"
+ }
+ ],
+ "top_points": 83,
+ "total_points": 91,
+ "total_comments": 13
+}
+\ No newline at end of file
diff --git a/papers/ten-simple-rules-2025/hn.json b/papers/ten-simple-rules-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47273269",
+ "title": "Artificial Hivemind: The Open-Ended Homogeneity of Language Models (and Beyond)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47273269",
+ "created_at": "2026-03-06T10:39:31Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/test-driven-interactive-code-gen-2024/hn.json b/papers/test-driven-interactive-code-gen-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40077023",
+ "title": "Chinchilla Scaling: A replication attempt",
+ "points": 124,
+ "comments": 68,
+ "url": "https://news.ycombinator.com/item?id=40077023",
+ "created_at": "2024-04-18T15:05:59Z"
+ },
+ {
+ "hn_id": "39410669",
+ "title": "Chain-of-Thought Reasoning Without Prompting",
+ "points": 94,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=39410669",
+ "created_at": "2024-02-17T16:06:40Z"
+ },
+ {
+ "hn_id": "40062892",
+ "title": "The Ballmer Peak: An Empirical Search",
+ "points": 88,
+ "comments": 24,
+ "url": "https://news.ycombinator.com/item?id=40062892",
+ "created_at": "2024-04-17T11:02:32Z"
+ },
+ {
+ "hn_id": "40064345",
+ "title": "Chinchilla Scaling: A Replication Attempt",
+ "points": 6,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40064345",
+ "created_at": "2024-04-17T13:32:42Z"
+ },
+ {
+ "hn_id": "45992137",
+ "title": "Token embeddings violate the manifold hypothesis",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45992137",
+ "created_at": "2025-11-20T13:03:04Z"
+ },
+ {
+ "hn_id": "40071026",
+ "title": "Chinchilla Scaling: A Replication Attempt",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40071026",
+ "created_at": "2024-04-17T23:05:32Z"
+ },
+ {
+ "hn_id": "41633241",
+ "title": "Cot Decoding – Eliciting Reasoning from LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41633241",
+ "created_at": "2024-09-24T05:06:37Z"
+ },
+ {
+ "hn_id": "41298519",
+ "title": "Unlocking the Power of LSTM for Long Term Time Series Forecasting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41298519",
+ "created_at": "2024-08-20T10:03:02Z"
+ },
+ {
+ "hn_id": "40419691",
+ "title": "A Mess of Memory System Benchmarking, Simulation and Application Profiling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40419691",
+ "created_at": "2024-05-20T20:08:04Z"
+ },
+ {
+ "hn_id": "41564189",
+ "title": "Trustworthiness in Retrieval-Augmented Generation Systems: A Survey",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41564189",
+ "created_at": "2024-09-17T04:43:06Z"
+ }
+ ],
+ "top_points": 124,
+ "total_points": 325,
+ "total_comments": 118
+}
+\ No newline at end of file
diff --git a/papers/testbench-evaluating-classlevel-2024/hn.json b/papers/testbench-evaluating-classlevel-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "40951626",
+ "title": "Exploring Novel File System Objects for Data-Only Attacks on Linux Systems",
+ "points": 9,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40951626",
+ "created_at": "2024-07-13T03:50:49Z"
+ },
+ {
+ "hn_id": "40859404",
+ "title": "Beyond Control: Exploring Novel File System Objects for Data-Only Attacks on Li",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40859404",
+ "created_at": "2024-07-02T18:49:28Z"
+ },
+ {
+ "hn_id": "40205126",
+ "title": "Tunnel Try-On: Excavating Spatial-Temporal Tunnels for Virtual Try-On in Videos",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40205126",
+ "created_at": "2024-04-29T22:56:43Z"
+ },
+ {
+ "hn_id": "41204087",
+ "title": "Amplifying the Kinematics of Origami Mechanisms with Spring Joints",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41204087",
+ "created_at": "2024-08-09T18:10:19Z"
+ },
+ {
+ "hn_id": "40488690",
+ "title": "Neuromorphic dreaming: A pathway to efficient learning in artificial agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40488690",
+ "created_at": "2024-05-27T08:03:31Z"
+ },
+ {
+ "hn_id": "45368970",
+ "title": "LIMI: Less Is More for Agency",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45368970",
+ "created_at": "2025-09-25T03:26:06Z"
+ },
+ {
+ "hn_id": "37737779",
+ "title": "Illuminating Router Vendor Diversity Within Providers and Along Network Paths",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37737779",
+ "created_at": "2023-10-02T13:26:46Z"
+ }
+ ],
+ "top_points": 9,
+ "total_points": 21,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/testdriven-development-llmbased-2024/hn.json b/papers/testdriven-development-llmbased-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "39509287",
+ "title": "Fractal Scaling and the Aesthetics of Trees",
+ "points": 83,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=39509287",
+ "created_at": "2024-02-26T09:40:27Z"
+ },
+ {
+ "hn_id": "39450490",
+ "title": "VideoPrism: A Foundational Visual Encoder for Video Understanding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39450490",
+ "created_at": "2024-02-21T05:35:16Z"
+ }
+ ],
+ "top_points": 83,
+ "total_points": 85,
+ "total_comments": 13
+}
+\ No newline at end of file
diff --git a/papers/testgeneval-real-world-2024/hn.json b/papers/testgeneval-real-world-2024/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "44157378",
+ "title": "TradeExpert, a trading framework that employs Mixture of Expert LLMs",
+ "points": 114,
+ "comments": 136,
+ "url": "https://news.ycombinator.com/item?id=44157378",
+ "created_at": "2025-06-02T10:25:51Z"
+ },
+ {
+ "hn_id": "41917635",
+ "title": "Building a simple oscillator based Ising machine for research and education",
+ "points": 17,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=41917635",
+ "created_at": "2024-10-22T19:14:08Z"
+ },
+ {
+ "hn_id": "45571284",
+ "title": "AI Where It Matters: Where, Why, and How Devs Want AI Support in Daily Work",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45571284",
+ "created_at": "2025-10-13T17:50:16Z"
+ },
+ {
+ "hn_id": "37865653",
+ "title": "Survey on Factuality in Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37865653",
+ "created_at": "2023-10-13T01:57:46Z"
+ },
+ {
+ "hn_id": "39438883",
+ "title": "Machine Translation Testing via Syntactic Tree Pruning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39438883",
+ "created_at": "2024-02-20T07:39:20Z"
+ }
+ ],
+ "top_points": 114,
+ "total_points": 136,
+ "total_comments": 143
+}
+\ No newline at end of file
diff --git a/papers/testtime-matching-unlocking-2025/hn.json b/papers/testtime-matching-unlocking-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "28906925",
+ "title": "Survey: Machine Learning Algorithms for Detecting Ransomware Encryption Activity",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=28906925",
+ "created_at": "2021-10-18T16:00:08Z"
+ },
+ {
+ "hn_id": "39744680",
+ "title": "Differentiable Euler Characteristic Transforms for Shape Classification",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39744680",
+ "created_at": "2024-03-18T14:01:44Z"
+ },
+ {
+ "hn_id": "37970951",
+ "title": "Code Polymorphism and Encryption for Confidentiality and Side-Channel Protection",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37970951",
+ "created_at": "2023-10-21T22:12:06Z"
+ },
+ {
+ "hn_id": "43884165",
+ "title": "Can Transformers Reason Logically? A Study in SAT Solving",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43884165",
+ "created_at": "2025-05-04T03:09:31Z"
+ },
+ {
+ "hn_id": "10468788",
+ "title": "CONCEPT – The COsmological N-body CodE in PyThon",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10468788",
+ "created_at": "2015-10-29T02:10:34Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 8,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/textresnet-decoupling-routing-2026/hn.json b/papers/textresnet-decoupling-routing-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47003354",
+ "title": "SWE-ContextBench: context learning benchmark in coding",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47003354",
+ "created_at": "2026-02-13T14:50:43Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/textttremind-understanding-deductive-2025/hn.json b/papers/textttremind-understanding-deductive-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "38124051",
+ "title": "Generate and Pray: Using SALLMs to Evaluate the Security of LLM Generated Code",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=38124051",
+ "created_at": "2023-11-03T03:20:22Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/tfhecoder-evaluating-llmagentic-2025/hn.json b/papers/tfhecoder-evaluating-llmagentic-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39869603",
+ "title": "TnT-LLM: Text Mining at Scale with Large Language Models",
+ "points": 66,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=39869603",
+ "created_at": "2024-03-29T22:18:45Z"
+ },
+ {
+ "hn_id": "43208096",
+ "title": "Enhancing Frame Detection with Retrieval Augmented Generation",
+ "points": 37,
+ "comments": 12,
+ "url": "https://news.ycombinator.com/item?id=43208096",
+ "created_at": "2025-02-28T17:25:06Z"
+ },
+ {
+ "hn_id": "44695159",
+ "title": "Is the Interstellar Object 3I/Atlas Alien Technology?",
+ "points": 36,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=44695159",
+ "created_at": "2025-07-26T16:15:17Z"
+ },
+ {
+ "hn_id": "44047804",
+ "title": "Code Improvement Practices at Meta",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44047804",
+ "created_at": "2025-05-21T02:36:34Z"
+ },
+ {
+ "hn_id": "45293126",
+ "title": "Reversible Deep Equilibrium Models",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45293126",
+ "created_at": "2025-09-18T18:20:23Z"
+ },
+ {
+ "hn_id": "45300655",
+ "title": "Generalizable Geometric Image Caption Synthesis",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45300655",
+ "created_at": "2025-09-19T12:05:01Z"
+ },
+ {
+ "hn_id": "44534854",
+ "title": "Potential Danger to Satellites from a 2032 Lunar Impact by Asteroid 2024 YR4",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44534854",
+ "created_at": "2025-07-11T17:27:57Z"
+ },
+ {
+ "hn_id": "44503963",
+ "title": "InfoFlood: Jailbreaking Large Language Models with Information Overload",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44503963",
+ "created_at": "2025-07-08T20:51:43Z"
+ },
+ {
+ "hn_id": "43760287",
+ "title": "Creating benchmarkable components to measure the quality of AI-enhanced devtools",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43760287",
+ "created_at": "2025-04-22T09:09:48Z"
+ },
+ {
+ "hn_id": "41593257",
+ "title": "When Is Trust Robust?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41593257",
+ "created_at": "2024-09-19T16:02:55Z"
+ }
+ ],
+ "top_points": 66,
+ "total_points": 158,
+ "total_comments": 40
+}
+\ No newline at end of file
diff --git a/papers/theoretical-foundations-scaling-2025/hn.json b/papers/theoretical-foundations-scaling-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "46497562",
+ "title": "Deletion Considered Harmful",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46497562",
+ "created_at": "2026-01-05T11:27:55Z"
+ },
+ {
+ "hn_id": "45743893",
+ "title": "Why Foundation Models in Pathology Are Failing",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45743893",
+ "created_at": "2025-10-29T07:51:11Z"
+ },
+ {
+ "hn_id": "46182356",
+ "title": "Klein Bottle Cosmology",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46182356",
+ "created_at": "2025-12-07T15:25:51Z"
+ },
+ {
+ "hn_id": "46500383",
+ "title": "Research Directions in Quantum Computer Cybersecurity",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46500383",
+ "created_at": "2026-01-05T16:01:13Z"
+ },
+ {
+ "hn_id": "46433603",
+ "title": "Training AI Co-Scientists Using Rubric Rewards [Meta Superintelligence Labs]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46433603",
+ "created_at": "2025-12-30T14:25:11Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 13,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/they-all-good-2025/hn.json b/papers/they-all-good-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "43021849",
+ "title": "Competitive Programming with Large Reasoning Models",
+ "points": 16,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43021849",
+ "created_at": "2025-02-12T04:22:01Z"
+ },
+ {
+ "hn_id": "43025479",
+ "title": "Competitive Programming with Large Reasoning Models",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43025479",
+ "created_at": "2025-02-12T13:59:52Z"
+ },
+ {
+ "hn_id": "43072941",
+ "title": "OpenAI: Competitive Programming with Large Reasoning Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43072941",
+ "created_at": "2025-02-16T23:32:10Z"
+ },
+ {
+ "hn_id": "43022224",
+ "title": "OpenAI o3 just scored 99.8% on CodeForces using brute-force",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43022224",
+ "created_at": "2025-02-12T05:35:29Z"
+ },
+ {
+ "hn_id": "44552387",
+ "title": "LLMs for Drug-Drug Interaction Prediction: A Comprehensive Comparison",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44552387",
+ "created_at": "2025-07-13T18:27:24Z"
+ },
+ {
+ "hn_id": "43030525",
+ "title": "Competitive programming with large language models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43030525",
+ "created_at": "2025-02-12T22:37:05Z"
+ },
+ {
+ "hn_id": "44902216",
+ "title": "The Consistency and Performance of the Iterative Bayesian Update",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44902216",
+ "created_at": "2025-08-14T16:12:41Z"
+ },
+ {
+ "hn_id": "44889206",
+ "title": "Large Language Models Do Not Simulate Human Psychology",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44889206",
+ "created_at": "2025-08-13T14:50:01Z"
+ },
+ {
+ "hn_id": "43055820",
+ "title": "Competitive Programming with Large Reasoning Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43055820",
+ "created_at": "2025-02-15T04:05:09Z"
+ },
+ {
+ "hn_id": "10044968",
+ "title": "Viral marketing as epidemiological model",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10044968",
+ "created_at": "2015-08-11T22:57:48Z"
+ }
+ ],
+ "top_points": 16,
+ "total_points": 34,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/think-locally-explain-2026/hn.json b/papers/think-locally-explain-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/thinking-isnt-illusion-2025/hn.json b/papers/thinking-isnt-illusion-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "27995839",
+ "title": "A Large-Scale Security-Oriented Static Analysis of Python Packages in PyPI",
+ "points": 72,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=27995839",
+ "created_at": "2021-07-29T12:48:33Z"
+ },
+ {
+ "hn_id": "44925543",
+ "title": "PyG 2.0: Scalable Learning on Real World Graphs",
+ "points": 10,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44925543",
+ "created_at": "2025-08-16T17:54:17Z"
+ },
+ {
+ "hn_id": "44718857",
+ "title": "Cascade: LLM-Powered JavaScript Deobfuscator",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44718857",
+ "created_at": "2025-07-29T03:52:42Z"
+ },
+ {
+ "hn_id": "43723352",
+ "title": "The Imitation Game According to Turing",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43723352",
+ "created_at": "2025-04-17T23:28:44Z"
+ },
+ {
+ "hn_id": "43790761",
+ "title": "User Profiles: The Achilles' Heel of Web Browsers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43790761",
+ "created_at": "2025-04-25T06:32:45Z"
+ },
+ {
+ "hn_id": "42984225",
+ "title": "Leveraging Multimodal LLM for Inspirational User Interface Search",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42984225",
+ "created_at": "2025-02-08T16:52:28Z"
+ },
+ {
+ "hn_id": "44259726",
+ "title": "Learning Semantically Faithful EEG-to-Text Generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44259726",
+ "created_at": "2025-06-12T16:36:53Z"
+ },
+ {
+ "hn_id": "44184713",
+ "title": "Polymer: Development Workflows as Software",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44184713",
+ "created_at": "2025-06-04T19:43:49Z"
+ }
+ ],
+ "top_points": 72,
+ "total_points": 92,
+ "total_comments": 27
+}
+\ No newline at end of file
diff --git a/papers/thinking-llms-lie-2025/hn.json b/papers/thinking-llms-lie-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "42208383",
+ "title": "Show HN: Llama 3.2 Interpretability with Sparse Autoencoders",
+ "points": 579,
+ "comments": 99,
+ "url": "https://news.ycombinator.com/item?id=42208383",
+ "created_at": "2024-11-21T20:37:56Z"
+ },
+ {
+ "hn_id": "44254682",
+ "title": "LLMs Can Write Efficient CUDA Kernels",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44254682",
+ "created_at": "2025-06-12T06:04:16Z"
+ },
+ {
+ "hn_id": "23865704",
+ "title": "Venus Exploration in the New Human Spaceflight Age",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23865704",
+ "created_at": "2020-07-17T00:45:13Z"
+ },
+ {
+ "hn_id": "44885441",
+ "title": "Robust QCA with programmable 3050-photon Gaussian boson sampling",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44885441",
+ "created_at": "2025-08-13T07:05:52Z"
+ },
+ {
+ "hn_id": "39112452",
+ "title": "Efficient Quantum Circuit Design with a Standard Cell Approach",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39112452",
+ "created_at": "2024-01-24T01:24:51Z"
+ }
+ ],
+ "top_points": 579,
+ "total_points": 585,
+ "total_comments": 99
+}
+\ No newline at end of file
diff --git a/papers/thinking-longer-not-2025/hn.json b/papers/thinking-longer-not-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "37805651",
+ "title": "Agent Instructs Large Language Models to Be General Zero-Shot Reasoners",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37805651",
+ "created_at": "2023-10-07T21:17:40Z"
+ },
+ {
+ "hn_id": "46230985",
+ "title": "How far are we from scaling up next-pixel prediction for image pretraining?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46230985",
+ "created_at": "2025-12-11T13:15:39Z"
+ },
+ {
+ "hn_id": "45912053",
+ "title": "How far are we from scaling up next-pixel prediction?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45912053",
+ "created_at": "2025-11-13T07:57:51Z"
+ },
+ {
+ "hn_id": "41913559",
+ "title": "What Makes Large Language Models Reason in (Multi-Turn) Code Generation?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41913559",
+ "created_at": "2024-10-22T12:27:37Z"
+ }
+ ],
+ "top_points": 5,
+ "total_points": 9,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/thought-communication-multiagent-2025/hn.json b/papers/thought-communication-multiagent-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "46069076",
+ "title": "Game Theory in Cosmology",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46069076",
+ "created_at": "2025-11-27T13:33:13Z"
+ },
+ {
+ "hn_id": "46415244",
+ "title": "A Profit-Based Measure of Lending Discrimination",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46415244",
+ "created_at": "2025-12-28T22:37:15Z"
+ },
+ {
+ "hn_id": "45536735",
+ "title": "Truth-Aware Decoding: Program Logic for Factual LMs",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45536735",
+ "created_at": "2025-10-10T09:09:54Z"
+ },
+ {
+ "hn_id": "38190931",
+ "title": "Defining a New NLP Playground",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38190931",
+ "created_at": "2023-11-08T14:40:16Z"
+ },
+ {
+ "hn_id": "45889326",
+ "title": "What Is Quantum Computer Security?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45889326",
+ "created_at": "2025-11-11T16:35:14Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 11,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/tigercoder-novel-suite-2025/hn.json b/papers/tigercoder-novel-suite-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "24363101",
+ "title": "Java Cryptography Uses in the Wild",
+ "points": 43,
+ "comments": 7,
+ "url": "https://news.ycombinator.com/item?id=24363101",
+ "created_at": "2020-09-03T11:57:33Z"
+ },
+ {
+ "hn_id": "37575139",
+ "title": "Contrastive decoding improves reasoning in large language models",
+ "points": 21,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37575139",
+ "created_at": "2023-09-19T19:30:20Z"
+ },
+ {
+ "hn_id": "44378499",
+ "title": "Give Me FP32 or Give Me Death?",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44378499",
+ "created_at": "2025-06-25T15:34:21Z"
+ },
+ {
+ "hn_id": "43585473",
+ "title": "Scaling Language-Free Visual Representation Learning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43585473",
+ "created_at": "2025-04-04T17:31:44Z"
+ },
+ {
+ "hn_id": "45226714",
+ "title": "Are ArXiv submissions on Wednesday better cited?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45226714",
+ "created_at": "2025-09-12T21:00:07Z"
+ },
+ {
+ "hn_id": "45867965",
+ "title": "FPI-Det: A Face–Phone Interaction Dataset for Phone-Use Detection",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45867965",
+ "created_at": "2025-11-09T18:43:52Z"
+ },
+ {
+ "hn_id": "44440628",
+ "title": "A Comprehensive Review of Human Error in Risk-Informed Decision Making",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44440628",
+ "created_at": "2025-07-02T05:58:05Z"
+ },
+ {
+ "hn_id": "43873925",
+ "title": "AI-LieDar: Examine the Trade-Off Between Utility and Truthfulness in LLM Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43873925",
+ "created_at": "2025-05-02T19:45:09Z"
+ },
+ {
+ "hn_id": "24599271",
+ "title": "On the Threat of NPM Vulnerable Dependencies in Node.js Applications",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=24599271",
+ "created_at": "2020-09-26T14:52:43Z"
+ },
+ {
+ "hn_id": "10419236",
+ "title": "Representation Benefits of Deep Feedforward Networks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=10419236",
+ "created_at": "2015-10-20T14:14:07Z"
+ }
+ ],
+ "top_points": 43,
+ "total_points": 77,
+ "total_comments": 10
+}
+\ No newline at end of file
diff --git a/papers/top-leaderboard-ranking-2024/hn.json b/papers/top-leaderboard-ranking-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39575314",
+ "title": "An observational study of programming and cannabis intoxication",
+ "points": 57,
+ "comments": 101,
+ "url": "https://news.ycombinator.com/item?id=39575314",
+ "created_at": "2024-03-02T19:59:52Z"
+ },
+ {
+ "hn_id": "39870037",
+ "title": "GenAI Detection Tools, Adversarial Techniques, Implications in Higher Education",
+ "points": 12,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=39870037",
+ "created_at": "2024-03-29T23:09:40Z"
+ },
+ {
+ "hn_id": "40617373",
+ "title": "Wavefront Threading Enables Effective High-Level Synthesis",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40617373",
+ "created_at": "2024-06-08T13:20:09Z"
+ },
+ {
+ "hn_id": "40743899",
+ "title": "Lossless Visualization of 4D Compositional Data on a 2D Canvas",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40743899",
+ "created_at": "2024-06-20T22:00:31Z"
+ },
+ {
+ "hn_id": "39879057",
+ "title": "GenAI Detection Tools, Adversarial Techniques and Implications in Higher Ed",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39879057",
+ "created_at": "2024-03-30T21:56:04Z"
+ },
+ {
+ "hn_id": "43495798",
+ "title": "RGL: Graph-Centric,Framework for Efficient RAG on Graphs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43495798",
+ "created_at": "2025-03-27T17:25:12Z"
+ },
+ {
+ "hn_id": "40428829",
+ "title": "Artificial Greenhouse Gases as Exoplanet Technosignatures",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40428829",
+ "created_at": "2024-05-21T14:20:00Z"
+ },
+ {
+ "hn_id": "23078518",
+ "title": "Light Projection Attacks on Face Recognition",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=23078518",
+ "created_at": "2020-05-05T10:40:01Z"
+ },
+ {
+ "hn_id": "7383749",
+ "title": "Candy Crush is NP-hard",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=7383749",
+ "created_at": "2014-03-12T03:30:27Z"
+ },
+ {
+ "hn_id": "41776389",
+ "title": "I Bet You Did Not Mean That: Testing Semantic Importance via Betting",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41776389",
+ "created_at": "2024-10-08T12:01:50Z"
+ }
+ ],
+ "top_points": 57,
+ "total_points": 86,
+ "total_comments": 104
+}
+\ No newline at end of file
diff --git a/papers/traceable-latent-variable-2026/hn.json b/papers/traceable-latent-variable-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/training-generalizable-collaborative-2026/hn.json b/papers/training-generalizable-collaborative-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/training-llms-generating-2024/hn.json b/papers/training-llms-generating-2024/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "42139161",
+ "title": "GPT or BERT: why not both?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42139161",
+ "created_at": "2024-11-14T18:07:10Z"
+ },
+ {
+ "hn_id": "41741744",
+ "title": "Mitigating Memorization in Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41741744",
+ "created_at": "2024-10-04T14:23:05Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/training-llms-honesty-2025/hn.json b/papers/training-llms-honesty-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "46242795",
+ "title": "Training LLMs for honesty via confessions",
+ "points": 70,
+ "comments": 58,
+ "url": "https://news.ycombinator.com/item?id=46242795",
+ "created_at": "2025-12-12T10:37:51Z"
+ },
+ {
+ "hn_id": "29575558",
+ "title": "Analysis of Leading Twitter Communities Disseminating ArXiv Information",
+ "points": 11,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=29575558",
+ "created_at": "2021-12-16T06:24:04Z"
+ },
+ {
+ "hn_id": "46225914",
+ "title": "Selfi: Self Improving Reconstruction Engine via 3D Geometric Feature Alignment",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46225914",
+ "created_at": "2025-12-11T00:06:30Z"
+ },
+ {
+ "hn_id": "46003935",
+ "title": "Reinforcement Learning Control of Quantum Error Correction",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46003935",
+ "created_at": "2025-11-21T12:37:36Z"
+ }
+ ],
+ "top_points": 70,
+ "total_points": 85,
+ "total_comments": 58
+}
+\ No newline at end of file
diff --git a/papers/transformer-we-trust-2026/hn.json b/papers/transformer-we-trust-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/transforming-wearable-data-2024/hn.json b/papers/transforming-wearable-data-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39403534",
+ "title": "LLM agents can autonomously hack websites",
+ "points": 85,
+ "comments": 21,
+ "url": "https://news.ycombinator.com/item?id=39403534",
+ "created_at": "2024-02-16T22:03:16Z"
+ },
+ {
+ "hn_id": "40795244",
+ "title": "How Far Can Transformers Reason? The Locality Barrier and Inductive Scratchpad",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40795244",
+ "created_at": "2024-06-26T00:32:33Z"
+ },
+ {
+ "hn_id": "39301136",
+ "title": "Ten Hard Problems in Artificial Intelligence We Must Get Right",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39301136",
+ "created_at": "2024-02-08T12:28:48Z"
+ },
+ {
+ "hn_id": "40651110",
+ "title": "Google: Towards a Personal Health Large Language Model",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40651110",
+ "created_at": "2024-06-11T20:29:58Z"
+ },
+ {
+ "hn_id": "39403991",
+ "title": "A Fuzzy Approach to Record Linkages",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39403991",
+ "created_at": "2024-02-16T22:43:09Z"
+ },
+ {
+ "hn_id": "40666076",
+ "title": "Alignment Data Synthesis from Scratch by Prompting Aligned LLMs with Nothing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40666076",
+ "created_at": "2024-06-13T04:53:33Z"
+ },
+ {
+ "hn_id": "41504752",
+ "title": "Leveraging Large Language Models for Solving Rare MIP Challenges",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41504752",
+ "created_at": "2024-09-10T19:45:16Z"
+ },
+ {
+ "hn_id": "41251545",
+ "title": "GPT-3 Powered Information Extraction for Building Robust Knowledge Bases",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41251545",
+ "created_at": "2024-08-14T23:14:24Z"
+ },
+ {
+ "hn_id": "40341096",
+ "title": "Linearizing Large Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40341096",
+ "created_at": "2024-05-13T08:53:25Z"
+ },
+ {
+ "hn_id": "41511278",
+ "title": "Operational Advice for Dense and Sparse Retrievers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41511278",
+ "created_at": "2024-09-11T13:41:27Z"
+ }
+ ],
+ "top_points": 85,
+ "total_points": 110,
+ "total_comments": 23
+}
+\ No newline at end of file
diff --git a/papers/tree-thoughts-deliberate-2023/hn.json b/papers/tree-thoughts-deliberate-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "28581570",
+ "title": "MLP-Mixer: An All-MLP Architecture for Vision",
+ "points": 38,
+ "comments": 16,
+ "url": "https://news.ycombinator.com/item?id=28581570",
+ "created_at": "2021-09-19T03:57:55Z"
+ },
+ {
+ "hn_id": "36012320",
+ "title": "Tree of Thoughts: Deliberate Problem Solving with Large Language Models",
+ "points": 34,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36012320",
+ "created_at": "2023-05-20T14:43:30Z"
+ },
+ {
+ "hn_id": "36002796",
+ "title": "Tree of Thoughts: Deliberate Problem Solving with Large Language Models",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36002796",
+ "created_at": "2023-05-19T15:02:59Z"
+ },
+ {
+ "hn_id": "38157278",
+ "title": "PsyMo: A Dataset for Estimating Self-Reported Psychological Traits from Gait",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38157278",
+ "created_at": "2023-11-06T00:23:10Z"
+ },
+ {
+ "hn_id": "36008023",
+ "title": "Tree-of-Thought (ToT), complex and general problem solving with LLMs",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36008023",
+ "created_at": "2023-05-19T23:38:37Z"
+ },
+ {
+ "hn_id": "36149566",
+ "title": "Tree of Thoughts: Official vs. Wrong Implementation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36149566",
+ "created_at": "2023-06-01T11:00:31Z"
+ },
+ {
+ "hn_id": "35667248",
+ "title": "Perception, Adoption and Use of Text-to-Image-Generation AI by the Game Industry",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35667248",
+ "created_at": "2023-04-22T15:01:54Z"
+ },
+ {
+ "hn_id": "44103693",
+ "title": "Agent Name Service: A Universal Directory for Secure AI Agent Discovery",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44103693",
+ "created_at": "2025-05-27T03:22:48Z"
+ },
+ {
+ "hn_id": "44048071",
+ "title": "Agent Name Service (ANS):A Directory for AI Agent Discovery and Interoperability",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44048071",
+ "created_at": "2025-05-21T03:42:43Z"
+ },
+ {
+ "hn_id": "40444245",
+ "title": "The Relational Machine Calculus",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40444245",
+ "created_at": "2024-05-22T18:21:09Z"
+ }
+ ],
+ "top_points": 38,
+ "total_points": 93,
+ "total_comments": 20
+}
+\ No newline at end of file
diff --git a/papers/trigger-haystack-extracting-2026/hn.json b/papers/trigger-haystack-extracting-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46893430",
+ "title": "The Trigger in the Haystack: Extracting and Reconstructing LLM Backdoor Triggers",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46893430",
+ "created_at": "2026-02-04T23:28:00Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/trust-by-design-2026/hn.json b/papers/trust-by-design-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "46878800",
+ "title": "A formula for any real number, maybe",
+ "points": 2,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=46878800",
+ "created_at": "2026-02-03T23:17:06Z"
+ },
+ {
+ "hn_id": "46886075",
+ "title": "A formula for any real number, maybe",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46886075",
+ "created_at": "2026-02-04T14:17:45Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/trustworthy-llm-agents-survey-2025/hn.json b/papers/trustworthy-llm-agents-survey-2025/hn.json
@@ -0,0 +1,79 @@
+{
+ "threads": [
+ {
+ "hn_id": "45326740",
+ "title": "Unified Line and Paragraph Detection by Graph Convolutional Networks (2022)",
+ "points": 146,
+ "comments": 30,
+ "url": "https://news.ycombinator.com/item?id=45326740",
+ "created_at": "2025-09-21T21:18:14Z"
+ },
+ {
+ "hn_id": "30738551",
+ "title": "Physics in a diverse world, or a spherical cow model of physics talent",
+ "points": 38,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=30738551",
+ "created_at": "2022-03-19T23:35:17Z"
+ },
+ {
+ "hn_id": "45497568",
+ "title": "Fine-Tuning Small Language Models with Low-Rank Adapters to Mimic User Behaviors",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45497568",
+ "created_at": "2025-10-06T23:40:50Z"
+ },
+ {
+ "hn_id": "43782657",
+ "title": "Large-Scale Scene View Synthesis via Adaptive Block-Based Gaussian Splatting",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43782657",
+ "created_at": "2025-04-24T13:39:55Z"
+ },
+ {
+ "hn_id": "43364518",
+ "title": "Open-Sora 2.0: Training a Commercial-Level Video Generation Model in $200k",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43364518",
+ "created_at": "2025-03-14T16:53:28Z"
+ },
+ {
+ "hn_id": "47451726",
+ "title": "Evaluating Genuine Reasoning in LLMs via Esoteric Programming Languages",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47451726",
+ "created_at": "2026-03-20T07:55:08Z"
+ },
+ {
+ "hn_id": "45092259",
+ "title": "Motif 2.6B Technical Report",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45092259",
+ "created_at": "2025-09-01T12:38:16Z"
+ },
+ {
+ "hn_id": "42855667",
+ "title": "Towards Large Reasoning Models: A Survey of Reinforced Reasoning with LLMs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42855667",
+ "created_at": "2025-01-28T18:03:30Z"
+ },
+ {
+ "hn_id": "39834022",
+ "title": "Characterization of Large Language Model Development in the Datacenter",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39834022",
+ "created_at": "2024-03-26T23:26:36Z"
+ }
+ ],
+ "top_points": 146,
+ "total_points": 194,
+ "total_comments": 50
+}
+\ No newline at end of file
diff --git a/papers/trustworthy-llms-survey-2023/hn.json b/papers/trustworthy-llms-survey-2023/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "35607616",
+ "title": "ChemCrow: Augmenting large-language models with chemistry tools",
+ "points": 30,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=35607616",
+ "created_at": "2023-04-17T22:41:11Z"
+ },
+ {
+ "hn_id": "38149802",
+ "title": "TGDataset: A Collection of over One Hundred Thousand Telegram Channels",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38149802",
+ "created_at": "2023-11-05T10:15:11Z"
+ },
+ {
+ "hn_id": "37135397",
+ "title": "Neural Progressive Meshes",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37135397",
+ "created_at": "2023-08-15T15:48:20Z"
+ },
+ {
+ "hn_id": "36261342",
+ "title": "A Computational Analysis of Oral Argument in the Supreme Court",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36261342",
+ "created_at": "2023-06-09T17:46:31Z"
+ },
+ {
+ "hn_id": "44904875",
+ "title": "RelOBI: Reliable Low-Latency Interconnect for Tightly-Coupled On-Chip Comms",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44904875",
+ "created_at": "2025-08-14T19:53:42Z"
+ },
+ {
+ "hn_id": "38559773",
+ "title": "Enhanced weathering in U.S. Corn Belt delivers carbon removal,agronomic benefits",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38559773",
+ "created_at": "2023-12-07T18:18:06Z"
+ },
+ {
+ "hn_id": "35901718",
+ "title": "Large Language Model Programs",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35901718",
+ "created_at": "2023-05-11T13:29:06Z"
+ }
+ ],
+ "top_points": 30,
+ "total_points": 39,
+ "total_comments": 19
+}
+\ No newline at end of file
diff --git a/papers/type-context-pass-rates-2024/hn.json b/papers/type-context-pass-rates-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39275203",
+ "title": "Bluesky and the AT Protocol: Usable decentralized social media",
+ "points": 245,
+ "comments": 276,
+ "url": "https://news.ycombinator.com/item?id=39275203",
+ "created_at": "2024-02-06T15:25:33Z"
+ },
+ {
+ "hn_id": "31662569",
+ "title": "NeMF: Neural Motion Fields for Kinematic Animation",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31662569",
+ "created_at": "2022-06-08T02:35:46Z"
+ },
+ {
+ "hn_id": "39626604",
+ "title": "SaulLM-7B: A Pioneering Large Language Model for Law",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39626604",
+ "created_at": "2024-03-07T08:34:37Z"
+ },
+ {
+ "hn_id": "27450354",
+ "title": "Tabular Data: Deep Learning Is Not All You Need",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27450354",
+ "created_at": "2021-06-09T17:03:59Z"
+ },
+ {
+ "hn_id": "40008135",
+ "title": "Stream of Search (SOS): Learning to Search in Language",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40008135",
+ "created_at": "2024-04-12T00:11:28Z"
+ },
+ {
+ "hn_id": "39629520",
+ "title": "Large language models surpass human experts in predicting neuroscience results",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39629520",
+ "created_at": "2024-03-07T14:32:39Z"
+ },
+ {
+ "hn_id": "39292705",
+ "title": "Training-Free Consistent Text-to-Image Generation",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39292705",
+ "created_at": "2024-02-07T18:59:52Z"
+ },
+ {
+ "hn_id": "32176051",
+ "title": "Nezha: Deployable and High-Performance Consensus Using Synchronized Clocks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=32176051",
+ "created_at": "2022-07-21T05:25:58Z"
+ },
+ {
+ "hn_id": "27461059",
+ "title": "Tabular Data: Deep Learning Is Not All You Need [pdf]",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27461059",
+ "created_at": "2021-06-10T14:17:42Z"
+ },
+ {
+ "hn_id": "45293628",
+ "title": "A Trustworthiness-Based Metaphysics of Artificial Intelligence Systems",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45293628",
+ "created_at": "2025-09-18T19:01:08Z"
+ }
+ ],
+ "top_points": 245,
+ "total_points": 266,
+ "total_comments": 276
+}
+\ No newline at end of file
diff --git a/papers/types-grassroots-logic-2026/hn.json b/papers/types-grassroots-logic-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47478878",
+ "title": "Whole-Brain Connectomic Graph Model Enables Locomotion Control in Fruit Fly",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47478878",
+ "created_at": "2026-03-22T16:00:44Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/typescript-typecheck-failures-2025/hn.json b/papers/typescript-typecheck-failures-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "43978357",
+ "title": "Type-constrained code generation with language models",
+ "points": 257,
+ "comments": 127,
+ "url": "https://news.ycombinator.com/item?id=43978357",
+ "created_at": "2025-05-13T22:15:30Z"
+ },
+ {
+ "hn_id": "42742057",
+ "title": "Mathematics of the daily word game Waffle",
+ "points": 58,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=42742057",
+ "created_at": "2025-01-17T19:07:54Z"
+ },
+ {
+ "hn_id": "43909816",
+ "title": "\"Not a Representation of Me\": Accent Bias and Digital Exclusion in AI Voices",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43909816",
+ "created_at": "2025-05-06T21:24:49Z"
+ },
+ {
+ "hn_id": "46658717",
+ "title": "Terabyte-Scale Analytics in the Blink of an Eye",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46658717",
+ "created_at": "2026-01-17T15:19:23Z"
+ },
+ {
+ "hn_id": "30284572",
+ "title": "Measuring the Implications of Universities Migrating to Public Clouds (2021)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30284572",
+ "created_at": "2022-02-10T10:48:25Z"
+ },
+ {
+ "hn_id": "43926603",
+ "title": "Pearch.ai beat LinkedIn's AI search in a head-to-head benchmark",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43926603",
+ "created_at": "2025-05-08T14:50:43Z"
+ },
+ {
+ "hn_id": "26719678",
+ "title": "A Review of Formal Methods Applied to Machine Learning [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26719678",
+ "created_at": "2021-04-07T01:49:38Z"
+ }
+ ],
+ "top_points": 257,
+ "total_points": 324,
+ "total_comments": 146
+}
+\ No newline at end of file
diff --git a/papers/uc-berkeley-mast-2025/hn.json b/papers/uc-berkeley-mast-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "26706424",
+ "title": "“I’ll Finish It This Week” and Other Lies",
+ "points": 306,
+ "comments": 115,
+ "url": "https://news.ycombinator.com/item?id=26706424",
+ "created_at": "2021-04-06T00:17:31Z"
+ },
+ {
+ "hn_id": "45033114",
+ "title": "The “Wow!” signal was likely from extraterrestrial source, and more powerful",
+ "points": 238,
+ "comments": 263,
+ "url": "https://news.ycombinator.com/item?id=45033114",
+ "created_at": "2025-08-26T22:25:06Z"
+ },
+ {
+ "hn_id": "45300695",
+ "title": "Why most AI coding benchmarks are misleading (COMPASS paper)",
+ "points": 13,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45300695",
+ "created_at": "2025-09-19T12:08:39Z"
+ },
+ {
+ "hn_id": "45029603",
+ "title": "Arecibo Wow II: Revised Properties of the Wow Signal from Archival SETI Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45029603",
+ "created_at": "2025-08-26T17:23:50Z"
+ },
+ {
+ "hn_id": "41899395",
+ "title": "Arcee's MergeKit: A Toolkit for Merging Large Language Models",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41899395",
+ "created_at": "2024-10-20T23:29:50Z"
+ },
+ {
+ "hn_id": "26657445",
+ "title": "“I'll Finish It This Week” and Other Lies",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=26657445",
+ "created_at": "2021-04-01T07:08:11Z"
+ },
+ {
+ "hn_id": "45040278",
+ "title": "Arecibo Wow II: Revised Properties of the Wow Signal from Archival SETI Data",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45040278",
+ "created_at": "2025-08-27T14:33:01Z"
+ },
+ {
+ "hn_id": "44193165",
+ "title": "RL in Name Only? Analyzing the Structural Assumptions in RL Post-Training",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44193165",
+ "created_at": "2025-06-05T16:25:14Z"
+ },
+ {
+ "hn_id": "44375012",
+ "title": "Why Do Multi-Agent LLM Systems Fail?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44375012",
+ "created_at": "2025-06-25T08:48:15Z"
+ },
+ {
+ "hn_id": "43428965",
+ "title": "Why Do Multi-Agent LLM Systems Fail?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43428965",
+ "created_at": "2025-03-20T21:05:37Z"
+ }
+ ],
+ "top_points": 306,
+ "total_points": 572,
+ "total_comments": 380
+}
+\ No newline at end of file
diff --git a/papers/uda-benchmark-suite-2024/hn.json b/papers/uda-benchmark-suite-2024/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "28230092",
+ "title": "A Dyson sphere around a black hole",
+ "points": 214,
+ "comments": 231,
+ "url": "https://news.ycombinator.com/item?id=28230092",
+ "created_at": "2021-08-19T03:40:00Z"
+ },
+ {
+ "hn_id": "40776255",
+ "title": "Basilisk: An End-to-End Open-Source Linux-Capable RISC-V SoC in 130nm CMOS",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40776255",
+ "created_at": "2024-06-24T14:10:04Z"
+ },
+ {
+ "hn_id": "27680642",
+ "title": "An Incentive Mechanism for Trading Personal Data in Data Markets",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=27680642",
+ "created_at": "2021-06-29T19:30:15Z"
+ },
+ {
+ "hn_id": "44814218",
+ "title": "Improved stereoscopic rendering performance by synthesizing the second view",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44814218",
+ "created_at": "2025-08-06T16:28:38Z"
+ },
+ {
+ "hn_id": "42258289",
+ "title": "A Survey on Employing Large Language Models for Text-to-SQL Tasks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42258289",
+ "created_at": "2024-11-27T18:17:00Z"
+ },
+ {
+ "hn_id": "40145288",
+ "title": "Analysis of Math Requirements of 199 CS BS/BA Degrees at 158 U.S. Universities",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40145288",
+ "created_at": "2024-04-24T15:10:05Z"
+ },
+ {
+ "hn_id": "41634039",
+ "title": "Efficient Acquisition of Robot Cooking Skills",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41634039",
+ "created_at": "2024-09-24T07:32:28Z"
+ },
+ {
+ "hn_id": "39778650",
+ "title": "Evolutionary Optimization of Model Merging Recipes",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39778650",
+ "created_at": "2024-03-21T14:04:52Z"
+ }
+ ],
+ "top_points": 214,
+ "total_points": 228,
+ "total_comments": 232
+}
+\ No newline at end of file
diff --git a/papers/uncertainty-large-language-2026/hn.json b/papers/uncertainty-large-language-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/understanding-large-language-2023/hn.json b/papers/understanding-large-language-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37627129",
+ "title": "The Cambridge Law Corpus: A corpus for legal AI research",
+ "points": 142,
+ "comments": 41,
+ "url": "https://news.ycombinator.com/item?id=37627129",
+ "created_at": "2023-09-23T20:22:53Z"
+ },
+ {
+ "hn_id": "27995839",
+ "title": "A Large-Scale Security-Oriented Static Analysis of Python Packages in PyPI",
+ "points": 72,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=27995839",
+ "created_at": "2021-07-29T12:48:33Z"
+ },
+ {
+ "hn_id": "44685869",
+ "title": "WhoFi: Deep Person Re-Identification via Wi-Fi Channel Signal Encoding",
+ "points": 55,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=44685869",
+ "created_at": "2025-07-25T17:35:29Z"
+ },
+ {
+ "hn_id": "40211351",
+ "title": "Show HN: Bumpgen – upgrade NPM packages using AI",
+ "points": 20,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=40211351",
+ "created_at": "2024-04-30T14:35:04Z"
+ },
+ {
+ "hn_id": "44792686",
+ "title": "Language Models Improve When Pretraining Data Matches Target Tasks",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44792686",
+ "created_at": "2025-08-04T23:48:16Z"
+ },
+ {
+ "hn_id": "40320548",
+ "title": "Show HN: I built an AI agent that upgrades NPM packages",
+ "points": 5,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=40320548",
+ "created_at": "2024-05-10T16:03:07Z"
+ },
+ {
+ "hn_id": "44675617",
+ "title": "WhoFi: Deep Person Re-Identification via Wi-Fi Channel Signal Encoding",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44675617",
+ "created_at": "2025-07-24T20:25:00Z"
+ },
+ {
+ "hn_id": "41342731",
+ "title": "Rail-Only: A Low-Cost High-Performance Network for Training LLMs with T Params",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41342731",
+ "created_at": "2024-08-24T23:21:21Z"
+ },
+ {
+ "hn_id": "40275424",
+ "title": "Show HN: Can AI keep my code up-to-date?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40275424",
+ "created_at": "2024-05-06T14:55:41Z"
+ },
+ {
+ "hn_id": "36900346",
+ "title": "MC-JEPA",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36900346",
+ "created_at": "2023-07-27T21:22:45Z"
+ }
+ ],
+ "top_points": 142,
+ "total_points": 310,
+ "total_comments": 90
+}
+\ No newline at end of file
diff --git a/papers/understanding-multimodal-finetuning-2026/hn.json b/papers/understanding-multimodal-finetuning-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47476280",
+ "title": "Non-trivial error in physics paper found via Lean",
+ "points": 22,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=47476280",
+ "created_at": "2026-03-22T11:03:14Z"
+ }
+ ],
+ "top_points": 22,
+ "total_points": 22,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/understanding-protecting-augmenting-2025/hn.json b/papers/understanding-protecting-augmenting-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45068986",
+ "title": "The Theoretical Limitations of Embedding-Based Retrieval",
+ "points": 151,
+ "comments": 38,
+ "url": "https://news.ycombinator.com/item?id=45068986",
+ "created_at": "2025-08-29T20:25:34Z"
+ },
+ {
+ "hn_id": "45069341",
+ "title": "Reusing Computation in Text-to-Image Diffusion for Efficient Image Generation",
+ "points": 41,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45069341",
+ "created_at": "2025-08-29T21:01:53Z"
+ },
+ {
+ "hn_id": "45119397",
+ "title": "The Theoretical Limitations of Embedding-Based Retrieval",
+ "points": 36,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=45119397",
+ "created_at": "2025-09-03T19:09:29Z"
+ },
+ {
+ "hn_id": "47420697",
+ "title": "UC Irvine researchers bring down AI powered drones with painted umbrellas",
+ "points": 23,
+ "comments": 8,
+ "url": "https://news.ycombinator.com/item?id=47420697",
+ "created_at": "2026-03-18T01:42:29Z"
+ },
+ {
+ "hn_id": "45494202",
+ "title": "Mojo: MLIR-Based Performance-Portable HPC Science Kernels on GPUs",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45494202",
+ "created_at": "2025-10-06T18:02:24Z"
+ },
+ {
+ "hn_id": "43853742",
+ "title": "Pre-Trained Security LLM 8B",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43853742",
+ "created_at": "2025-05-01T04:32:40Z"
+ },
+ {
+ "hn_id": "45069328",
+ "title": "Learning on the Fly: Rapid Policy Adaptation via Differentiable Simulation",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45069328",
+ "created_at": "2025-08-29T20:59:59Z"
+ },
+ {
+ "hn_id": "44483262",
+ "title": "Tempest-LoRa: Cross-Technology Covert Communication via HDMI RF Emissions",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=44483262",
+ "created_at": "2025-07-06T19:22:26Z"
+ },
+ {
+ "hn_id": "45080035",
+ "title": "The Theoretical Limitations of Embedding-Based Retrieval",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45080035",
+ "created_at": "2025-08-31T03:10:51Z"
+ },
+ {
+ "hn_id": "47211355",
+ "title": "FlyTrap: Attract autonomous drones with an adversarial umbrella",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47211355",
+ "created_at": "2026-03-01T22:26:55Z"
+ }
+ ],
+ "top_points": 151,
+ "total_points": 274,
+ "total_comments": 53
+}
+\ No newline at end of file
diff --git a/papers/understanding-subliminal-learning-2025/hn.json b/papers/understanding-subliminal-learning-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "44280113",
+ "title": "Large language models often know when they are being evaluated",
+ "points": 89,
+ "comments": 130,
+ "url": "https://news.ycombinator.com/item?id=44280113",
+ "created_at": "2025-06-15T02:17:42Z"
+ },
+ {
+ "hn_id": "46230885",
+ "title": "Streaming Speech Synthesis Without the Trade-Offs: Meet StreamFlow",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=46230885",
+ "created_at": "2025-12-11T13:05:42Z"
+ },
+ {
+ "hn_id": "44943311",
+ "title": "NaN-propagation: a novel method for sparsity detection in black-box computationa",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44943311",
+ "created_at": "2025-08-18T17:42:03Z"
+ },
+ {
+ "hn_id": "47455015",
+ "title": "Quantum Computing and Artificial Intelligence: Status and Perspectives",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47455015",
+ "created_at": "2026-03-20T14:26:39Z"
+ },
+ {
+ "hn_id": "47162104",
+ "title": "A Computational Perspective on NeuroAI and Synthetic Biological Intelligence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47162104",
+ "created_at": "2026-02-26T05:05:59Z"
+ },
+ {
+ "hn_id": "44180296",
+ "title": "Quantum computing and artificial intelligence: status and perspectives",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44180296",
+ "created_at": "2025-06-04T13:00:35Z"
+ }
+ ],
+ "top_points": 89,
+ "total_points": 99,
+ "total_comments": 131
+}
+\ No newline at end of file
diff --git a/papers/unicode-augmenting-evaluation-2025/hn.json b/papers/unicode-augmenting-evaluation-2025/hn.json
@@ -0,0 +1,47 @@
+{
+ "threads": [
+ {
+ "hn_id": "38068328",
+ "title": "Microsoft says GPT 3.5 has 20B parameters?",
+ "points": 57,
+ "comments": 25,
+ "url": "https://news.ycombinator.com/item?id=38068328",
+ "created_at": "2023-10-30T12:02:08Z"
+ },
+ {
+ "hn_id": "46665309",
+ "title": "Reverse Engineering the ESP32-C3 Wi-Fi Drivers for Static Worst-Case Analysis",
+ "points": 8,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46665309",
+ "created_at": "2026-01-18T06:27:12Z"
+ },
+ {
+ "hn_id": "38069786",
+ "title": "CodeFusion: A Pre-Trained Diffusion Model for Code Generation",
+ "points": 6,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=38069786",
+ "created_at": "2023-10-30T14:21:33Z"
+ },
+ {
+ "hn_id": "46073247",
+ "title": "An Empirical Study on Why LLMs Struggle with Password Cracking",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46073247",
+ "created_at": "2025-11-27T21:09:25Z"
+ },
+ {
+ "hn_id": "45673086",
+ "title": "Can We Trust Functionally Correct Patches Generated by Code Agents?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45673086",
+ "created_at": "2025-10-22T18:18:44Z"
+ }
+ ],
+ "top_points": 57,
+ "total_points": 73,
+ "total_comments": 28
+}
+\ No newline at end of file
diff --git a/papers/unified-scaling-laws-2022/hn.json b/papers/unified-scaling-laws-2022/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "33033143",
+ "title": "Perils of Privacy Exposure Through Reverse DNS",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=33033143",
+ "created_at": "2022-09-30T10:30:45Z"
+ },
+ {
+ "hn_id": "30216905",
+ "title": "Learning What You Don't Know by Virtual Outlier Synthesis (VOS)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=30216905",
+ "created_at": "2022-02-05T03:33:14Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/unified-threat-detection-2025/hn.json b/papers/unified-threat-detection-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "24758210",
+ "title": "Deep Learning for Procedural Content Generation – a survey",
+ "points": 118,
+ "comments": 18,
+ "url": "https://news.ycombinator.com/item?id=24758210",
+ "created_at": "2020-10-12T19:09:09Z"
+ },
+ {
+ "hn_id": "45625233",
+ "title": "Multilingual Document Parsing via a 0.9B Vision-Language Model",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45625233",
+ "created_at": "2025-10-18T05:47:17Z"
+ }
+ ],
+ "top_points": 118,
+ "total_points": 120,
+ "total_comments": 18
+}
+\ No newline at end of file
diff --git a/papers/uniguardian-unified-defense-2025/hn.json b/papers/uniguardian-unified-defense-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "43293373",
+ "title": "RingFormer: Rethinking Recurrent Transformer with Adaptive Level Signals",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43293373",
+ "created_at": "2025-03-07T19:19:59Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/unseen-horizons-unveiling-2024/hn.json b/papers/unseen-horizons-unveiling-2024/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "46221594",
+ "title": "Terrain Diffusion: A Diffusion-Based Successor to Perlin Noise",
+ "points": 154,
+ "comments": 42,
+ "url": "https://news.ycombinator.com/item?id=46221594",
+ "created_at": "2025-12-10T18:37:27Z"
+ },
+ {
+ "hn_id": "46242795",
+ "title": "Training LLMs for honesty via confessions",
+ "points": 70,
+ "comments": 58,
+ "url": "https://news.ycombinator.com/item?id=46242795",
+ "created_at": "2025-12-12T10:37:51Z"
+ },
+ {
+ "hn_id": "39373902",
+ "title": "BASE TTS: Lessons from building a billion-parameter Text-to-Speech model",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39373902",
+ "created_at": "2024-02-14T19:16:18Z"
+ },
+ {
+ "hn_id": "41913559",
+ "title": "What Makes Large Language Models Reason in (Multi-Turn) Code Generation?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41913559",
+ "created_at": "2024-10-22T12:27:37Z"
+ },
+ {
+ "hn_id": "38529532",
+ "title": "Kattis vs. ChatGPT: Assessment and Evaluation of Programming Tasks in Age of AI",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38529532",
+ "created_at": "2023-12-05T11:24:26Z"
+ },
+ {
+ "hn_id": "34057876",
+ "title": "Improving Chess Commentaries by Combining [LLMs] with Symbolic Reasoning Engines",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34057876",
+ "created_at": "2022-12-19T21:20:44Z"
+ }
+ ],
+ "top_points": 154,
+ "total_points": 230,
+ "total_comments": 100
+}
+\ No newline at end of file
diff --git a/papers/unveiling-potential-diffusion-2025/hn.json b/papers/unveiling-potential-diffusion-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44212650",
+ "title": "Why Understanding Software Cycle Time Is Messy, Not Magic",
+ "points": 85,
+ "comments": 32,
+ "url": "https://news.ycombinator.com/item?id=44212650",
+ "created_at": "2025-06-07T21:03:28Z"
+ },
+ {
+ "hn_id": "44698753",
+ "title": "Measuring Engineering",
+ "points": 37,
+ "comments": 13,
+ "url": "https://news.ycombinator.com/item?id=44698753",
+ "created_at": "2025-07-27T03:38:18Z"
+ },
+ {
+ "hn_id": "45391220",
+ "title": "Understanding RL for model training, and future directions with GRAPE",
+ "points": 33,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45391220",
+ "created_at": "2025-09-26T21:30:23Z"
+ },
+ {
+ "hn_id": "23881840",
+ "title": "Learning Differential Equations That Are Easy to Solve",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=23881840",
+ "created_at": "2020-07-18T15:03:35Z"
+ },
+ {
+ "hn_id": "42999205",
+ "title": "Flip Graphs with Symmetry and New Matrix Multiplication Schemes",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42999205",
+ "created_at": "2025-02-10T11:40:18Z"
+ },
+ {
+ "hn_id": "45165536",
+ "title": "How to Hack Transformers: Steering LLMs via Prompts, States, and Weight Edits",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45165536",
+ "created_at": "2025-09-08T07:33:53Z"
+ },
+ {
+ "hn_id": "43371037",
+ "title": "No Silver Bullets: Why Understanding Software Cycle Time Is Messy, Not Magic",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43371037",
+ "created_at": "2025-03-15T08:43:01Z"
+ },
+ {
+ "hn_id": "40938862",
+ "title": "When LLMs Play the Telephone Game: Cumulative Changes and Attractors in Iterated",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40938862",
+ "created_at": "2024-07-11T17:37:00Z"
+ },
+ {
+ "hn_id": "45373347",
+ "title": "Quantized LLMss in Biomedical Natural Language Processing",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45373347",
+ "created_at": "2025-09-25T14:53:18Z"
+ },
+ {
+ "hn_id": "43022094",
+ "title": "A Survey on Large Language Models (2025)",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43022094",
+ "created_at": "2025-02-12T05:08:12Z"
+ }
+ ],
+ "top_points": 85,
+ "total_points": 170,
+ "total_comments": 48
+}
+\ No newline at end of file
diff --git a/papers/upbench-dynamically-evolving-2025/hn.json b/papers/upbench-dynamically-evolving-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "46046106",
+ "title": "Show HN: Sparse Matrix-Vector Multiplication that works at 30–90% sparsity",
+ "points": 7,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=46046106",
+ "created_at": "2025-11-25T14:35:00Z"
+ },
+ {
+ "hn_id": "47157759",
+ "title": "Can Chain-of-Thought Reasoning Solve Any Computable Task?",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47157759",
+ "created_at": "2026-02-25T20:57:29Z"
+ },
+ {
+ "hn_id": "42805056",
+ "title": "UI-Tars: Pioneering Automated GUI Interaction with Native Agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42805056",
+ "created_at": "2025-01-23T15:42:53Z"
+ },
+ {
+ "hn_id": "43774005",
+ "title": "UI-Tars: Pioneering Automated GUI Interaction with Native Agents",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43774005",
+ "created_at": "2025-04-23T16:45:07Z"
+ },
+ {
+ "hn_id": "38530334",
+ "title": "Parametric Building Wireframe Reconstruction from Aerial Lidar Point Clouds",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38530334",
+ "created_at": "2023-12-05T13:19:29Z"
+ },
+ {
+ "hn_id": "38466242",
+ "title": "Few-Shot Classification and Segmentation Using Large Language Models Agent",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38466242",
+ "created_at": "2023-11-29T22:34:18Z"
+ },
+ {
+ "hn_id": "33746101",
+ "title": "Guidelines for Developing Bots for GitHub",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33746101",
+ "created_at": "2022-11-25T19:51:32Z"
+ }
+ ],
+ "top_points": 7,
+ "total_points": 17,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/user-centric-evaluation-2024/hn.json b/papers/user-centric-evaluation-2024/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "42831632",
+ "title": "DeepSeekMath",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42831632",
+ "created_at": "2025-01-26T17:09:42Z"
+ },
+ {
+ "hn_id": "39286410",
+ "title": "Is Mamba Capable of In-Context Learning?",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39286410",
+ "created_at": "2024-02-07T09:30:00Z"
+ },
+ {
+ "hn_id": "39448850",
+ "title": "DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open LLMs",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39448850",
+ "created_at": "2024-02-21T00:39:33Z"
+ },
+ {
+ "hn_id": "39276565",
+ "title": "Pushing the Limits of Mathematical Reasoning in Open Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39276565",
+ "created_at": "2024-02-06T16:41:52Z"
+ },
+ {
+ "hn_id": "39270894",
+ "title": "Pushing the Limits of Mathematical Reasoning in Open Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39270894",
+ "created_at": "2024-02-06T04:45:22Z"
+ },
+ {
+ "hn_id": "42854785",
+ "title": "DeepSeekMath: Pushing Limits of Mathematical Reasoning in Open Language Models",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42854785",
+ "created_at": "2025-01-28T17:06:34Z"
+ },
+ {
+ "hn_id": "39440443",
+ "title": "Pushing the limits of mathematical reasoning in open language models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39440443",
+ "created_at": "2024-02-20T12:29:42Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 18,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/user-misconceptions-llmbased-2025/hn.json b/papers/user-misconceptions-llmbased-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46433452",
+ "title": "LLM Efficiency: From Hyperscale Optimizations to Universal Deployability",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46433452",
+ "created_at": "2025-12-30T14:08:39Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/utboost-rigorous-evaluation-2025/hn.json b/papers/utboost-rigorous-evaluation-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "42742057",
+ "title": "Mathematics of the daily word game Waffle",
+ "points": 58,
+ "comments": 19,
+ "url": "https://news.ycombinator.com/item?id=42742057",
+ "created_at": "2025-01-17T19:07:54Z"
+ },
+ {
+ "hn_id": "36370555",
+ "title": "Open Source-Based Over-the-Air 5G New Radio Sidelink Testbed",
+ "points": 37,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36370555",
+ "created_at": "2023-06-17T14:38:12Z"
+ },
+ {
+ "hn_id": "29734399",
+ "title": "Bad characters: imperceptible Natural Language Processing attacks [pdf]",
+ "points": 35,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=29734399",
+ "created_at": "2021-12-30T07:01:01Z"
+ },
+ {
+ "hn_id": "42764969",
+ "title": "Evolving Deeper LLM Thinking",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42764969",
+ "created_at": "2025-01-20T04:24:10Z"
+ },
+ {
+ "hn_id": "45661775",
+ "title": "Measuring the Impact of Early-2025 AI on Experienced Developer Productivity",
+ "points": 4,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=45661775",
+ "created_at": "2025-10-21T21:12:22Z"
+ },
+ {
+ "hn_id": "36370114",
+ "title": "Card Games Unveiled: Exploring the Underlying Linear Algebra",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36370114",
+ "created_at": "2023-06-17T13:47:47Z"
+ },
+ {
+ "hn_id": "45497568",
+ "title": "Fine-Tuning Small Language Models with Low-Rank Adapters to Mimic User Behaviors",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45497568",
+ "created_at": "2025-10-06T23:40:50Z"
+ },
+ {
+ "hn_id": "45249175",
+ "title": "What do the fundamental constants of physics tell us about life?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45249175",
+ "created_at": "2025-09-15T13:02:16Z"
+ },
+ {
+ "hn_id": "36581057",
+ "title": "Demystifying GPT Self-Repair for Code Generation",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=36581057",
+ "created_at": "2023-07-04T01:34:15Z"
+ },
+ {
+ "hn_id": "45291121",
+ "title": "Cut Costs, Not Accuracy: LLM-Powered Data Processing with Guarantees",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45291121",
+ "created_at": "2025-09-18T15:47:00Z"
+ }
+ ],
+ "top_points": 58,
+ "total_points": 159,
+ "total_comments": 31
+}
+\ No newline at end of file
diff --git a/papers/validity-what-you-2025/hn.json b/papers/validity-what-you-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45828523",
+ "title": "Continuous Autoregressive Language Models",
+ "points": 115,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=45828523",
+ "created_at": "2025-11-05T21:49:12Z"
+ },
+ {
+ "hn_id": "45814487",
+ "title": "Continuous Autoregressive Language Models",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45814487",
+ "created_at": "2025-11-04T18:45:32Z"
+ },
+ {
+ "hn_id": "45909683",
+ "title": "Continuous Autoregressive Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45909683",
+ "created_at": "2025-11-13T02:19:10Z"
+ }
+ ],
+ "top_points": 115,
+ "total_points": 120,
+ "total_comments": 11
+}
+\ No newline at end of file
diff --git a/papers/validityguided-workflow-robust-2025/hn.json b/papers/validityguided-workflow-robust-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "45537698",
+ "title": "Virtual Memory for Real-time RISC-V systems using hPMP",
+ "points": 22,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=45537698",
+ "created_at": "2025-10-10T11:34:30Z"
+ },
+ {
+ "hn_id": "44592444",
+ "title": "Show HN: Open-Source Quantum Solver for Maximum Independent Set Problems",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44592444",
+ "created_at": "2025-07-17T12:13:20Z"
+ },
+ {
+ "hn_id": "44439235",
+ "title": "Wider or Deeper? Scaling LLM Inference-Time Compute with Adaptive Tree Search",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44439235",
+ "created_at": "2025-07-02T00:30:12Z"
+ },
+ {
+ "hn_id": "44312317",
+ "title": "Self-Supervised Contrastive Learning Approximates Supervised CL",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44312317",
+ "created_at": "2025-06-18T18:45:30Z"
+ },
+ {
+ "hn_id": "27917628",
+ "title": "Bicycle Network Improvement Problem: Algorithms and a Case Study in Atlanta",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=27917628",
+ "created_at": "2021-07-22T11:26:25Z"
+ },
+ {
+ "hn_id": "44363141",
+ "title": "Revisiting the Othello World Model Hypothesis",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44363141",
+ "created_at": "2025-06-24T05:42:25Z"
+ },
+ {
+ "hn_id": "43651912",
+ "title": "KIMI-VL (Efficient Open-Source Moe VLM) Techical Report",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43651912",
+ "created_at": "2025-04-11T09:11:31Z"
+ },
+ {
+ "hn_id": "42635337",
+ "title": "Can LLMs generate good questions?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42635337",
+ "created_at": "2025-01-08T15:40:24Z"
+ }
+ ],
+ "top_points": 22,
+ "total_points": 39,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/value-variance-mitigating-2026/hn.json b/papers/value-variance-mitigating-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47219387",
+ "title": "Language Model Contains Personality Subnetworks",
+ "points": 58,
+ "comments": 34,
+ "url": "https://news.ycombinator.com/item?id=47219387",
+ "created_at": "2026-03-02T15:41:08Z"
+ },
+ {
+ "hn_id": "47117235",
+ "title": "Duan et al. 2026 algorithm beats Duan et al. 2025 for the SSSP Problem",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47117235",
+ "created_at": "2026-02-23T02:18:01Z"
+ }
+ ],
+ "top_points": 58,
+ "total_points": 61,
+ "total_comments": 34
+}
+\ No newline at end of file
diff --git a/papers/values-science-ai-2026/hn.json b/papers/values-science-ai-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/vericontaminated-assessing-llmdriven-2025/hn.json b/papers/vericontaminated-assessing-llmdriven-2025/hn.json
@@ -0,0 +1,71 @@
+{
+ "threads": [
+ {
+ "hn_id": "22768143",
+ "title": "Deep Molecular Programming",
+ "points": 130,
+ "comments": 11,
+ "url": "https://news.ycombinator.com/item?id=22768143",
+ "created_at": "2020-04-03T11:36:11Z"
+ },
+ {
+ "hn_id": "46525661",
+ "title": "Show HN: Sorting a billion of integers in 7.6 seconds",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46525661",
+ "created_at": "2026-01-07T12:31:29Z"
+ },
+ {
+ "hn_id": "22865458",
+ "title": "Defining the Habitable Zone",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22865458",
+ "created_at": "2020-04-14T13:13:02Z"
+ },
+ {
+ "hn_id": "22746729",
+ "title": "Defining the Habitable Zone",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=22746729",
+ "created_at": "2020-04-01T08:16:50Z"
+ },
+ {
+ "hn_id": "45291899",
+ "title": "Ardent: Python package for fast dynamical detection limits w. radial velocities",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45291899",
+ "created_at": "2025-09-18T16:46:39Z"
+ },
+ {
+ "hn_id": "47136428",
+ "title": "The Landscape of Non-Equilibrium Memories with Neural Cellular Automata",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47136428",
+ "created_at": "2026-02-24T12:47:25Z"
+ },
+ {
+ "hn_id": "43343318",
+ "title": "Balancing Content Size in RAG-Text2SQL System",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43343318",
+ "created_at": "2025-03-12T13:58:37Z"
+ },
+ {
+ "hn_id": "35544388",
+ "title": "Many bioinformatics programming tasks can be automated with ChatGPT",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35544388",
+ "created_at": "2023-04-12T18:23:36Z"
+ }
+ ],
+ "top_points": 130,
+ "total_points": 140,
+ "total_comments": 12
+}
+\ No newline at end of file
diff --git a/papers/verification-implicit-world-2026/hn.json b/papers/verification-implicit-world-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/verifierq-enhancing-llm-2024/hn.json b/papers/verifierq-enhancing-llm-2024/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "42343324",
+ "title": "The Hexagonal Tiling Honeycomb",
+ "points": 44,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=42343324",
+ "created_at": "2024-12-06T19:28:40Z"
+ },
+ {
+ "hn_id": "41838371",
+ "title": "The Dynamics of Social Conventions in LLM Populations",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41838371",
+ "created_at": "2024-10-14T15:23:00Z"
+ },
+ {
+ "hn_id": "38114637",
+ "title": "Simplest Streaming Trees",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38114637",
+ "created_at": "2023-11-02T15:12:37Z"
+ }
+ ],
+ "top_points": 44,
+ "total_points": 47,
+ "total_comments": 9
+}
+\ No newline at end of file
diff --git a/papers/verilogeval-evaluating-large-2023/hn.json b/papers/verilogeval-evaluating-large-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37043196",
+ "title": "Absence of superconductivity in LK-99 at ambient conditions",
+ "points": 142,
+ "comments": 75,
+ "url": "https://news.ycombinator.com/item?id=37043196",
+ "created_at": "2023-08-08T01:12:23Z"
+ },
+ {
+ "hn_id": "36999003",
+ "title": "Multimodal Neurons in Pretrained Text-Only Transformers",
+ "points": 66,
+ "comments": 53,
+ "url": "https://news.ycombinator.com/item?id=36999003",
+ "created_at": "2023-08-04T12:25:45Z"
+ },
+ {
+ "hn_id": "37189091",
+ "title": "Calypso: LLMs as Dungeon Masters' Assistants",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37189091",
+ "created_at": "2023-08-19T14:23:42Z"
+ },
+ {
+ "hn_id": "33636271",
+ "title": "Dala: A Simple Capability-Based Dynamic Language Design for Data Race-Freedom",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33636271",
+ "created_at": "2022-11-17T08:22:27Z"
+ },
+ {
+ "hn_id": "35559741",
+ "title": "Collaborative Machine Learning Model Building with Families Using Co-ML",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=35559741",
+ "created_at": "2023-04-13T18:17:03Z"
+ },
+ {
+ "hn_id": "34794465",
+ "title": "Heckerthoughts",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34794465",
+ "created_at": "2023-02-14T19:16:43Z"
+ },
+ {
+ "hn_id": "32867463",
+ "title": "O˜(N and Poly(k))-Time Algorithm for Bounded Tree Edit Distance",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=32867463",
+ "created_at": "2022-09-16T15:31:38Z"
+ },
+ {
+ "hn_id": "45368481",
+ "title": "Design, analysis, and manufacturing of microstructured blade-like geometries",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45368481",
+ "created_at": "2025-09-25T02:01:39Z"
+ },
+ {
+ "hn_id": "37014463",
+ "title": "Paper Page – Multimodal Neurons in Pretrained Text-Only Transformers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37014463",
+ "created_at": "2023-08-05T17:35:47Z"
+ },
+ {
+ "hn_id": "35128733",
+ "title": "Heckerthoughts",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35128733",
+ "created_at": "2023-03-13T00:19:34Z"
+ }
+ ],
+ "top_points": 142,
+ "total_points": 226,
+ "total_comments": 131
+}
+\ No newline at end of file
diff --git a/papers/verimind-agentic-llm-2025/hn.json b/papers/verimind-agentic-llm-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "31337551",
+ "title": "Symbolic regression outperforms other models for small data sets",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=31337551",
+ "created_at": "2022-05-11T09:16:15Z"
+ },
+ {
+ "hn_id": "35359143",
+ "title": "Dias: Dynamic Rewriting of Pandas Code",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35359143",
+ "created_at": "2023-03-29T16:00:56Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/verina-benchmarking-verifiable-2025/hn.json b/papers/verina-benchmarking-verifiable-2025/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "44144407",
+ "title": "Atlas: Learning to Optimally Memorize the Context at Test Time",
+ "points": 43,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=44144407",
+ "created_at": "2025-05-31T14:13:00Z"
+ },
+ {
+ "hn_id": "43550062",
+ "title": "Large Language Models Are Unreliable for Cyber Threat Intelligence",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43550062",
+ "created_at": "2025-04-01T18:36:58Z"
+ }
+ ],
+ "top_points": 43,
+ "total_points": 48,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/verpo-verifiable-dense-2026/hn.json b/papers/verpo-verifiable-dense-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/vhdleval-framework-evaluating-2024/hn.json b/papers/vhdleval-framework-evaluating-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39297479",
+ "title": "Direct Language Model Alignment from Online AI Feedback",
+ "points": 61,
+ "comments": 4,
+ "url": "https://news.ycombinator.com/item?id=39297479",
+ "created_at": "2024-02-08T03:04:04Z"
+ },
+ {
+ "hn_id": "40008044",
+ "title": "Fine-Tuning Increases LLM Vulnerabilities and Risk",
+ "points": 59,
+ "comments": 33,
+ "url": "https://news.ycombinator.com/item?id=40008044",
+ "created_at": "2024-04-11T23:54:11Z"
+ },
+ {
+ "hn_id": "41352091",
+ "title": "Realistic Synthetic UGC: A Scaffolding Approach to Generating Online Discussions",
+ "points": 35,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=41352091",
+ "created_at": "2024-08-25T22:32:32Z"
+ },
+ {
+ "hn_id": "40646232",
+ "title": "RAG Does Not Work for Enterprises",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40646232",
+ "created_at": "2024-06-11T13:56:14Z"
+ },
+ {
+ "hn_id": "41566236",
+ "title": "The Impact of LLMs on Open-Source Innovation: Evidence from GitHub Copilot",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=41566236",
+ "created_at": "2024-09-17T10:35:50Z"
+ },
+ {
+ "hn_id": "39351423",
+ "title": "QuIP#: Even Better LLM Quantization with Hadamard Incoherence, Lattice Codebooks",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39351423",
+ "created_at": "2024-02-12T22:31:11Z"
+ },
+ {
+ "hn_id": "38949121",
+ "title": "Chain-of-Table: Evolving Tables in the Reasoning Chain for Table Understanding",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38949121",
+ "created_at": "2024-01-11T07:55:21Z"
+ },
+ {
+ "hn_id": "35454443",
+ "title": "Automating Ambiguity: Challenges and Pitfalls of Artificial Intelligence (2022)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35454443",
+ "created_at": "2023-04-05T14:05:11Z"
+ },
+ {
+ "hn_id": "40706734",
+ "title": "Large Language Model Confidence Estimation via Black-Box Access",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40706734",
+ "created_at": "2024-06-17T15:39:01Z"
+ },
+ {
+ "hn_id": "44225901",
+ "title": "Is Perturbation-Based Image Protection Disruptive to Image Editing?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44225901",
+ "created_at": "2025-06-09T16:05:41Z"
+ }
+ ],
+ "top_points": 61,
+ "total_points": 169,
+ "total_comments": 44
+}
+\ No newline at end of file
diff --git a/papers/vibe-aigc-new-2026/hn.json b/papers/vibe-aigc-new-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/vibe-coding-ainative-2025/hn.json b/papers/vibe-coding-ainative-2025/hn.json
@@ -0,0 +1,31 @@
+{
+ "threads": [
+ {
+ "hn_id": "45677397",
+ "title": "A Homological Proof of P != NP: Computational Topology via Categorical Framework",
+ "points": 12,
+ "comments": 21,
+ "url": "https://news.ycombinator.com/item?id=45677397",
+ "created_at": "2025-10-23T02:06:08Z"
+ },
+ {
+ "hn_id": "47261927",
+ "title": "General Agentic Memory via Deep Research",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47261927",
+ "created_at": "2026-03-05T14:31:47Z"
+ },
+ {
+ "hn_id": "45673086",
+ "title": "Can We Trust Functionally Correct Patches Generated by Code Agents?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45673086",
+ "created_at": "2025-10-22T18:18:44Z"
+ }
+ ],
+ "top_points": 12,
+ "total_points": 15,
+ "total_comments": 21
+}
+\ No newline at end of file
diff --git a/papers/vibe-coding-product-2025/hn.json b/papers/vibe-coding-product-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "45033114",
+ "title": "The “Wow!” signal was likely from extraterrestrial source, and more powerful",
+ "points": 238,
+ "comments": 263,
+ "url": "https://news.ycombinator.com/item?id=45033114",
+ "created_at": "2025-08-26T22:25:06Z"
+ },
+ {
+ "hn_id": "44671375",
+ "title": "Transformers without normalization",
+ "points": 42,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=44671375",
+ "created_at": "2025-07-24T14:48:21Z"
+ },
+ {
+ "hn_id": "43363074",
+ "title": "Transformers Without Normalization",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43363074",
+ "created_at": "2025-03-14T14:41:08Z"
+ },
+ {
+ "hn_id": "45029603",
+ "title": "Arecibo Wow II: Revised Properties of the Wow Signal from Archival SETI Data",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45029603",
+ "created_at": "2025-08-26T17:23:50Z"
+ },
+ {
+ "hn_id": "44592304",
+ "title": "Mixture-of-Recursions: Learning Adaptive Token-Level Computation",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44592304",
+ "created_at": "2025-07-17T11:56:36Z"
+ },
+ {
+ "hn_id": "44173062",
+ "title": "The Evaluation of Engineering Artificial General Intelligence",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44173062",
+ "created_at": "2025-06-03T18:26:02Z"
+ },
+ {
+ "hn_id": "44007673",
+ "title": "End-to-End Vision Tokenizer Tuning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44007673",
+ "created_at": "2025-05-16T17:03:47Z"
+ },
+ {
+ "hn_id": "38043392",
+ "title": "LMDX: Language Model-Based Document Information Extraction and Localization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38043392",
+ "created_at": "2023-10-27T20:18:54Z"
+ },
+ {
+ "hn_id": "37799634",
+ "title": "Harnessing LLM in End-to-End Speech Recognition",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37799634",
+ "created_at": "2023-10-07T07:03:20Z"
+ },
+ {
+ "hn_id": "43376922",
+ "title": "Transformers Without Normalization",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43376922",
+ "created_at": "2025-03-16T04:22:34Z"
+ }
+ ],
+ "top_points": 238,
+ "total_points": 304,
+ "total_comments": 270
+}
+\ No newline at end of file
diff --git a/papers/vibe-learning-education-2025/hn.json b/papers/vibe-learning-education-2025/hn.json
@@ -0,0 +1,63 @@
+{
+ "threads": [
+ {
+ "hn_id": "38442779",
+ "title": "Simplifying Transformer Blocks",
+ "points": 142,
+ "comments": 49,
+ "url": "https://news.ycombinator.com/item?id=38442779",
+ "created_at": "2023-11-28T05:49:10Z"
+ },
+ {
+ "hn_id": "42792507",
+ "title": "A Multi-Agent System for Hybrid Optimization",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42792507",
+ "created_at": "2025-01-22T13:22:32Z"
+ },
+ {
+ "hn_id": "33699117",
+ "title": "Where Did My Variable Go? Poking Holes in Incomplete Debug Information",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33699117",
+ "created_at": "2022-11-21T22:37:23Z"
+ },
+ {
+ "hn_id": "42055840",
+ "title": "Leveraging Large Language Models for Advanced Multilingual Text-to-Speech",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42055840",
+ "created_at": "2024-11-05T22:42:11Z"
+ },
+ {
+ "hn_id": "4665356",
+ "title": "Newspapers and the Long-Term Implications of Hyperlinking",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=4665356",
+ "created_at": "2012-10-17T16:58:22Z"
+ },
+ {
+ "hn_id": "38204077",
+ "title": "Simplifying Transformer Blocks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38204077",
+ "created_at": "2023-11-09T12:21:49Z"
+ },
+ {
+ "hn_id": "33774280",
+ "title": "Seeing Beyond the Brain: Conditional Diffusion Model with Sparse Masked Modelin",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33774280",
+ "created_at": "2022-11-28T14:50:38Z"
+ }
+ ],
+ "top_points": 142,
+ "total_points": 151,
+ "total_comments": 50
+}
+\ No newline at end of file
diff --git a/papers/vieva-llm-conceptual-2024/hn.json b/papers/vieva-llm-conceptual-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/virtual-lab-ai-2024/hn.json b/papers/virtual-lab-ai-2024/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/virus-infection-attack-2025/hn.json b/papers/virus-infection-attack-2025/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "45993928",
+ "title": "Conway's cosmological theorem and automata theory",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=45993928",
+ "created_at": "2025-11-20T15:52:24Z"
+ },
+ {
+ "hn_id": "44787539",
+ "title": "Moravec's Paradox: Towards an Auditory Turing Test",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44787539",
+ "created_at": "2025-08-04T15:50:55Z"
+ },
+ {
+ "hn_id": "44132029",
+ "title": "SWE-Rebench: Task Collection and Decontaminated Evaluation of SWE Agents",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44132029",
+ "created_at": "2025-05-30T01:45:35Z"
+ },
+ {
+ "hn_id": "43894376",
+ "title": "CrashFixer: A crash resolution agent for the Linux kernel",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43894376",
+ "created_at": "2025-05-05T12:31:05Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 10,
+ "total_comments": 1
+}
+\ No newline at end of file
diff --git a/papers/viscosity-logic-phase-2026/hn.json b/papers/viscosity-logic-phase-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46916372",
+ "title": "End-to-End Transformer Acceleration Through Processing-in-Memory Architectures",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46916372",
+ "created_at": "2026-02-06T18:32:55Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/vision-wormhole-latentspace-2026/hn.json b/papers/vision-wormhole-latentspace-2026/hn.json
@@ -0,0 +1,39 @@
+{
+ "threads": [
+ {
+ "hn_id": "47418722",
+ "title": "Why AI systems don't learn – On autonomous learning from cognitive science",
+ "points": 204,
+ "comments": 116,
+ "url": "https://news.ycombinator.com/item?id=47418722",
+ "created_at": "2026-03-17T21:42:39Z"
+ },
+ {
+ "hn_id": "47204654",
+ "title": "Latent-Space Communication in Heterogeneous Multi-Agent Systems",
+ "points": 7,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=47204654",
+ "created_at": "2026-03-01T07:55:00Z"
+ },
+ {
+ "hn_id": "47077357",
+ "title": "Surprising Effectiveness of Masking Updates in Adaptive Optimizers",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47077357",
+ "created_at": "2026-02-19T18:40:34Z"
+ },
+ {
+ "hn_id": "47108118",
+ "title": "Surprising Effectiveness of Masking Updates in Adaptive Optimizers",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47108118",
+ "created_at": "2026-02-22T04:21:41Z"
+ }
+ ],
+ "top_points": 204,
+ "total_points": 218,
+ "total_comments": 117
+}
+\ No newline at end of file
diff --git a/papers/visualwebarena-evaluating-multimodal-2024/hn.json b/papers/visualwebarena-evaluating-multimodal-2024/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "39245056",
+ "title": "On the survivability of secondary atmospheres around the TRAPPIST-1 planets",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39245056",
+ "created_at": "2024-02-03T21:43:52Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/vlrouterbench-benchmark-visionlanguage-2025/hn.json b/papers/vlrouterbench-benchmark-visionlanguage-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45914996",
+ "title": "Automated Contiguous Layer Pruning for Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45914996",
+ "created_at": "2025-11-13T14:02:20Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/vsavisualstructural-alignment-uitocode-2025/hn.json b/papers/vsavisualstructural-alignment-uitocode-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "45703772",
+ "title": "LLM-empowered knowledge graph construction: A survey",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45703772",
+ "created_at": "2025-10-25T13:34:20Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/watch-weights-unsupervised-2025/hn.json b/papers/watch-weights-unsupervised-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44973375",
+ "title": "Beyond sensor data: Foundation models of behavioral data from wearables",
+ "points": 230,
+ "comments": 54,
+ "url": "https://news.ycombinator.com/item?id=44973375",
+ "created_at": "2025-08-21T14:39:45Z"
+ },
+ {
+ "hn_id": "41421591",
+ "title": "Inductive or deductive? Rethinking the fundamental reasoning abilities of LLMs",
+ "points": 107,
+ "comments": 169,
+ "url": "https://news.ycombinator.com/item?id=41421591",
+ "created_at": "2024-09-02T00:49:06Z"
+ },
+ {
+ "hn_id": "43906014",
+ "title": "Don't be lazy: CompleteP enables compute-efficient deep transformers",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43906014",
+ "created_at": "2025-05-06T15:09:49Z"
+ },
+ {
+ "hn_id": "44109636",
+ "title": "Robotic Table Tennis Swinging Using Lightweight Hardware with Predictive Control",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44109636",
+ "created_at": "2025-05-27T18:47:12Z"
+ },
+ {
+ "hn_id": "44783520",
+ "title": "Ordinal Folding Index: A Computable Metric for Self-Referential Semantics",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44783520",
+ "created_at": "2025-08-04T09:20:26Z"
+ },
+ {
+ "hn_id": "37045689",
+ "title": "Getting Pwn'd by AI: Penetration Testing with Large Language Models",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=37045689",
+ "created_at": "2023-08-08T07:31:25Z"
+ },
+ {
+ "hn_id": "45380358",
+ "title": "TimeCopilot: Framework for Forecasting combining Time Series Models with LLMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45380358",
+ "created_at": "2025-09-25T22:57:04Z"
+ },
+ {
+ "hn_id": "42932599",
+ "title": "Self-Improving Transformers Overcome Easy-to-Hard and Length Generalization",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42932599",
+ "created_at": "2025-02-04T14:16:57Z"
+ },
+ {
+ "hn_id": "44529025",
+ "title": "Foundation Models of Behavioral Data from Wearables Improve Health Predictions",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44529025",
+ "created_at": "2025-07-11T06:40:34Z"
+ },
+ {
+ "hn_id": "42935064",
+ "title": "OmniHuman-1: Scaling-Up of One-Stage Conditioned Human Animation Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42935064",
+ "created_at": "2025-02-04T16:54:58Z"
+ }
+ ],
+ "top_points": 230,
+ "total_points": 354,
+ "total_comments": 224
+}
+\ No newline at end of file
diff --git a/papers/webarena-autonomous-agents-2023/hn.json b/papers/webarena-autonomous-agents-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "34968996",
+ "title": "The Micro-Paper: Towards cheaper, citable research ideas and conversations [pdf]",
+ "points": 33,
+ "comments": 5,
+ "url": "https://news.ycombinator.com/item?id=34968996",
+ "created_at": "2023-02-28T13:24:50Z"
+ },
+ {
+ "hn_id": "44769170",
+ "title": "The unreasonable likelihood of being: origin of life, terraforming, and AI",
+ "points": 16,
+ "comments": 9,
+ "url": "https://news.ycombinator.com/item?id=44769170",
+ "created_at": "2025-08-02T16:55:14Z"
+ },
+ {
+ "hn_id": "38353901",
+ "title": "LLMs and the Abstraction and Reasoning Corpus",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38353901",
+ "created_at": "2023-11-20T20:12:04Z"
+ },
+ {
+ "hn_id": "38337494",
+ "title": "LLMs and the Abstraction and Reasoning Corpus",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38337494",
+ "created_at": "2023-11-19T20:29:50Z"
+ },
+ {
+ "hn_id": "39661347",
+ "title": "LLMs and the Abstraction and Reasoning Corpus",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=39661347",
+ "created_at": "2024-03-10T18:29:42Z"
+ },
+ {
+ "hn_id": "37372005",
+ "title": "On the Impact of Language Selection for Training and Evaluating Programming LMs",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37372005",
+ "created_at": "2023-09-03T17:05:20Z"
+ },
+ {
+ "hn_id": "36759025",
+ "title": "Is pre-training truly better than meta-learning?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36759025",
+ "created_at": "2023-07-17T14:55:41Z"
+ },
+ {
+ "hn_id": "28029560",
+ "title": "Revisiting swapping in user space with Lightweight threading",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=28029560",
+ "created_at": "2021-08-01T20:24:52Z"
+ },
+ {
+ "hn_id": "42864216",
+ "title": "VBR: Version Based Reclamation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42864216",
+ "created_at": "2025-01-29T12:42:03Z"
+ },
+ {
+ "hn_id": "36551087",
+ "title": "A Survey on Multimodal Large Language Models",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36551087",
+ "created_at": "2023-07-01T15:22:04Z"
+ }
+ ],
+ "top_points": 33,
+ "total_points": 69,
+ "total_comments": 14
+}
+\ No newline at end of file
diff --git a/papers/webguard-building-generalizable-2025/hn.json b/papers/webguard-building-generalizable-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "44475634",
+ "title": "Techno-feudalism and the rise of AGI: A future without economic rights?",
+ "points": 239,
+ "comments": 244,
+ "url": "https://news.ycombinator.com/item?id=44475634",
+ "created_at": "2025-07-05T21:19:50Z"
+ },
+ {
+ "hn_id": "43411898",
+ "title": "The clustering behavior of sliding windows",
+ "points": 97,
+ "comments": 20,
+ "url": "https://news.ycombinator.com/item?id=43411898",
+ "created_at": "2025-03-19T13:44:25Z"
+ },
+ {
+ "hn_id": "44268286",
+ "title": "Geometry from Quantum Temporal Correlations",
+ "points": 60,
+ "comments": 27,
+ "url": "https://news.ycombinator.com/item?id=44268286",
+ "created_at": "2025-06-13T13:21:47Z"
+ },
+ {
+ "hn_id": "43314603",
+ "title": "A GS-Cache Inference Framework for Large-Scale Gaussian Splatting Models",
+ "points": 19,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=43314603",
+ "created_at": "2025-03-09T22:33:28Z"
+ },
+ {
+ "hn_id": "36902663",
+ "title": "PanGu-Coder2: SOTA for Code LLMs on 15B",
+ "points": 8,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=36902663",
+ "created_at": "2023-07-28T02:51:50Z"
+ },
+ {
+ "hn_id": "43553230",
+ "title": "State Space Model Meets Transformer: A New Paradigm for 3D Object Detection",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43553230",
+ "created_at": "2025-04-02T02:41:52Z"
+ },
+ {
+ "hn_id": "45955957",
+ "title": "Official LIGO-Virgo-Kagra Benchmark Shows KFR Outperforming FFTW in CERN Root",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45955957",
+ "created_at": "2025-11-17T17:44:55Z"
+ },
+ {
+ "hn_id": "44318076",
+ "title": "The Impact of Generative AI on Social Media: An Experimental Study",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44318076",
+ "created_at": "2025-06-19T12:36:20Z"
+ },
+ {
+ "hn_id": "43071734",
+ "title": "Expressive and Functional Movement Design for Non-Anthropomorphic Robot",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43071734",
+ "created_at": "2025-02-16T21:09:54Z"
+ },
+ {
+ "hn_id": "42962649",
+ "title": "Elegnt: Expressive and Functional Movement Design for Non-Anthropomorphic Robot",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42962649",
+ "created_at": "2025-02-06T14:31:47Z"
+ }
+ ],
+ "top_points": 239,
+ "total_points": 439,
+ "total_comments": 294
+}
+\ No newline at end of file
diff --git a/papers/what-cut-predicting-2026/hn.json b/papers/what-cut-predicting-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47442194",
+ "title": "Vectorization of Verilog Designs and its Effects on Verification and Synthesis",
+ "points": 32,
+ "comments": 6,
+ "url": "https://news.ycombinator.com/item?id=47442194",
+ "created_at": "2026-03-19T16:40:37Z"
+ }
+ ],
+ "top_points": 32,
+ "total_points": 32,
+ "total_comments": 6
+}
+\ No newline at end of file
diff --git a/papers/what-do-llm-2026/hn.json b/papers/what-do-llm-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/what-does-it-2025/hn.json b/papers/what-does-it-2025/hn.json
@@ -0,0 +1,55 @@
+{
+ "threads": [
+ {
+ "hn_id": "45475471",
+ "title": "Provable scaling laws of feature emergence from learning dynamics of grokking",
+ "points": 29,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45475471",
+ "created_at": "2025-10-04T18:26:29Z"
+ },
+ {
+ "hn_id": "44417725",
+ "title": "WorldVLA: Towards Autoregressive Action World Model",
+ "points": 25,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44417725",
+ "created_at": "2025-06-29T23:51:57Z"
+ },
+ {
+ "hn_id": "44763614",
+ "title": "Show HN: Inworld TTS open sourcing and technical report",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44763614",
+ "created_at": "2025-08-01T23:40:34Z"
+ },
+ {
+ "hn_id": "43678576",
+ "title": "A Foundational Theory for Decentralized Sensory Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43678576",
+ "created_at": "2025-04-14T06:24:04Z"
+ },
+ {
+ "hn_id": "43458449",
+ "title": "A Foundational Theory for Decentralized Sensory Learning",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=43458449",
+ "created_at": "2025-03-24T07:42:22Z"
+ },
+ {
+ "hn_id": "45639879",
+ "title": "Functional freedom and Penrose's critiques of string theory",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45639879",
+ "created_at": "2025-10-20T03:00:40Z"
+ }
+ ],
+ "top_points": 29,
+ "total_points": 62,
+ "total_comments": 2
+}
+\ No newline at end of file
diff --git a/papers/what-wrong-your-2024/hn.json b/papers/what-wrong-your-2024/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "39071169",
+ "title": "The possibility of making money from shredded banknotes using computer vision",
+ "points": 106,
+ "comments": 77,
+ "url": "https://news.ycombinator.com/item?id=39071169",
+ "created_at": "2024-01-20T19:14:23Z"
+ },
+ {
+ "hn_id": "40913498",
+ "title": "Mixture of a Million Experts",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40913498",
+ "created_at": "2024-07-09T07:40:10Z"
+ },
+ {
+ "hn_id": "41087939",
+ "title": "Mixture of a Million Experts",
+ "points": 5,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=41087939",
+ "created_at": "2024-07-27T17:12:52Z"
+ },
+ {
+ "hn_id": "40961336",
+ "title": "Mixture of a Million Experts",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40961336",
+ "created_at": "2024-07-14T14:59:04Z"
+ },
+ {
+ "hn_id": "39679772",
+ "title": "Charging Drones from Power Lines",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39679772",
+ "created_at": "2024-03-12T14:14:04Z"
+ },
+ {
+ "hn_id": "40933463",
+ "title": "Mixture of a Million Experts",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40933463",
+ "created_at": "2024-07-11T03:35:31Z"
+ },
+ {
+ "hn_id": "39002649",
+ "title": "Recovering shredded banknote pieces using computer vision",
+ "points": 3,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39002649",
+ "created_at": "2024-01-15T16:30:16Z"
+ },
+ {
+ "hn_id": "42110288",
+ "title": "Status Report on the Chicago-Carnegie Hubble Program (CCHP)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42110288",
+ "created_at": "2024-11-11T20:47:00Z"
+ },
+ {
+ "hn_id": "40999835",
+ "title": "Mixture of A Million Experts: PEER (parameter efficient expert retrieval)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40999835",
+ "created_at": "2024-07-18T21:16:51Z"
+ },
+ {
+ "hn_id": "40855311",
+ "title": "xLSTM-UNet can be an Effective 2D and 3D Medical Image Segmentation Backbone",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40855311",
+ "created_at": "2024-07-02T10:49:11Z"
+ }
+ ],
+ "top_points": 106,
+ "total_points": 137,
+ "total_comments": 80
+}
+\ No newline at end of file
diff --git a/papers/when-agents-fail-2026/hn.json b/papers/when-agents-fail-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46901816",
+ "title": "Rules Create Unequal Rewards: Tennis Players Allocate Resources Efficiently",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46901816",
+ "created_at": "2026-02-05T17:04:23Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/when-ai-agents-2025/hn.json b/papers/when-ai-agents-2025/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46094769",
+ "title": "AI Eyes on the Road: Cross-Cultural Perspectives on Traffic Surveillance",
+ "points": 6,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46094769",
+ "created_at": "2025-11-30T08:02:34Z"
+ }
+ ],
+ "top_points": 6,
+ "total_points": 6,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/when-nobody-around-2026/hn.json b/papers/when-nobody-around-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/when-singleagent-skills-2026/hn.json b/papers/when-singleagent-skills-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "47082492",
+ "title": "When Models Manipulate Manifolds: The Geometry of a Counting Task [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47082492",
+ "created_at": "2026-02-20T01:28:41Z"
+ }
+ ],
+ "top_points": 1,
+ "total_points": 1,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/where-did-it-2025/hn.json b/papers/where-did-it-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "37875723",
+ "title": "Self-Taught Optimizer (Stop): Recursively Self-Improving Code Generation",
+ "points": 49,
+ "comments": 10,
+ "url": "https://news.ycombinator.com/item?id=37875723",
+ "created_at": "2023-10-13T21:16:17Z"
+ },
+ {
+ "hn_id": "35436224",
+ "title": "Orthogonal Time-Frequency Space Modulation: A Promising Next-Generation Waveform (2021)",
+ "points": 30,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=35436224",
+ "created_at": "2023-04-04T07:19:36Z"
+ },
+ {
+ "hn_id": "31006749",
+ "title": "Orthogonal Time-Frequency Space Modulation: A Promising Next-Generation Waveform",
+ "points": 19,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=31006749",
+ "created_at": "2022-04-12T18:45:01Z"
+ },
+ {
+ "hn_id": "45721160",
+ "title": "EntropyLong: Effective Long-Context Training via Predictive Uncertainty",
+ "points": 15,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45721160",
+ "created_at": "2025-10-27T14:04:48Z"
+ },
+ {
+ "hn_id": "37876589",
+ "title": "Runtime Verification for Trustworthy Computing",
+ "points": 12,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37876589",
+ "created_at": "2023-10-13T23:07:38Z"
+ },
+ {
+ "hn_id": "45724525",
+ "title": "Learning from Abundant User Dissatisfaction in Real-World Preference Learning",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45724525",
+ "created_at": "2025-10-27T18:23:09Z"
+ },
+ {
+ "hn_id": "37797505",
+ "title": "Self-Taught Optimizer: Recursively self-improving code generation",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=37797505",
+ "created_at": "2023-10-06T23:12:24Z"
+ },
+ {
+ "hn_id": "45889326",
+ "title": "What Is Quantum Computer Security?",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45889326",
+ "created_at": "2025-11-11T16:35:14Z"
+ },
+ {
+ "hn_id": "45607220",
+ "title": "Conceptualizing/Modeling Communication-Based Cyberattacks on Automated Vehicles",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45607220",
+ "created_at": "2025-10-16T16:12:45Z"
+ },
+ {
+ "hn_id": "45579916",
+ "title": "The Optimal Strategy for Playing Lucky 13",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45579916",
+ "created_at": "2025-10-14T13:39:37Z"
+ }
+ ],
+ "top_points": 49,
+ "total_points": 134,
+ "total_comments": 17
+}
+\ No newline at end of file
diff --git a/papers/where-do-ai-2026/hn.json b/papers/where-do-ai-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46808571",
+ "title": "Where Do AI Coding Agents Fail?",
+ "points": 2,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=46808571",
+ "created_at": "2026-01-29T11:09:24Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 2,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/where-llms-struggle-code-2025/hn.json b/papers/where-llms-struggle-code-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38849008",
+ "title": "Differential Information Theory",
+ "points": 13,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38849008",
+ "created_at": "2024-01-03T00:10:50Z"
+ },
+ {
+ "hn_id": "34101211",
+ "title": "Will we run out of data?",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34101211",
+ "created_at": "2022-12-23T01:17:13Z"
+ },
+ {
+ "hn_id": "45499558",
+ "title": "CMOS 2.0 – Redefining the Future of Scaling",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=45499558",
+ "created_at": "2025-10-07T05:07:40Z"
+ },
+ {
+ "hn_id": "36985212",
+ "title": "Will we run out of data to train LLMs?",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36985212",
+ "created_at": "2023-08-03T12:53:23Z"
+ },
+ {
+ "hn_id": "42050766",
+ "title": "Accuracy-Performance Trade-Offs in LLM Quantization",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42050766",
+ "created_at": "2024-11-05T11:48:05Z"
+ },
+ {
+ "hn_id": "40610622",
+ "title": "Will we run out of data? Limits of LLM scaling based on human-generated data",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=40610622",
+ "created_at": "2024-06-07T17:08:29Z"
+ },
+ {
+ "hn_id": "42152777",
+ "title": "GazeGen: Gaze-Driven User Interaction for Visual Content Generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42152777",
+ "created_at": "2024-11-16T00:00:35Z"
+ },
+ {
+ "hn_id": "34258170",
+ "title": "Will we run out of data? An analysis of the limits of scaling datasets in ML",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34258170",
+ "created_at": "2023-01-05T10:48:59Z"
+ },
+ {
+ "hn_id": "34089367",
+ "title": "An analysis of the limits of scaling datasets in Machine Learning",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=34089367",
+ "created_at": "2022-12-22T03:22:37Z"
+ },
+ {
+ "hn_id": "33784524",
+ "title": "We might run out of language data to train ML models soon [pdf]",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33784524",
+ "created_at": "2022-11-29T07:03:52Z"
+ }
+ ],
+ "top_points": 13,
+ "total_points": 26,
+ "total_comments": 3
+}
+\ No newline at end of file
diff --git a/papers/which-agent-causes-2025/hn.json b/papers/which-agent-causes-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "40856431",
+ "title": "GPU-Friendly Stroke Expansion",
+ "points": 180,
+ "comments": 39,
+ "url": "https://news.ycombinator.com/item?id=40856431",
+ "created_at": "2024-07-02T13:27:11Z"
+ },
+ {
+ "hn_id": "27104125",
+ "title": "Arbitrary Code Execution in the Universal Turing Machine",
+ "points": 123,
+ "comments": 33,
+ "url": "https://news.ycombinator.com/item?id=27104125",
+ "created_at": "2021-05-10T09:15:41Z"
+ },
+ {
+ "hn_id": "43628028",
+ "title": "NNN: Next-Generation Neural Networks for Marketing Mix Modeling",
+ "points": 25,
+ "comments": 3,
+ "url": "https://news.ycombinator.com/item?id=43628028",
+ "created_at": "2025-04-09T01:20:13Z"
+ },
+ {
+ "hn_id": "44176172",
+ "title": "What do software developers need to know to succeed in an age of AI?",
+ "points": 18,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=44176172",
+ "created_at": "2025-06-04T00:30:21Z"
+ },
+ {
+ "hn_id": "44299092",
+ "title": "Scaling On-Device GPU Inference for Large Generative Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44299092",
+ "created_at": "2025-06-17T13:41:06Z"
+ },
+ {
+ "hn_id": "42602289",
+ "title": "Debunking the CUDA Myth Towards GPU-Based AI Systems",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42602289",
+ "created_at": "2025-01-05T15:15:34Z"
+ },
+ {
+ "hn_id": "42982812",
+ "title": "STP: Self-Play LLM Theorem Provers with Iterative Conjecturing and Proving",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42982812",
+ "created_at": "2025-02-08T13:26:22Z"
+ },
+ {
+ "hn_id": "42966780",
+ "title": "Understanding Why Adam Outperforms SGD: Gradient Heterogeneity in Transformers",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42966780",
+ "created_at": "2025-02-06T21:41:46Z"
+ },
+ {
+ "hn_id": "40307879",
+ "title": "Graph Neural Network Approach to Semantic Type Detection in Tables",
+ "points": 3,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40307879",
+ "created_at": "2024-05-09T13:13:10Z"
+ },
+ {
+ "hn_id": "44570773",
+ "title": "A Unifying Framework for Robust and Efficient Inference with Unstructured Data",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44570773",
+ "created_at": "2025-07-15T13:11:52Z"
+ }
+ ],
+ "top_points": 180,
+ "total_points": 365,
+ "total_comments": 77
+}
+\ No newline at end of file
diff --git a/papers/why-ai-alignment-2026/hn.json b/papers/why-ai-alignment-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/why-behind-action-2026/hn.json b/papers/why-behind-action-2026/hn.json
@@ -0,0 +1,15 @@
+{
+ "threads": [
+ {
+ "hn_id": "46676395",
+ "title": "Too Helpful to Be Safe: User-Mediated Attacks on Planning and Web-Use Agents",
+ "points": 4,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46676395",
+ "created_at": "2026-01-19T08:39:39Z"
+ }
+ ],
+ "top_points": 4,
+ "total_points": 4,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/why-do-language-2025/hn.json b/papers/why-do-language-2025/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "38496715",
+ "title": "Scalable extraction of training data from (production) language models",
+ "points": 105,
+ "comments": 14,
+ "url": "https://news.ycombinator.com/item?id=38496715",
+ "created_at": "2023-12-02T07:32:54Z"
+ },
+ {
+ "hn_id": "43244666",
+ "title": "Cautious Optimizers: Improving Training with One Line of Code",
+ "points": 66,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=43244666",
+ "created_at": "2025-03-03T17:59:45Z"
+ },
+ {
+ "hn_id": "33762906",
+ "title": "Reward Is Not Necessary: A Self-Preserving Agent For Life-Long Learning",
+ "points": 20,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=33762906",
+ "created_at": "2022-11-27T13:48:23Z"
+ },
+ {
+ "hn_id": "38459846",
+ "title": "Scalable Extraction of Training Data from (Production) Language Models",
+ "points": 5,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38459846",
+ "created_at": "2023-11-29T14:40:50Z"
+ },
+ {
+ "hn_id": "38455593",
+ "title": "Extracting Training Data from LLMs",
+ "points": 4,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38455593",
+ "created_at": "2023-11-29T04:30:57Z"
+ },
+ {
+ "hn_id": "42882832",
+ "title": "International AI Safety Report",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=42882832",
+ "created_at": "2025-01-30T22:31:49Z"
+ },
+ {
+ "hn_id": "38487357",
+ "title": "Scalable Extraction of Training Data from (Production) Language Models",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=38487357",
+ "created_at": "2023-12-01T14:53:17Z"
+ },
+ {
+ "hn_id": "42265250",
+ "title": "Cautious Optimizers: Improving Training with One Line of Code",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=42265250",
+ "created_at": "2024-11-28T13:52:33Z"
+ },
+ {
+ "hn_id": "39162142",
+ "title": "Temporal chirp, temporal lensing and temporal routing via space-time interfaces",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=39162142",
+ "created_at": "2024-01-28T03:02:09Z"
+ },
+ {
+ "hn_id": "46693617",
+ "title": "Perturb Your Data: Paraphrase-Guided Training Data Watermarking",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=46693617",
+ "created_at": "2026-01-20T16:19:19Z"
+ }
+ ],
+ "top_points": 105,
+ "total_points": 207,
+ "total_comments": 19
+}
+\ No newline at end of file
diff --git a/papers/why-reasoning-fails-2026/hn.json b/papers/why-reasoning-fails-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/wink-recovering-from-2026/hn.json b/papers/wink-recovering-from-2026/hn.json
@@ -0,0 +1,23 @@
+{
+ "threads": [
+ {
+ "hn_id": "47279778",
+ "title": "Nested Training for Mutual Adaptation in Human-AI Teaming",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47279778",
+ "created_at": "2026-03-06T19:21:19Z"
+ },
+ {
+ "hn_id": "47475368",
+ "title": "Prism: Demystifying Retention and Interaction in Mid-Training",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=47475368",
+ "created_at": "2026-03-22T07:56:38Z"
+ }
+ ],
+ "top_points": 2,
+ "total_points": 3,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/you-only-need-2025/hn.json b/papers/you-only-need-2025/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/papers/your-code-generated-2023/hn.json b/papers/your-code-generated-2023/hn.json
@@ -0,0 +1,87 @@
+{
+ "threads": [
+ {
+ "hn_id": "35857512",
+ "title": "AttentionViz: A Global View of Transformer Attention",
+ "points": 3,
+ "comments": 2,
+ "url": "https://news.ycombinator.com/item?id=35857512",
+ "created_at": "2023-05-08T02:40:05Z"
+ },
+ {
+ "hn_id": "35810243",
+ "title": "Finding Neurons in a Haystack: Case Studies with Sparse Probing",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35810243",
+ "created_at": "2023-05-04T01:38:36Z"
+ },
+ {
+ "hn_id": "38189973",
+ "title": "Comparative Safety Performance of Autonomous- and Human Drivers: Study of Waymo",
+ "points": 2,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=38189973",
+ "created_at": "2023-11-08T13:24:17Z"
+ },
+ {
+ "hn_id": "44561933",
+ "title": "We Ruined the Internet (2023)",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=44561933",
+ "created_at": "2025-07-14T16:18:57Z"
+ },
+ {
+ "hn_id": "40453321",
+ "title": "Infinite Texture: Text-Guided High Resolution Diffusion Texture Synthesis",
+ "points": 2,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=40453321",
+ "created_at": "2024-05-23T11:26:23Z"
+ },
+ {
+ "hn_id": "34457784",
+ "title": "Everything Is Connected: Graph Neural Networks",
+ "points": 1,
+ "comments": 1,
+ "url": "https://news.ycombinator.com/item?id=34457784",
+ "created_at": "2023-01-20T18:48:09Z"
+ },
+ {
+ "hn_id": "37561410",
+ "title": "Schema-learning and rebinding as mechanisms of in-context learning and emergence",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=37561410",
+ "created_at": "2023-09-18T20:15:55Z"
+ },
+ {
+ "hn_id": "36534921",
+ "title": "Everything Is Connected: Graph Neural Networks",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=36534921",
+ "created_at": "2023-06-30T13:52:48Z"
+ },
+ {
+ "hn_id": "35565841",
+ "title": "Variance Between Runs of Neural Network Training Is Harmless and Inevitable",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35565841",
+ "created_at": "2023-04-14T05:30:50Z"
+ },
+ {
+ "hn_id": "35436166",
+ "title": "Coincidental Generation",
+ "points": 1,
+ "comments": 0,
+ "url": "https://news.ycombinator.com/item?id=35436166",
+ "created_at": "2023-04-04T07:12:00Z"
+ }
+ ],
+ "top_points": 3,
+ "total_points": 16,
+ "total_comments": 4
+}
+\ No newline at end of file
diff --git a/papers/yunque-deepresearch-technical-2026/hn.json b/papers/yunque-deepresearch-technical-2026/hn.json
@@ -0,0 +1,6 @@
+{
+ "threads": [],
+ "top_points": 0,
+ "total_points": 0,
+ "total_comments": 0
+}
+\ No newline at end of file
diff --git a/scripts/build-explorer-data.py b/scripts/build-explorer-data.py
@@ -199,6 +199,14 @@ def load_metadata(paper_id):
return json.load(f)
+def load_hn(paper_id):
+ path = PAPERS_DIR / paper_id / "hn.json"
+ if not path.exists():
+ return {}
+ with open(path) as f:
+ return json.load(f)
+
+
def write_json(path, data):
path.parent.mkdir(parents=True, exist_ok=True)
with open(path, "w") as f:
@@ -259,6 +267,7 @@ def build():
paper_meta = scan.get("paper", {})
reg_entry = registry.get(paper_id, {})
metadata = load_metadata(paper_id)
+ hn_data = load_hn(paper_id)
overall = compute_overall_score(checklist)
if overall is None:
@@ -394,6 +403,7 @@ def build():
"doi": doi,
"code_url": code_url,
"dna": dna,
+ "hn_points": hn_data.get("top_points", 0),
}
papers_index.append(index_entry)
@@ -407,6 +417,7 @@ def build():
"key_findings": scan.get("key_findings", ""),
"active_modules": scan.get("active_modules", []),
"source_url": source_url,
+ "hn_threads": hn_data.get("threads", []),
}
paper_details[paper_id] = detail
papers_full.append(detail)
@@ -854,6 +865,51 @@ def build():
"pc2_variance_pct": round(ev2 / total_var * 100, 1),
}
+ # 12. HN social attention analysis
+ hn_papers = []
+ for p in papers_full:
+ hn_pts = p.get("hn_points", 0)
+ hn_papers.append({"id": p["id"], "title": p["title"], "score": p["score"], "hn_points": hn_pts})
+
+ hn_with_attention = [p for p in hn_papers if p["hn_points"] > 0]
+ hn_without = [p for p in hn_papers if p["hn_points"] == 0]
+
+ # Correlation
+ hn_corr = None
+ if len(hn_with_attention) >= 10:
+ import math as _math
+ xs = [p["hn_points"] for p in hn_with_attention]
+ ys = [p["score"] for p in hn_with_attention]
+ n_hn = len(xs)
+ mx, my = sum(xs) / n_hn, sum(ys) / n_hn
+ num = sum((x - mx) * (y - my) for x, y in zip(xs, ys))
+ dxx = _math.sqrt(sum((x - mx) ** 2 for x in xs))
+ dyy = _math.sqrt(sum((y - my) ** 2 for y in ys))
+ hn_corr = round(num / (dxx * dyy), 3) if dxx and dyy else 0
+
+ # Hidden gems: high methodology, low attention
+ hidden_gems = sorted(
+ [p for p in hn_papers if p["score"] >= 65 and p["hn_points"] <= 5],
+ key=lambda p: -p["score"]
+ )[:15]
+
+ # Most hyped but weak
+ overhyped = sorted(
+ [p for p in hn_with_attention if p["score"] < 40 and p["hn_points"] >= 30],
+ key=lambda p: -p["hn_points"]
+ )[:15]
+
+ hn_analysis = {
+ "total_with_hn": len(hn_with_attention),
+ "total_without_hn": len(hn_without),
+ "correlation": hn_corr,
+ "with_attention_mean": safe_mean([p["score"] for p in hn_with_attention]) if hn_with_attention else 0,
+ "without_attention_mean": safe_mean([p["score"] for p in hn_without]) if hn_without else 0,
+ "top_hn": sorted(hn_with_attention, key=lambda p: -p["hn_points"])[:20],
+ "hidden_gems": hidden_gems,
+ "overhyped": overhyped,
+ }
+
findings = {
"question_rates": q_rates,
"year_category_trends": year_cat_trends,
@@ -870,6 +926,7 @@ def build():
"pca": pca_result,
"tag_treemap": tag_treemap,
"two_cultures": two_cultures_papers,
+ "hn_analysis": hn_analysis,
}
# --- Citation network (built from cited_papers in scan.json) ---
@@ -1017,6 +1074,7 @@ def build():
"doi": entry.get("doi", ""),
"code_url": None,
"dna": None,
+ "hn_points": 0,
})
write_json(OUTPUT_DIR / "dashboard.json", dashboard)
diff --git a/scripts/enrich-hn.py b/scripts/enrich-hn.py
@@ -0,0 +1,166 @@
+#!/usr/bin/env python3
+"""
+Enrich papers with Hacker News discussion data.
+
+For each v2-scanned paper, searches HN Algolia API for submissions
+matching the arxiv ID (URL match) or paper title (text match fallback).
+Saves results to papers/{slug}/hn.json.
+
+Usage:
+ python3 scripts/enrich-hn.py # All v2 papers without hn.json
+ python3 scripts/enrich-hn.py --force # Re-fetch all
+ python3 scripts/enrich-hn.py --limit 50 # First N only
+"""
+
+import json
+import sys
+import urllib.request
+import urllib.parse
+from pathlib import Path
+
+ROOT = Path(__file__).resolve().parent.parent
+PAPERS_DIR = ROOT / "papers"
+
+HN_API = "https://hn.algolia.com/api/v1/search"
+
+
+def search_hn(query, tags="story", hits=10):
+ """Search HN Algolia API. Returns list of hits."""
+ params = urllib.parse.urlencode({
+ "query": query,
+ "tags": tags,
+ "hitsPerPage": hits,
+ })
+ url = f"{HN_API}?{params}"
+ try:
+ req = urllib.request.Request(url, headers={"User-Agent": "research-survey/1.0"})
+ resp = urllib.request.urlopen(req, timeout=15)
+ data = json.loads(resp.read())
+ return data.get("hits", [])
+ except Exception as e:
+ print(f" API error: {e}")
+ return []
+
+
+def extract_threads(hits):
+ """Extract thread data from HN hits."""
+ threads = []
+ seen_ids = set()
+ for h in hits:
+ oid = h.get("objectID")
+ if oid in seen_ids:
+ continue
+ seen_ids.add(oid)
+ threads.append({
+ "hn_id": oid,
+ "title": h.get("title", ""),
+ "points": h.get("points", 0) or 0,
+ "comments": h.get("num_comments", 0) or 0,
+ "url": f"https://news.ycombinator.com/item?id={oid}",
+ "created_at": h.get("created_at", ""),
+ })
+ threads.sort(key=lambda t: -t["points"])
+ return threads
+
+
+def main():
+ args = sys.argv[1:]
+ force = "--force" in args
+ limit = None
+ for i, arg in enumerate(args):
+ if arg == "--limit" and i + 1 < len(args):
+ limit = int(args[i + 1])
+
+ # Collect v2 papers
+ papers = []
+ for scan_path in sorted(PAPERS_DIR.glob("*/scan.json")):
+ with open(scan_path) as f:
+ s = json.load(f)
+ if s.get("scan_version", 1) < 2:
+ continue
+ pid = scan_path.parent.name
+ hn_path = scan_path.parent / "hn.json"
+ if hn_path.exists() and not force:
+ continue
+ papers.append({
+ "id": pid,
+ "arxiv_id": s.get("paper", {}).get("arxiv_id", ""),
+ "title": s.get("paper", {}).get("title", ""),
+ })
+
+ if limit:
+ papers = papers[:limit]
+
+ if not papers:
+ print("No papers to enrich.")
+ return
+
+ print(f"Enriching {len(papers)} papers with HN data...\n")
+
+ stats = {"arxiv_match": 0, "title_match": 0, "not_found": 0, "total_threads": 0}
+
+ for i, p in enumerate(papers):
+ threads = []
+
+ # Strategy 1: search by arxiv ID (matches URL submissions)
+ if p["arxiv_id"]:
+ hits = search_hn(p["arxiv_id"])
+ threads = extract_threads(hits)
+
+ # Strategy 2: title search fallback if no arxiv match
+ if not threads and p["title"]:
+ # Use quoted title for exact-ish matching, truncated to avoid API issues
+ title_query = p["title"][:80]
+ hits = search_hn(title_query)
+ # Filter to hits whose title has significant word overlap with our title
+ title_words = set(p["title"].lower().split())
+ filtered = []
+ for h in hits:
+ hn_words = set((h.get("title", "") or "").lower().split())
+ overlap = len(title_words & hn_words)
+ if overlap >= min(3, len(title_words) // 2):
+ filtered.append(h)
+ if filtered:
+ threads = extract_threads(filtered)
+ if threads:
+ stats["title_match"] += 1
+ if not threads:
+ stats["not_found"] += 1
+ elif not threads:
+ stats["not_found"] += 1
+
+ if threads and p["arxiv_id"]:
+ stats["arxiv_match"] += 1
+
+ stats["total_threads"] += len(threads)
+
+ # Write hn.json
+ hn_data = {
+ "threads": threads,
+ "top_points": threads[0]["points"] if threads else 0,
+ "total_points": sum(t["points"] for t in threads),
+ "total_comments": sum(t["comments"] for t in threads),
+ }
+ hn_path = PAPERS_DIR / p["id"] / "hn.json"
+ with open(hn_path, "w") as f:
+ json.dump(hn_data, f, ensure_ascii=False, indent=2)
+
+ if threads:
+ top = threads[0]
+ print(f" [{i+1:3d}/{len(papers)}] {p['id'][:45]:45s} {top['points']:>4d}pts {hn_data['total_comments']:>4d}cmt {len(threads)}t")
+ else:
+ pass # silent for not-found to keep output clean
+
+ # Print progress every 100
+ if (i + 1) % 100 == 0:
+ print(f" ... {i+1}/{len(papers)} done")
+
+ print(f"\nDone. {len(papers)} papers processed.")
+ print(f" Matched via arxiv_id: {stats['arxiv_match']}")
+ print(f" Matched via title: {stats['title_match']}")
+ print(f" Not found: {stats['not_found']}")
+ print(f" Total HN threads: {stats['total_threads']}")
+
+
+if __name__ == "__main__":
+ main()