frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

When the Small Web Gets an AI Door

https://sava.rocks/blog/when-the-small-web-gets-an-ai-door/
1•speckx•1m ago•0 comments

Nine Rules for Compile-Time Work with Rust Const Fn (Part 1)

https://medium.com/@carlmkadie/nine-rules-for-compile-time-work-with-rust-const-fn-part-1-a29f7dd...
1•syumei•2m ago•0 comments

X suspended 6 of our 7 openly-labeled AI accounts for "inauthentic behaviors"

https://areyto.media/x-suspensions
1•rendonroman•4m ago•0 comments

Building Scalable Control Planes

https://www.allthingsdistributed.com/2026/08/on-building-scalable-control-planes.html
1•saikatsg•4m ago•0 comments

Tiki-Taka – Football

https://en.wikipedia.org/wiki/Tiki-taka
1•manlymuppet•5m ago•1 comments

The longer version is sometimes easier to read

https://www.plainfinance.net/break-up-long-sentences-2/
1•speckx•5m ago•0 comments

Morphcpu, a 14 yr olds attempt to build a custom silicon processor from scratch

https://github.com/ranveerlabs/morphcpu
1•ranveergill•6m ago•0 comments

API Delta Manifest: Structured API Changelog for AI Agents and Devs

https://github.com/hassan-jahan/api-delta-manifest
2•mehraban•6m ago•0 comments

Scientists Hunting Dark Matter Found Something Strange

https://www.nytimes.com/2026/09/01/science/dark-matter.html
2•marcusverus•6m ago•1 comments

codex-remote-control – Use Claude's Remote Control with Codex Sessions

https://github.com/sahrizvi/codex-remote-control
1•sahrizv•6m ago•0 comments

Gemini Agentic Video Understanding

https://ai.google.dev/gemini-api/docs/video-understanding
2•thisisauserid•6m ago•1 comments

Independent researcher: AI shouldn't be judged by human standards (paper)

https://zenodo.org/records/22117566
1•KitCrowCo•7m ago•0 comments

Xanadu Was Waiting for Agents

https://zed.dev/blog/agentic-xanadu
2•nsm•7m ago•0 comments

We got to drive the Aptera solar electric car

https://electrek.co/2026/06/17/we-finally-got-to-drive-the-aptera-solar-electric-car/
1•debo_•8m ago•0 comments

Industry Standard Tools

https://industrystandard.tools/
1•greedo•9m ago•0 comments

100% local chat with a model in the browser using WebAssembly written in TinyGo

https://hybridgroup.github.io/yzma-wasm-example/
1•deadprogram•9m ago•0 comments

The point of a system is fewer decisions

https://www.antonsten.com/articles/the-building-was-never-the-hard-part/
2•meetpateltech•9m ago•0 comments

James Dyson Sold Us on a $400 Hair Dryer. Now He's Trying a $499 Toothbrush

https://www.wsj.com/cmo-today/james-dyson-sold-us-on-a-400-hair-dryer-now-hes-trying-a-499-toothb...
1•fortran77•10m ago•1 comments

What's the Scam?

https://www.schneier.com/blog/archives/2026/09/whats-the-scam.html
2•speckx•11m ago•0 comments

Working to Make Python Lazy

https://iscinumpy.dev/post/flake8-lazy/
1•js2•13m ago•0 comments

Show HN: Personal AI Use Policies

https://howiai.directory
1•emilesilvis•14m ago•0 comments

Ask HN: Anyone struggling to do data work with Claude Code or codex?

1•mukeshkg•15m ago•0 comments

The sales system for service businesses

https://zencal.io/
1•42echo•17m ago•0 comments

Is this the simplest/ most surprising sorting algorithm ever (2021)

https://arxiv.org/abs/2110.01111
1•Tomte•17m ago•0 comments

The Story of Entrepreneurship [video]

https://www.youtube.com/watch?v=xza2Hf0Tycw
1•mooreds•18m ago•0 comments

Ask HN: Do you know the non-tech version of Hacker News?

1•zerodollar•18m ago•0 comments

Hi: )

https://substack.com/profile/110893156-mukesh-kg/note/c-327508187
1•mukeshkg•18m ago•0 comments

I used Fable to rewrite 65kLoC of Go in Rust. It cost $400

https://iurii.net/en/blog/posts/software-engineering/i-used-fable-to-rewrite-65kloc-to-rust/
2•aka-rider•19m ago•1 comments

DuckLabs to Join AWS, Projects to Remain Open Source

https://duckdb.org/2026/08/26/ducklabs-to-join-aws
1•antimora•19m ago•0 comments

Ventoy: Create drag-and-drop bootable usbs

https://www.ventoy.net/en/index.html
2•fcjr•21m ago•0 comments
Open in hackernews

Ask HN: How do you send large sets of data to an LLM

2•obayesshelton•1y ago
So, I am hitting limits with the amount of data I am sending to Claude via the API.

I am trying to send about 5000 comments but I would love to send more but I am hitting limits of the message size.

What are some good design patterns when sending large sets of data to an LLM?

I ideally need to send all the data together at it gives context to the overall prompt.

Comments

curious_curios•1y ago
Some approaches we’ve used:

- Group the comments by theme, then pass groups to the LLM to summarize/deduplicate then pass the outputs of that as context.

- RAG where only relevant parts are included in the context.

- Use an LLM with a larger context window (like Gemini pro)

obayesshelton•1y ago
Yeah, I think I need to use Gemini

Question, how if possible could you query rows in a table?

Surely the better approach would be to have some sort of connection to table rows?