frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Will My Homemade Ekranoplan Fly? DIY Flying Boat [video]

https://www.youtube.com/watch?v=lawr2QRdO4U
1•skibz•54s ago•0 comments

Apple: A Message to Our Customers (2016)

https://www.apple.com/customer-letter/
1•tosh•1m ago•0 comments

Cloud Bill Billionaire

https://www.loganbesecker.com/Apps/Cloud-Bill-Billionaire.html
1•YAReader•3m ago•0 comments

OpenAI Astra and Recurrent Depth / Looped Transformers [Seb Raschka] [video]

https://www.youtube.com/watch?v=KT4n-z_4QJU
1•mdp2021•4m ago•0 comments

Hacker-yardage: Make golf yardage books using OpenStreetMap and USGS Lidar data

https://github.com/npilk/hacker-yardage
1•npilk•6m ago•0 comments

The Dark Side of Mindfulness

https://www.theatlantic.com/ideas/2026/09/meditation-willoughby-britton-downsides/688474/
1•paulpauper•6m ago•0 comments

The Missing Ingredient of Modern Life

https://www.theatlantic.com/magazine/2026/10/modern-life-maxxing-antidote/688344/
1•paulpauper•7m ago•0 comments

Reusable Launch and Space Vehicle History

https://www.hobbyspace.com/Links/RLV/RLVHistory.html#DCX
1•o4c•7m ago•0 comments

Show HN: Floyi, a topic-first content workflow for Google and AI search

https://floyi.com/
1•yoyao•7m ago•0 comments

Show HN: Casefile – Git why for AI-assisted development

https://github.com/lutzleonhardt/casefile
1•lutzleonhardt•7m ago•0 comments

Show HN: Claude-Sniff – Loopback MitM for Claude Code on Bedrock

https://github.com/RiccardoCataldi/claude_sniff
1•telesio•7m ago•0 comments

OpenClaw Improves User Onboarding

https://openclaw.ai/blog/macos-installer-windows-local-ai
2•bfdd•7m ago•1 comments

Share price numbers for the Hugging Face incident

https://marginalrevolution.com/marginalrevolution/2026/09/more-numbers-for-the-hugging-face-incid...
3•paulpauper•7m ago•0 comments

Show HN: Declick – Turn an OpenAPI Spec, MCP Server or SQLite DB into a CLI

https://github.com/ucsandman/declick
3•practicalsystem•8m ago•2 comments

Show HN: Audioreality.ai – email to private daily podcast summary show

https://www.audioreality.ai
2•BSOhealth•8m ago•0 comments

My Self-Hosting Setup: My Data, Your Compute

https://vanilla.sh/blog/self-hosting-my-data-your-compute/
2•speckx•8m ago•0 comments

Show HN: Sentrint, Ship AI features without losing sleep

https://sentrint.com/
3•xEcho•8m ago•1 comments

Biggest sovereign wealth fund plans to cut U.S. Treasury holdings

https://www.cnbc.com/2026/09/04/worlds-biggest-sovereign-wealth-fund-plans-to-cut-treasury-holdin...
4•donsupreme•9m ago•0 comments

Burnt out on a three-day week

https://jennywanger.com/articles/burnt-out-on-a-three-day-week/
2•thelastgallon•9m ago•0 comments

Librarian – Local eBook-to-Markdown pipeline with MCP and quote checking

https://github.com/Terobyte/librarian-cli
2•terobyte•9m ago•0 comments

A no_std memory engine that stops an LLM agent citing its own output

https://github.com/vitaliyfedotovpro-art/astrum-hsam-embedded
2•astrumverum•9m ago•0 comments

M.D.-scientist informatics leader Dr. Peter Embí to helm Nat Lib of Medicine

https://www.nih.gov/news-events/news-releases/physician-scientist-informatics-leader-dr-peter-emb...
2•bookofjoe•11m ago•0 comments

Hugging Face Easter Egg

https://www.johndcook.com/blog/2026/09/03/hugging-face-easter-egg/
2•8organicbits•12m ago•0 comments

Show HN: OpenStint – lap timing using RTL-SDR and near-field transponders

https://openstint.org/
2•zsellera•12m ago•0 comments

Brain's timing is lying to you

https://blog.curtii.com/blog/posts/brain-time/
3•baggachipz•14m ago•1 comments

Ask HN: Shift-Left to Reachability-First-How are you surviving AST alert fatigue

1•xEcho•14m ago•0 comments

Why AI coding agents fake completion, and how to build a bijective validator

1•tanjianbo•14m ago•0 comments

Super-precise optical clocks in four nations tick in harmony

https://www.nature.com/articles/d41586-026-02741-9
1•Brajeshwar•15m ago•0 comments

An End to Open Networks

https://seths.blog/2026/09/an-end-to-fully-open-networks/
2•momentmaker•16m ago•0 comments

She Also Found It at the Movies

https://hedgehogreview.com/web-features/thr/posts/she-also-found-it-at-the-movies
1•prismatic•18m 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?