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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
爱范儿
爱范儿

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Onhand — a reading companion that points
phineas1500 · 2026-06-16 · via Hacker News - Newest: "AI"

Chrome Web Store live Store · latest build Apache 2.0 For Chromium Built with OpenAI Codex Onhand Free · Codex · provider keys

Onhand is a contextual AI for learning and research. Ask about the page you already have open. It highlights the line, leaves a note in the margin, and explains it in the side panel, where you are. No second window, no copy-paste.

Realtime voice tutor 1 min 36 sec demo

The Annotated Transformer

Attention

Attention maps a query and key-value pairs to an output. The model compares the query with each key, then uses the resulting weights to average the values.

We call our particular attention Scaled Dot-Product Attention. Queries and keys have dimension dk; values have dimension dv.

MatMul Scale Mask SoftMax MatMul QKV

In implementation, the attention scores are produced by multiplying the query matrix by the transposed key matrix, scaling by sqrt(dk), and normalizing with softmax.

scores = torch.matmul(query, key.transpose(-2, -1))
scores = scores / math.sqrt(query.size(-1))
p_attn = scores.softmax(dim=-1)
return torch.matmul(p_attn, value)

Softmax turns the scaled scores into attention weights, so the final output is a weighted mixture of the value vectors.

Try the citations: each one jumps back to the highlighted page evidence.

What it does

Four things, done in the margin.

Onhand stays out of the way until you ask. When you do, it does the four things a good study partner would do.

Points to the answer

Highlights the exact phrase or paragraph that answers your question, in gold, and scrolls the page to bring it into view. Block-level highlights for whole paragraphs, inline highlights for phrases.

background.js · highlight_text · scroll_to_annotation

Leaves a note in the margin

Drops a sentence or two next to your highlight, written in the article's own voice, so you can keep reading without losing your place.

show_note · pine-barred editorial callout

Replay artifacts

Every session is saved with its highlights, notes, transcript, and a snapshot of the page. Come back tomorrow to the exact state you left.

chrome.storage.local · sessions + screenshots

Voice tutor

Press Voice in the side panel and talk through a paper. The realtime model can see your highlights and the visible text.

gpt-realtime-2 · WebRTC · experimental

How it works

Three steps. No second window.

01 · OPEN

The page you're already reading.

Wikipedia, an arXiv paper, a Google Doc, a Substack. Anything Chromium can render. Onhand attaches to the active tab.

tab — active

arxiv.org/abs/1706.03762
Attention is all you need · pdf

02 · ASK

A question in the side panel.

Plain language. Onhand reads whatever it needs to ground the answer: the page, the selection, the visible headings.

side panel

Explain the scaled dot-product attention
and why we divide by √d_k.

03 · POINT

Onhand points at the answer.

Highlights the line, drops a margin note, answers in the side panel with citations back to the page. Then saves it all.

on the page

We call our particular attention "Scaled Dot-Product Attention"…
● ONHAND margin note added

Install

Onhand is on the Chrome Web Store.

Install the approved Chrome Web Store build in one click. Start with Onhand Free, sign in with OpenAI Codex, or bring a provider API key. The store is currently serving and updates through Chrome.

Chrome Web Store · live now

Add Onhand to Chrome.

The approved store build installs normally and updates through Chrome. Use the GitHub ZIP only if you prefer manual installs or need a specific release artifact.

Build from source instead

terminal · build the extension

# Clone and build
$ git clone https://github.com/Phineas1500/Onhand
$ cd Onhand
$ npm ci
$ npm run build:extension

# Verify the build
$ npm run smoke:browser-runtime
browser runtime ready · 

# For a real provider call
$ OPENAI_API_KEY= npm run smoke:browser-runtime -- --real-openai
  1. Open the Chrome Web Store listing and click Add to Chrome.
  2. Chrome is currently serving and will update Onhand automatically.
  3. Open the Onhand options page. Choose Onhand Free, sign in with OpenAI Codex, or paste a provider API key.
  4. Pin the extension, open any page, and click the icon to launch the side panel. Press Cmd/Ctrl+K in the panel to focus the composer.
  5. Prefer a manual install? Download , unzip it, then load the folder from chrome://extensions with developer mode enabled.
  6. That's it . Highlight a passage, type a question, and let Onhand point.

Apache 2.0. Onhand is open source. Sessions stay on your machine in chrome.storage.local. Provider keys never leave your device in API-key modes; Onhand Free sends model requests through the hosted Onhand Worker with anonymous diagnostics for reliability, quota, cost, and abuse monitoring. Helium and other Chromium-based browsers that support chrome.debugger work too.

The runtime

Twenty-nine small tools that act on the page.

Each tool is a single, auditable operation against the active tab. Onhand composes them; you read the script in the side panel after every turn.

Read further

The thinking behind it.