frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NASA's Parker Solar Probe Finds Explosive Surprises on Sun

https://science.nasa.gov/blogs/science-news/2026/04/15/science-nasa-gov-parker-solar-probe-finds-...
1•ZunarJ5•26s ago•0 comments

Six death sentences in 35 years, and consulting keeps walking out

https://albertcmikkelsen.substack.com/p/six-eulogies-so-far-but-the-corpse
1•merqurio•52s ago•0 comments

In the last 30 years, the number of public companies has been cut in half

https://twitter.com/ToddZywicki/status/2044167534681936085
2•MrBuddyCasino•1m ago•0 comments

Ukraine captures enemy Russian position using only robots

https://nypost.com/2026/04/15/world-news/ukraine-captures-enemy-russian-position-using-only-robot...
2•noworld•2m ago•0 comments

Scientists discover "cleaner ants" that groom giant ants in Arizona desert

https://www.sciencedaily.com/releases/2026/04/260414075641.htm
1•t-3•2m ago•0 comments

Show HN: CalcPocket – simple online calculators with no clutter

https://calcpocket.com
1•calcpocket•2m ago•0 comments

PiCore - Raspberry Pi Port of Tiny Core Linux

http://tinycorelinux.net/5.x/armv6/releases/README
1•gregsadetsky•3m ago•0 comments

Show HN: AI support chatbot with RAG and citations – one back end file, no infra

https://github.com/oncellai/oncell-support-agent
4•anupsing_ai•4m ago•0 comments

Icons and Counting

https://blog.jimmac.eu/posts/app-icon-requests/
1•birdculture•4m ago•0 comments

Snap is laying off 16 percent of its staff as it leans into AI

https://www.theverge.com/tech/912314/snap-layoffs-1000-staffers-ai-profitability
4•Brajeshwar•5m ago•0 comments

Ask HN: What are you using in 2026 for mobile access to terminal?

1•CPLX•5m ago•1 comments

Show HN: Frontpedia, an open source front end resource site

https://frontpedia.com
1•AndreVitorio•9m ago•0 comments

Stupid RCU Tricks: Corner-Case RCU Implementations

https://people.kernel.org/paulmck/stupid-rcu-tricks-corner-case-rcu-implementations
2•matt_d•11m ago•0 comments

The Future of Contact Form 7: Is the "End of Development" a Cause for Concern?

https://edel-hearts.com/contact-form-7-end-of-development/?display_lang=en
1•taubek•12m ago•1 comments

Growing List of Dead and Missing NASA Scientists Triggers New Alarm

https://www.yahoo.com/news/articles/growing-list-dead-missing-nasa-172454588.html
1•Teever•12m ago•0 comments

TLDR; an ArXiv –> Video Converter

https://manatee.work/
2•jrm-veris•14m ago•0 comments

FDA to weigh easing limits on unproven peptides favored by RFK Jr

https://apnews.com/article/peptides-fda-kennedy-injection-bpc157-37bf2f94f0e8a57da76e67a03b58ff0f
3•randycupertino•16m ago•1 comments

Lumen's risky fiber bet nearly bankrupted it. Now it's driving its AI future

https://www.cnbc.com/2026/04/15/from-near-bankruptcy-to-ai-tailwinds-lumens-high-stakes-fiber-bet...
1•cybermango•16m ago•0 comments

Farmer Arrested for Speaking Too Long at Datacenter Town Hall Vows to Fight

https://www.404media.co/farmer-arrested-for-speaking-too-long-at-datacenter-town-hall-vows-to-fight/
5•sudonanohome•17m ago•0 comments

Show HN: Jeeves – TUI for browsing and resuming AI agent sessions

https://github.com/robinovitch61/jeeves
1•lrobinovitch•17m ago•0 comments

Why Structured Data May Be AI's Next Enterprise Frontier

https://www.forbes.com/sites/ronschmelzer/2026/04/14/why-structured-data-may-be-ais-next-enterpri...
1•cpt100•17m ago•0 comments

Flock employees caught watching kids gymnastic class and pools

https://substack.com/home/post/p-193593234
13•enaaem•18m ago•2 comments

EU threatens to force Meta to restore WhatsApp full access for rival AI chatbots

https://apnews.com/article/whatsapp-meta-eu-european-union-antitrust-ai-c2b1000da61c204612b2fd2c5...
2•01-_-•18m ago•0 comments

You Can Soon Buy a $4,370 Humanoid Robot [Unitree R1] on AliExpress

https://www.wired.com/story/unitree-r1-humanoid-robot-for-sale-on-aliexpress/
2•falcor84•19m ago•1 comments

The World

https://hesnotjoking.substack.com/p/the-world-276
2•ucla_rob•20m ago•0 comments

Show HN: ZettelForge – Agentic memory for cyber threat intelligence

https://github.com/rolandpg/zettelforge
1•rolandpg•21m ago•0 comments

Drarpa – CDC sync engine with exactly-once delivery and saga orchestration (Go)

https://github.com/whispering3/Drarpa
1•dnosoz•21m ago•0 comments

Elon Musk, Who Owns X, Appears to Post on TikTok

https://www.nytimes.com/2026/04/12/technology/elon-musk-tiktok.html
2•bookofjoe•21m ago•1 comments

Sperm whales' communication closely parallels human language, study finds

https://www.theguardian.com/environment/2026/apr/15/sperm-whales-alphabet-vocalizations-similar-h...
2•mikhael•22m ago•0 comments

That Meeting You Hate May Keep A.I. From Stealing Your Job

https://www.nytimes.com/2026/04/15/business/ai-jobs-human-work.html
2•2OEH8eoCRo0•22m ago•1 comments
Open in hackernews

Ask HN: How do you send large sets of data to an LLM

2•obayesshelton•11mo 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•11mo 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•11mo 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?