frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Juakali: a datalayer to build artificial general engineer

https://4dlab.xyz/juakali/
1•m_2018•6m ago•0 comments

A $40M Gold Heist Risks Exposing CIA's Top-Secret Spy Programs

https://www.wsj.com/politics/national-security/a-40-million-gold-heist-risks-exposing-cias-top-se...
1•otherjason•10m ago•0 comments

Klue OAuth breach victim list grows as Icarus hackers claim attack

https://www.bleepingcomputer.com/news/security/klue-oauth-breach-victim-list-grows-as-icarus-hack...
2•parable•14m ago•0 comments

Why People Ditch Smartwatches for Something Simpler

https://www.engadget.com/2197565/reasons-why-people-ditch-smartwatches-something-simpler/
1•NordStreamYacht•16m ago•1 comments

Forked CozoDB to give agents cognitive primitives

1•shanrizvi•16m ago•0 comments

Clear – Intent-First Agentic Development Language

https://sahin.io/clear/
1•giuliomagnifico•19m ago•0 comments

Compound Eye

https://en.wikipedia.org/wiki/Compound_eye
1•o4c•20m ago•0 comments

The Future Is ClaudeVM

https://jperla.com/blog/the-future-is-claudevm
1•satvikpendem•21m ago•0 comments

Researchers drop checkm8-style BootROM exploit for A12 and A13 iPhones

https://www.theregister.com/security/2026/06/19/researchers-drop-checkm8-style-bootrom-exploit-fo...
1•Timofeibu•23m ago•0 comments

Breadcrumbs

https://map.simonsarris.com/p/breadcrumbs
1•simonsarris•23m ago•0 comments

Dementia Risk After Recombinant Herpes Zoster Vaccination in Older Adults

https://www.acpjournals.org/doi/10.7326/ANNALS-25-04689
1•atombender•25m ago•0 comments

Thermodynamic Measure of Intelligence

https://arxiv.org/abs/2606.20231
1•sbulaev•26m ago•0 comments

Rethinking Modularity in Ruby Applications

https://noteflakes.com/articles/2026-06-18-syntropy-modules
2•thunderbong•29m ago•0 comments

Ming Yang Unveils Next-Gen 50 MW Floating Wind Turbine

https://en.myse.com.cn/news/info.aspx?itemid=2534
1•thelastgallon•30m ago•1 comments

XLibre XServer 25.2.0 Released

https://github.com/X11Libre/xserver/wiki/XLibre-XServer-25.2-Changes
15•calvinmorrison•39m ago•12 comments

Cyberdecks, going analog, and convivial technology

https://blog.hydroponictrash.solar/cyberdecks-going-analog-and-convivial-technology/
1•akkartik•39m ago•0 comments

Secretive Wall Street Powerhouse Jane Street Seizes the AI Spotlight

https://www.wsj.com/tech/ai/jane-street-ai-wall-street-bdfcc81a
1•pondsider•43m ago•0 comments

Brain-computer interface enables independent communication for man with ALS

https://health.ucdavis.edu/news/headlines/brain-computer-interface-enables-independent-accurate-c...
1•gmays•45m ago•0 comments

Diffusion‑based LLMs generate many parallel tokens rather than one‑by‑one

https://www.inceptionlabs.ai/
1•binyu•48m ago•0 comments

Painting a Landscape with Mathematics [video]

https://www.youtube.com/watch?v=BFld4EBO2RE
1•soupspaces•51m ago•0 comments

Show HN: Vxpix – $50 lifetime screenshot API, URL to image in <1s

https://tool.vxpix.com/
1•vxpix•1h ago•0 comments

Show HN: Schemic – your database schema, in the Zod API you know

https://schemic.dev/
1•msanchezdev•1h ago•0 comments

Scientists warn 'Godzilla' El Niño could intensify climate impacts worldwide

https://www.npr.org/2026/06/17/nx-s1-5860821/el-nino-peru-climate
1•rolph•1h ago•1 comments

Show HN: Muninn - 8 Security scanners in one GitHub Action

https://github.com/skaldlab/muninn
1•sg0nzalez83•1h ago•0 comments

Historic Firsts – a daily game about ranking firsts in history

https://playhistoricfirsts.com/
1•jeremyfrancis87•1h ago•0 comments

Gizmodo compromised, serving ClickFix malware capchas

https://gizmodo.com/io9
5•radley•1h ago•1 comments

show hn: Turn server photos into editable rack templates (experimental)

https://react-networks-lib.rackout.net/asset-designer
1•matt-p•1h ago•0 comments

The Standard Model from the octonions on a hyperbolic 24-cell lattice

https://zenodo.org/records/20768426
2•lancejpollard•1h ago•0 comments

Wave Equation with Computable Initial Data and Solution Is Nowhere Computable

https://dl.acm.org/doi/abs/10.1002/malq.19970430406
2•measurablefunc•1h ago•0 comments

MojiMoshi – create an AI agent that lives in Telegram or Line

https://mojimoshi.com/
1•xsirix•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?