frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Who made Златенция? Throw steps at me. Or invite me. Pls

1•iloveurcelsnuf•1m ago•0 comments

Modern Developer Tools as Attack Surfaces: Lessons from Shai-Hulud

https://sitezwin.com/posts/2025-11-29-sha-hulud-the-second-coming-encouter/
1•meel-hd•8m ago•0 comments

Damage at Baikonur after Soyuz launch: Russia can't send people to space

https://unn.ua/en/news/damage-at-baikonur-after-soyuz-launch-russia-temporarily-lost-the-ability-...
1•cryptoz•10m ago•0 comments

Intelligence is too high-dimensional for any low-dimensional narrative

https://mathstodon.xyz/@tao/115620261936846090
1•gmays•12m ago•1 comments

20/80

https://blog.greg.technology/2025/11/27/2080.html
1•gregsadetsky•21m ago•0 comments

The Supreme Court Is About to Hear a Case That Could Rewrite Internet Access

https://slate.com/news-and-politics/2025/11/supreme-court-sony-cox-copryight-internet-case.html
3•anthonyu•26m ago•1 comments

Show HN: Generate Sheet Music Using AI (Scribe)

https://scribe.rifflabs.io
1•hwittenborn•27m ago•0 comments

Tesla looks to reset strategy amid sluggish India sales

https://www.bbc.com/news/articles/cdrn00pn1m7o
1•breve•33m ago•0 comments

Chumbox (Advertising)

https://en.wikipedia.org/wiki/Chumbox
1•rickcarlino•33m ago•0 comments

Large Type Pieces.txt

https://github.com/PhMajerus/Documents/blob/main/HowTos/HowTo%20Large%20Type%20Pieces.txt
1•cardamomo•34m ago•0 comments

Every mathematician has only a few tricks

https://mathoverflow.net/questions/363119/every-mathematician-has-only-a-few-tricks
2•nill0•36m ago•0 comments

Plotting a Northrop B2 Spirit

https://youtu.be/TSQWZF4zdN4
1•russelltaylor05•39m ago•0 comments

The Risky Movement to Make America Nuclear Again

https://nuclear-news.net/2025/11/04/1-a-the-risky-movement-to-make-america-nuclear-again/
1•pmoriarty•41m ago•0 comments

Rocketwerkz CEO says frameworks, not engines, are the future of game development

https://www.gamedeveloper.com/programming/rocketwerkz-ceo-predicts-frameworks-not-engines-will-be...
3•jibe•43m ago•0 comments

Mongolian Script

https://en.wikipedia.org/wiki/Mongolian_script
2•Razengan•48m ago•0 comments

The Impossible Prompt That's Easy for Humans

https://teodordyakov.github.io/the-impossible-promt/
2•ssdsa•54m ago•1 comments

Why GitHub's War on Toasts Is Bad News for Accessibility

https://medium.com/offmessageorg/why-githubs-war-on-toasts-is-bad-news-for-accessibility-a88ddbad...
2•bochoh•56m ago•0 comments

Beijing's prison silences Chinese journalist and lawyer of Covid19 in Wuhan fame

https://www.bushcenter.org/publications/the-struggle-for-freedom-beijings-revolving-prison-doors-...
3•737min•56m ago•0 comments

Show HN: MCP for finding the better NPM dependencies

https://web-production-0200a.up.railway.app
1•jsafaiyeh•1h ago•0 comments

Show HN: Native macOS timeout (Rust) – handles system sleep, no coreutils

https://github.com/denispol/darwin-timeout
1•denispol•1h ago•0 comments

Show HN: TimeProof – Timelapse your computer based workday! (MacOS)

https://apps.apple.com/us/app/timeproof/id6751671026?mt=12
1•Viper117•1h ago•1 comments

Infosys co-founder once again calls for longer than 70-hour weeks – and no, he's

https://www.techradar.com/pro/infosys-co-founder-once-again-calls-for-longer-than-70-hour-weeks-a...
12•sys_64738•1h ago•1 comments

Tesla struggles to course correct from sales skid

https://www.reuters.com/business/autos-transportation/tesla-struggles-course-correct-sales-skid-2...
4•breve•1h ago•1 comments

Show HN: Watsn.ai – Bullshit Detector

https://watsn.ai/
1•flx1012•1h ago•0 comments

Walrus: Distributed message queue written in Rust

1•peterjkl•1h ago•1 comments

How Workplace Fashion Has Changed over the Decades

https://www.wsj.com/style/fashion/office-attire-changes-history-e6e9147b
2•fortran77•1h ago•1 comments

Show HN: GitHub Activity Analytics Powered by ClickHouse

https://velocity.clickhouse.com/#org=ClickHouse&metric=all_activity&range=all&grouping=auto&alexe...
1•saisrirampur•1h ago•1 comments

AI satisfies formal structural subjectivity in the S₀ protocol

https://github.com/jengbeng/ai-structural-subject
1•jengbeng•1h ago•1 comments

Google CEO Pushes 'Vibe Coding' – But Real Developers Know It's Not Magic

https://www.interviewquery.com/p/ai-coding-vibe-coding-explained
2•birdculture•1h ago•0 comments

OBR calls in cyber expert over botched release of Budget analysis

https://www.bbc.com/news/articles/cgmn991pz9jo
1•CharlesW•1h ago•0 comments
Open in hackernews

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

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