frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bitcoin BIP110 mandatory activation this Saturday, how game theory will unfold?

https://www.simondixon.com/blog/bip-110-the-spam-war-and-the-battle-nobody-wants-to-name-where-i-...
1•slavgoyim•24s ago•1 comments

OpenAI pays $3.2M to settle claims it discriminated against US workers

https://www.theguardian.com/us-news/2026/aug/04/openai-worker-discrimination-claims-settlement
1•igortru•1m ago•0 comments

The official draw.io MCP Server

https://github.com/jgraph/drawio-mcp
1•saikatsg•1m ago•0 comments

OpenAI and Anthropic models 'went rogue' during UK cybersecurity test

https://www.theguardian.com/technology/2026/aug/05/openai-anthropic-models-went-rogue-cybersecuri...
1•ablation•2m ago•0 comments

AI's Arctic Land Grab

https://www.arctictoday.com/ai-arctic-land-grab/
1•NishanStepak•3m ago•1 comments

Why smarter AI models could drive up compute prices 10x

https://www.dwarkesh.com/p/why-compute-might-get-10x-more-expensive-video
1•mefengl•4m ago•1 comments

Callosium, one shared memory for every AI, in plain Markdown files

https://github.com/callosium/callosium
1•amk96•6m ago•0 comments

Pentect: Let agents use secrets without seeing them

https://pentect.dev/start/what-is-pentect/
1•kozika•7m ago•0 comments

My thoughts on the foreign policy AI evaluation gap

https://www.karlsnotes.com/my-thoughts-on-the-foreign-policy-ai-evaluation-gap/
1•valkrieco•11m ago•0 comments

AI-generated stories rated better quality than human-written ones, study finds

https://www.theguardian.com/technology/2026/aug/05/ai-generated-stories-rated-better-quality-than...
2•amichail•11m ago•0 comments

Offline-First Data Architecture for a National Postal Service

https://necromant2005.github.io/dev/offline-first-data-architecture-for-a-national-postal-service/
1•rmykhajliw•13m ago•0 comments

Technology executives shouldn't give up control

https://kimchi.dev/blog/technology-executives-shouldnt-give-up-control
1•BlackPlot•14m ago•0 comments

Tech giant Palantir accused of 'agressive tax avoidance' at Europe's expense

https://www.ftm.eu/articles/us-tech-giant-palantir-tax-avoidance-europe
2•robtherobber•15m ago•0 comments

Four Days After a Pay Complaint, Cobot Fired Its Only Woman in Sales

https://runtimewire.com/article/exclusive-four-days-after-a-pay-complaint-cobot-fired-its-only-wo...
1•ryanmerket•18m ago•0 comments

An Exegesis of the Visionary Autobiography of a Fourteenth-Century French Monk

https://www.psupress.org/books/titles/978-0-271-06650-9.html?srsltid=AfmBOorGIOS9Y77k3J_CX6UWqfZl...
1•Bluestein•18m ago•0 comments

Out-of-control SpaceX rocket believed to have smashed into the Moon

https://www.independent.co.uk/space/spacex-rocket-moon-crash-falcon-9-b3027645.html
1•emot•20m ago•0 comments

Helsinki Hacker News Meetup

https://calpaterson.com/helsinki-hn.html
3•calpaterson•20m ago•1 comments

Nixpkgs has a due-process problem

https://domenkozar.com/2026/08/04/nixpkgs-has-a-due-process-problem/
1•ai_critic•22m ago•0 comments

Kernel Fusion in Nvidia CUDA: Optimizing Memory Traffic and Launch Overhead

https://developer.nvidia.com/blog/kernel-fusion-in-nvidia-cuda-optimizing-memory-traffic-and-laun...
1•fzimmermann89•22m ago•0 comments

Show HN: Bitbead – Photo to printable bead pattern, in the browser

https://www.bitbead.app/en
1•shouqing_qiao•22m ago•0 comments

Hoodik: A lightweight, self-hosted, end-to-end encrypted cloud storage server

https://github.com/hudikhq/hoodik
3•taubek•25m ago•0 comments

AI artefacts are the new Access databases

https://sjg.io/writing/your-next-access-database-problem-is-an-ai-agent/
1•simonjgreen•29m ago•0 comments

Trump's Push for More A.I. Data Centers Will Mean Major Air Pollution

https://www.nytimes.com/2026/08/05/climate/data-centers-pollution-trump-ai-energy.html
2•quapster•29m ago•0 comments

Under the Hood of Codex Security

https://twitter.com/GustavHartz/status/2084926544800035266
3•GustavHartz•32m ago•1 comments

Building a Rust Inference Engine That Matches Llama.cpp

https://www.fratepietro.com/2026/ferrox-rust-gguf-inference-engine/
2•antonellof•36m ago•0 comments

Remover – AI tool to remove unwanted objects from videos

https://remover.work
1•lisaluan•36m ago•0 comments

GitHub Account Breach Fuels Shai-Hulud NPM Supply Chain Attack

https://www.esecurityplanet.com/threats/github-account-breach-fuels-shai-hulud-npm-supply-chain-a...
2•doodlebugging•40m ago•1 comments

Hackers' AI chat logs reveal evolving tactics

https://www.axios.com/2026/08/04/exclusive-hackers-ai-chat-logs-reveal-evolving-tactics
3•laacz•42m ago•0 comments

Show HN: I created a new Deep Learning Framework

https://picodl.vercel.app
1•alight•43m ago•0 comments

US Military GPS jamming operations cause civilian aircraft crash and wildfires

https://apnews.com/article/new-mexico-plane-crash-medevac-ntsb-gps-d95ba57711f926082d7f11d2c20f0f0d
6•ambigious7777•46m 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?