frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Finding zombies in our systems: A real-world story of CPU bottlenecks

https://medium.com/pinterest-engineering/finding-zombies-in-our-systems-a-real-world-story-of-cpu...
2•birdculture•11m ago•0 comments

France doubles down on restricting access to Polymarketre

https://www.engadget.com/2218130/france-doubles-down-on-restricting-access-to-polymarket/
2•01-_-•19m ago•0 comments

Apple probably won't add Jony Ive to OpenAI trade secret theft suit

https://appleinsider.com/articles/26/07/19/apple-probably-wont-add-jony-ive-to-openai-trade-secre...
2•01-_-•21m ago•0 comments

AI Data Center Power Constraints Are the Real 2026 Bottleneck

https://www.spheron.network/blog/ai-data-center-power-constraints-2026/
2•DaWe01•21m ago•2 comments

Effective Patterns for Advanced MCP Usage

https://www.pulsemcp.com/posts/effective-patterns-for-advanced-mcp-usage
1•mfbx9da4•22m ago•0 comments

Congress Trades: Which US politician is trading now

https://apify.com/russet_flea/congress-trades-api
1•Kavon2992•29m ago•0 comments

Free GPT 5.6 Terra and Luna (2.5M/day) & 250k Sol – free experiments

https://platform.openai.com/settings/organization/data-controls/sharing
1•radio879•31m ago•1 comments

Podcast Feed from NotebookLM Summaries

https://shivamrana.me/2026/07/class-of-one/
1•tminima•31m ago•0 comments

Kimi K3 Why Washington Is Watching

https://www.bargo.ai/research/kimi-k3-frontend-code-arena-benchmark-policy
2•Kavon2992•31m ago•0 comments

Exploit brokers pay $500k for WordPress RCEs. I found one with GPT5.6 and $25

https://slcyber.io/research-center/exploit-brokers-pay-500000-for-a-wordpress-rce-i-found-one-wit...
6•infosecau•34m ago•0 comments

Show HN: Growth-Ratio Energy Function as Leading Indicator of Agent Task Failure

https://github.com/vishal-dehurdle/state-harness
1•visha1v•36m ago•0 comments

The Search for Another Earth-Like Planet Just Took a Big Step Forward

https://www.wired.com/story/search-for-earth-like-planet-step-forward/
2•beardyw•36m ago•2 comments

Topological Control of LLMs: A Route to Trustworthy AI

https://cacm.acm.org/blogcacm/topological-control-of-llms-a-route-to-trustworthy-ai/
1•visha1v•37m ago•0 comments

The Dawn of AI Change-Control

https://cacm.acm.org/news/the-dawn-of-ai-change-control/
1•visha1v•38m ago•0 comments

Amsterdam activists throw acid at Microsoft datacenter project

https://www.theregister.com/ai-and-ml/2026/07/16/amsterdam-activists-throw-acid-at-microsoft-data...
2•vrganj•41m ago•0 comments

Show HN: Run all your sites SEO on autopilot (boldpilot.club)

https://boldpilot.club
1•Utopyasz•41m ago•1 comments

Show HN: A pi extension that adds a /for prompt-loop with $each insertion

https://pi.dev/packages/pi-for-each
1•jejay•41m ago•0 comments

MSE-GLM – A Deterministic Zero-Weight Graph Language Model

https://github.com/fodokidza/mse_glm
1•clifffodokidza•41m ago•0 comments

Obsidian stores notes privately on your device

https://obsidian.md/
2•doener•45m ago•0 comments

Show HN: The Hanoi Tree

https://avl-games.com/
1•berardino•45m ago•2 comments

Trump pushes UN 'free speech' declaration in veiled attack on EU tech regulation

https://www.politico.eu/article/trump-administration-will-push-un-free-speech-declaration-that-ta...
3•thm•48m ago•0 comments

Make every row and column a group of three

https://sixfold.pwheslop.com
1•michaelbrooks•51m ago•1 comments

Java was a three-day hotfix away from dying horribly on stage

https://www.theregister.com/devops/2026/07/18/java-was-a-three-day-hotfix-away-from-dying-horribl...
1•beardyw•52m ago•0 comments

Write with Maximum Effort

https://petegleeson.com/blog/write-with-maximum-effort/
2•petegleeson•59m ago•0 comments

GEMM Performance Measurement Methodology Guidelines

https://docs.nvidia.com/cutlass/latest/media/docs/cpp/gemm_performance_measurement_methodology_gu...
1•matt_d•1h ago•0 comments

Faster Algorithms for Structured Matrix Multiplication via Flip Graph Search

https://dl.acm.org/doi/10.1145/3815436.3815455
1•matt_d•1h ago•0 comments

International Math Olympiad 2026 Results

https://www.imo2026.com/Results/Individual_Results.htm
2•pykello•1h ago•0 comments

I'm Done with Mullvad

https://moonwriting.blog/i-m-done-with-mullvad
25•lylo•1h ago•35 comments

Vibecoded Scheme Implementation

https://kaappi-lang.org/
1•baijum•1h ago•0 comments

Nolan's Odyssey – A technical analysis by a nitpicky Classics student

https://earlrambles.pagecord.com/nolans-odyssey-a-very-technical-analysis-by-a-very-nitpicky-clas...
4•lylo•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?