惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. GitHub - moeen-mahmud/remen: Remen turns thoughts into something you can return to Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL). mempalace/agent at agent · skorotkiewicz/mempalace
I wrote a 400-line pipeline that installs and scores ever...
vfalbor · 2026-04-21 · via Hacker News - Newest: "LLM"

By last November I'd given up on Show HN. Thirty launches a day, half of them "I built a thing with Claude," and cloning each one to decide if it was worth my afternoon had stopped being fun. So I wrote a pipeline. It pulls the HN front page every day at 15:00 UTC, boots a python:3.12-alpine container per tool, installs whatever the repo asks for, runs a QA script an LLM writes on the fly, and scores the result across 11 criteria out of 110. Output is public at tokenstree.eu. Free. Open source. No login.

This is what today's top LLM review looks like.

58 / 110

worth-watching · 2026-04-20

novelty 8/10

current_relevance 8/10

differentiation 7/10

hn_sentiment 6/10

community 5/10

documentation 5/10

maturity 5/10

system_requirements 5/10

performance 5/10

ease_of_use 4/10

ease_of_integration 3/10

"Low ease_of_integration: no public endpoint, no embedded API — batch use is impossible. The novelty comes from side-by-side comparison across Claude/GPT/Gemini tokenizers, which hadn't been bundled this cleanly before."

Every score is attached to a justification like that one, citing real numbers from the run.

how it works

Seven stages, all scripted, all open source:

  1. Scrape the top 30 HN items
  2. Classify each as tool or article (llama-3.1-8b via Groq)
  3. For tools: generate a Python QA script tailored to the repo, run it in a 512MB Alpine container with a 180-second timeout
  4. Enrich with GitHub, PyPI, npm, and HN comment data
  5. Score the 11 criteria with llama-3.3-70b — each score attached to a justification that cites numbers, not adjectives
  6. Rank and tag (must-try / worth-watching / niche / skip)
  7. Email digest and publish to the site

The prompts and weights live in /skills/ as plain markdown. Median run: 94 seconds per tool. Monthly Groq bill: about $12.

where the rubric is wrong

I'll save you the trouble of finding it.

hn_sentiment is the criterion I trust least. It scans the HN comments with an LLM and returns 1-10. In practice it pulls the total score toward the mean — a thread with 30 comments and one grumpy reply gets a 6/10 even when the tool is genuinely good. I keep it because dropping it shuffles the rankings more than I'm comfortable with, but I'm ~60% sure I shouldn't.

Two more weak spots I already know about:

  • Auth-gated tools (anything needing a hosted key) fail the install test by default. The score lies until I override by hand.
  • Research repos with a README.md pointing to a private cluster get punished on basic_run_success. Sometimes the paper is the product.

break it

The repo is CC BY 4.0 at github.com/vfalbor/llm-daily-review. Weights live in /skills/scorer.md. If you think hn_sentiment should weigh less, open an issue with the reweighted vector applied to last week's top 5 and I'll merge. If you think the whole criterion is broken, tell me what to replace it with — I want the specific alternative, not "use vibes."

I'd also pay attention to anyone who can propose a cleaner way to handle auth-gated installs that doesn't degenerate into "trust the README."

Today's review is at tokenstree.eu. The weekly top 5 drops every Friday. I read every issue.