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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
GitHub - moe18/Unwired: LLM powered DNS
mchab · 2026-04-21 · via Hacker News - Newest: "LLM"

Unwired

LLM-powered Chrome extension that filters low-value, distracting, and manipulative content from the web. Tell it what you don't want to see and dont see it. so many people are fighting for your attention its time for you to fight back.

you can get the chrome extention here https://chromewebstore.google.com/detail/unwired/eagjafndbcedibfalnfimildfphokffn

Quick Start

  1. Open Chrome and go to chrome://extensions/
  2. Enable Developer mode (top right)
  3. Click Load unpacked and select the extension/ folder
  4. Click the Unwired icon in the toolbar
  5. Add your API key in Settings (supports OpenAI, Claude, Gemini, Grok, OpenRouter)
  6. Write your rules and start browsing

No backend server needed. The extension calls LLM APIs directly from the browser using your own API key.

Example Rules

No clickbait
No politics
Only programming content
No shorts or playables
No ads or sponsored content
No outrage bait or drama
Highlight educational content
Dim entertainment

How It Works

Chrome Extension (Manifest V3)
┌──────────────────────────────────┐
│ content.js                       │
│  Extracts content from the DOM   │
│  Batches items for classification│
│  Applies hide/show/dim/highlight │
│                                  │
│ background.js                    │
│  Calls LLM API directly         │
│  Classifies content per rules   │
│  Refines rules when you reject  │
│                                  │
│ popup.html/js                    │
│  Rules editor (auto-saves)      │
│  Settings & API key             │
│  Recently removed & history     │
└──────────────────────────────────┘

Supported Sites

Site What gets scanned
YouTube Video titles, Shorts shelves, Playables, ads, comments
Twitter/X Tweets, promoted tweets, app install ads, Who to Follow
Google Search results, People Also Ask, sponsored results
Reddit Post titles
Facebook Feed posts
LinkedIn Feed posts
Any site Generic extractor (articles, cards, headlines, table rows)

Content Actions

Action Behavior
show Left unchanged
hide Removed from DOM entirely
dim Faded out, visible on hover
highlight Blue border, stands out

Features

  • Natural language rules — write filters in plain English
  • Auto-save — rules apply as you type (800ms debounce)
  • Smart reject button — hover any content to see an X button; clicking it sends the content to the LLM which analyzes the category and rewrites your rules
  • Prompt history — every rule change is saved, restore any previous version
  • Filter button toggle — enable/disable the hover reject buttons in Settings
  • Multi-provider — OpenAI, Claude, Gemini, Grok, or OpenRouter
  • No API key mode — basic keyword matching fallback
  • Per-site control — enable/disable filtering per site, or turn on for all sites
  • Google app protection — Colab, Docs, Drive, etc. are never filtered

LLM Providers

Provider Default Model API Key Format
OpenAI gpt-4o-mini sk-...
Anthropic claude-haiku-4-5 sk-ant-...
Gemini gemini-2.0-flash AIza...
Grok grok-3-mini-fast xai-...
OpenRouter openai/gpt-4o-mini sk-or-...

Performance

  • Batches up to 25 items per API call
  • In-memory cache (500 entries) prevents re-classification
  • Debounced scanning (400ms) avoids excessive API calls
  • MutationObserver handles infinite scroll and SPA navigation
  • Stale results are discarded when rules change mid-flight