Hacker News
Pg_stat_ch: A PostgreSQL extension that exports every metric to ClickHouse
Article URL: https://clickhouse.com/blog/pg_stat_ch-postgres-extension-stats-to-clickhouse
Comments URL: https://news.ycombinator.com/item?id=47011936
Points: 2
# Comments: 0
Why haven't humans been back to the moon in over 50 years?
Article URL: https://www.cnn.com/2026/02/13/science/why-humans-have-not-been-back-to-moon
Comments URL: https://news.ycombinator.com/item?id=47011926
Points: 1
# Comments: 0
Jikipedia, a new AI-powered wiki reporting on key figures in the Epstein scandal
Article URL: https://twitter.com/jmailarchive/status/2022482688691835121
Comments URL: https://news.ycombinator.com/item?id=47011919
Points: 1
# Comments: 0
Show HN: Heart Note – a tiny web app to send beautiful one‑off digital letters
Article URL: https://heartnote.online
Comments URL: https://news.ycombinator.com/item?id=47011857
Points: 2
# Comments: 0
SnowBall: Iterative Context Processing When It Won't Fit in the LLM Window
Article URL: https://enji.ai/tech-articles/snowball-iterative-context-processing/
Comments URL: https://news.ycombinator.com/item?id=47011854
Points: 1
# Comments: 0
How to be a good Asian parent (satire)
Article URL: https://www.reddit.com/r/AsianParentStories/s/yyMDWcAUdh
Comments URL: https://news.ycombinator.com/item?id=47011825
Points: 1
# Comments: 1
The Compliance Officer Who Flagged Epstein – and Lost Her Job
Article URL: https://www.levernews.com/the-compliance-officer-who-flagged-epstein-and-lost-her-job/
Comments URL: https://news.ycombinator.com/item?id=47011817
Points: 1
# Comments: 0
Convert URLs and Files to Markdown
Article URL: https://markdown.new
Comments URL: https://news.ycombinator.com/item?id=47011815
Points: 2
# Comments: 0
Podcast: Solving Distributed Massage Passing: NATS.io composite learning [video]
Article URL: https://www.youtube.com/watch?v=5NXvU17a-iU
Comments URL: https://news.ycombinator.com/item?id=47011785
Points: 1
# Comments: 2
Lockdown Mode and Elevated Risk Labels in ChatGPT
Article URL: https://openai.com/index/introducing-lockdown-mode-and-elevated-risk-labels-in-chatgpt/
Comments URL: https://news.ycombinator.com/item?id=47011783
Points: 2
# Comments: 0
Living in the Petri Dish of the Future
Article URL: https://om.co/2026/02/12/living-in-the-petri-dish-of-the-future/
Comments URL: https://news.ycombinator.com/item?id=47011752
Points: 1
# Comments: 0
The feedback you're not giving is the problem you keep having
Article URL: https://dougrathbone.com/blog/2026/02/14/the-feedback-youre-not-giving-is-the-problem-you-keep-having
Comments URL: https://news.ycombinator.com/item?id=47011741
Points: 1
# Comments: 0
AI Fails at 96% of Jobs (New Study)
Article URL: https://www.youtube.com/watch?v=z3kaLM8Oj4o
Comments URL: https://news.ycombinator.com/item?id=47011722
Points: 3
# Comments: 1
LLM APIs is a State Synchronization Problem
Article URL: https://lucumr.pocoo.org/2025/11/22/llm-apis/
Comments URL: https://news.ycombinator.com/item?id=47011720
Points: 1
# Comments: 0
Show HN: Lucid – Catch hallucinations in AI-generated code before they ship
Hi HN, I'm Ty. I built LUCID because I kept shipping bugs that my AI coding assistant hallucinated into existence.
Three independent papers have proven that LLM hallucination is mathematically inevitable (Xu et al. 2024, Banerjee et al. 2024, Karpowicz 2025). You can't train it away. You can't prompt it away. So I built a verification layer instead.
How it works: LUCID extracts implicit claims from AI-generated code (e.g., "this function handles null input," "this query is injection-safe," "this handles concurrent access"), then uses a second, adversarial AI pass to verify each claim against the actual implementation. You get a report showing exactly what would have shipped to production without verification.
"But can't the verifier hallucinate too?" Yes -- and that's the right question. The benchmarks below were validated by running real test suites, not by trusting LUCID's judgment. The value is that structured claim extraction + adversarial verification catches bugs that a single generation pass misses. The architecture also supports swapping LLM verification for formal methods (SMT solvers, property-based testing) per claim type as those integrations mature.
Benchmarks:
- HumanEval: 86.6% baseline -> 100% pass@5 with LUCID (164/164 problems) - SWE-bench: 18.3% baseline -> 30.3% with LUCID (+65.5%) - Both benchmarks were validated by running actual test suites, not by LLM judgment - LLM-as-judge actually performs worse at higher k values -- it hallucinates false positives
Three ways to use it:
1. MCP Server (Claude Code, Cursor, Windsurf) -- one config line, verification as a native tool 2. GitHub Action -- automated verification on every PR with inline comments 3. CLI -- npx lucid verify --repo /path/to/code
Free tier: 100 verifications/month. Get a key at https://trylucid.dev
Code: https://github.com/gtsbahamas/hallucination-reversing-system Paper: https://doi.org/10.5281/zenodo.18522644 Dashboard: https://trylucid.dev
Comments URL: https://news.ycombinator.com/item?id=47011695
Points: 2
# Comments: 0
German-language Wikipedia considers comprehensive AI ban
Article URL: https://www.heise.de/en/news/German-language-Wikipedia-considers-comprehensive-AI-ban-11175670.html
Comments URL: https://news.ycombinator.com/item?id=47011683
Points: 1
# Comments: 0
Evolving Git for the Next Decade
Article URL: https://lwn.net/SubscriberLink/1057561/bddc1e61152fadf6/
Comments URL: https://news.ycombinator.com/item?id=47011676
Points: 1
# Comments: 0
The Challenger Map
Article URL: https://challengermap.ca/
Comments URL: https://news.ycombinator.com/item?id=47011651
Points: 1
# Comments: 0
Show HN: Why Playwright-CLI Beats MCP for AI‑Driven Browser Automation
Most “AI + browser” setups still bolt MCP tools onto Playwright and hope for the best, so every click dumps full DOMs, accessibility trees, and logs into the model.
That burns tokens, collapses context, and makes long sessions unreliable.
Meanwhile, default Playwright reports start to struggle once you have more than a few dozen e2e tests, so teams drown in HTML reports and flaky failures instead of clear patterns.
The insights at https://testdino.com/blog/playwright-cli/ explores how Microsoft’s playwright-cli keeps browser state external, returns only compact element references and YAML flows, and works with normal npx playwright test plus smarter reporting, so both agents and humans stay fast, cost aware, and predictable.
Comments URL: https://news.ycombinator.com/item?id=47011649
Points: 1
# Comments: 0
Show HN: ReviewStack – API that aggregates reviews from YouTube and Reddit
I built an API that takes a product name, scrapes reviews from YouTube and Reddit, and returns structured sentiment analysis in a single JSON response. Live demo (no signup): https://reviewstack.vercel.app/demo
The response includes a normalized score (1-10), a plain-text summary, pros/cons lists, recurring themes with sentiment, and source attribution linking back to the original content.
The AI layer uses Claude by Anthropic. It reads the collected reviews and extracts structured data. The value is in not having to maintain scraping infrastructure, handle rate limits across platforms, or write your own extraction prompts.
Stack: Next.js API routes, Vercel for hosting, Stripe for billing, YouTube Data API + Reddit JSON endpoints for sourcing, Claude for analysis.
Pricing: free tier at 50 lookups/month, paid plans at $29/mo (500 lookups) and $79/mo (2,000 lookups). Solo/bootstrapped project.
Happy to answer questions about the scraping approach, accuracy, or anything else.
Comments URL: https://news.ycombinator.com/item?id=47011640
Points: 1
# Comments: 0
