frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Modest Proposal for Anthropic

https://tornikeo.com/a-modest-proposal-for-anthropic/
1•tornikeo•1m ago•0 comments

Reddie – Autonomous AI Red-Teaming and GitHub PR Patching DevTool

https://github.com/irfadox/reddie
1•Irfadox•9m ago•0 comments

But where does taste come from?

https://dustycloud.org/blog/but-where-does-taste-come-from/#f
1•o4c•11m ago•0 comments

Scaling Memory Safety: AI-Assisted Rewrites of C/C++ Dependencies to Rust

https://bughunters.google.com/blog/scaling-memory-safety
1•meerita•11m ago•0 comments

Xkcd 1200: Authorization

https://xkcd.com/1200/
2•vga1•11m ago•0 comments

Europe's largest collection of historic adverts

https://www.advertisingarchives.co.uk/
1•Bluestein•12m ago•0 comments

The U.S. is more than just the US (according to the ISO)

https://trevmex.com/post/826439929093636096/the-us-is-more-than-just-the-us-according-to
1•Ilimlza•12m ago•0 comments

Firefox's password "security" is mind-numbingly stupid

https://blog.liampwll.com/posts/firefox_password_security/
1•LiamPowell•16m ago•0 comments

Rust Beautifier: Beautiful, Fun and Opinionated Rust, the DHH Way

https://rust-beautifier.vercel.app
1•meerita•19m ago•0 comments

Upcoming election could produce modern Germany's first far-right state governor

https://apnews.com/article/germany-saxony-anhalt-election-far-right-afd-3162fbdd71e6f745eeb239e29...
1•geox•22m ago•0 comments

Rust Function Overloading – Call for Experimentation

https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/
2•vinhnx•30m ago•0 comments

But where does taste come from?

https://dustycloud.org/blog/but-where-does-taste-come-from/
1•vinhnx•31m ago•0 comments

Cadence – a floating lyrics overlay for Spotify and YouTube Music

https://github.com/MowkE/cadence
1•Eclipzey•32m ago•0 comments

Gregg Shorthand

https://en.wikipedia.org/wiki/Gregg_shorthand
1•jaredwiener•37m ago•0 comments

OpenClaw 2.0

https://docs.openclaw.ai/releases/2026.8.1
1•guyinblackshirt•39m ago•0 comments

AI isn't sentient – the real danger lies in how easily we anthropomorphize it

https://theconversation.com/ai-isnt-close-to-becoming-sentient-the-real-danger-lies-in-how-easily...
2•Osiris30•41m ago•1 comments

Design Considerations for an Anthropophilic Computer (1979)

https://web.stanford.edu/dept/SUL/sites/mac/primary/docs/bom/anthrophilic.html
1•throw310822•49m ago•0 comments

ElephpantDB: A pure PHP SQL database

https://github.com/antonmedv/elephpantdb
1•medv•49m ago•0 comments

Protecting Postgres from everything that isn't Postgres

https://clickhouse.com/blog/protect-postgres-from-supporting-processes
1•saisrirampur•59m ago•0 comments

Anna's Archive Lost Several Domains

https://goodereader.com/blog/ebook-and-audiobook-piracy-news/annas-archive-lost-several-domains
1•kozmonaut•59m ago•0 comments

Building a Flight Controller in Rust

https://www.staszewski.xyz/blog/building-a-flight-controller-in-rust/
1•kamilstaszewski•1h ago•0 comments

The Open Air European Museum

https://www.theprincetontory.com/is-europe-an-open-air-museum/
1•satvikpendem•1h ago•0 comments

We run five Claude Code sessions at once

https://draper.chat/dev/the-ultimate-claude-code-parallelisation-guide-2026
1•tomchill•1h ago•0 comments

Second Wave Solarpunk

https://planetsandmonsters.blogspot.com/2026/08/second-wave-solarpunk.html
1•rdmuser•1h ago•0 comments

Vim Classic debuts with its first release as a Vim fork without AI assistance

https://www.neowin.net/news/vim-classic-debuts-with-its-first-release-as-a-vim-fork-without-ai-as...
1•pir8life4me•1h ago•1 comments

Sivers in Bangalore

https://sive.rs/met/at-15
1•nreece•1h ago•0 comments

Kansas town drops charges against teacher arrested for clapping

https://www.tomshardware.com/tech-industry/data-centers/kansas-town-drops-charges-against-teacher...
3•rdmuser•1h ago•0 comments

Show HN: Tracking spec-driven development in the wild

https://sddobservatory.com/
1•emilesilvis•1h ago•0 comments

PlayStation wants to prove in court that you don't own your digital games

https://www.polygon.com/sony-digital-games-lawsuit-california/
3•Markoff•1h ago•0 comments

I built a multiplayer version of the 4,500-year-old Royal Game of Ur

https://royalgameofur.app
2•potentdream•1h 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?