frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Now on the American Road: Bulletproof Cars

https://www.nytimes.com/2026/07/20/style/armored-cars-bulletproof-american-drivers.html
1•cdrnsf•4m ago•0 comments

Show HN: Relay – a self-hosted LLM gateway with eval-gated routing

https://github.com/llmrelay/relay
1•olopadef•4m ago•0 comments

The Fedora project grapples with change

https://lwn.net/SubscriberLink/1081557/cde56e450fe4bf10/
1•chmaynard•4m ago•0 comments

Jellyfin founder Andrew leaves team

https://forum.jellyfin.org/t-project-leadership-changes
2•swat535•6m ago•0 comments

Is Open Weight AI Decelerationist?

https://fragileequilibrium.substack.com/p/is-open-weight-ai-decelerationist
2•brandoncarl•7m ago•0 comments

BI 303470 a GLP-1/GIP/NPY2 triple agonist in Phase 2 What the heck is an NPY2?

https://xcancel.com/i/article/2079304056548495593
1•hnburnsy•8m ago•0 comments

Internet Freedom is Here: FreeSocks v2

https://unredacted.org/blog/2026/07/internet-freedom-is-here-freesocks-v2/
1•lunarthegrey•10m ago•0 comments

The Crowley-Atlantic Cadence and Celebrity Success

https://drive.google.com/file/d/1A2rk86a3AX62WejHwDb1I-mk7k467N8d/view
1•nvader•12m ago•0 comments

Vibe-coded a simplistic multiplayer game

https://eldermyr-production.up.railway.app/
1•josiahturnq•12m ago•1 comments

AI consciousness is a red herring in the safety debate

https://www.theguardian.com/technology/2026/jan/06/ai-consciousness-is-a-red-herring-in-the-safet...
3•teleforce•13m ago•0 comments

Cursor, Codex, Gemini CLI, Antigravity hit by sandbox escapes

https://www.bleepingcomputer.com/news/security/cursor-codex-gemini-cli-antigravity-hit-by-sandbox...
2•sbulaev•15m ago•0 comments

The biggest schools training America's doctors are in the Caribbean

https://www.economist.com/the-americas/2026/07/16/the-biggest-schools-training-americas-doctors-a...
1•bookofjoe•15m ago•1 comments

Americans hate AI so much that politicians are losing their jobs over it

https://fortune.com/2026/07/14/voters-ai-backlash-politicians-lose-seats/
2•arto•16m ago•0 comments

What I got wrong about FIRE

https://www.businessinsider.com/fire-movement-followers-modern-work-hustle-culture-solution-2026-7
1•petethomas•16m ago•0 comments

Carmakers Don't Think They Should Have to Fix Blindingly Bright Headlights

https://www.thedrive.com/news/carmakers-dont-think-they-should-have-to-fix-blindingly-bright-head...
1•randycupertino•20m ago•0 comments

Opaque, Interoperable Passkey Records (and a Go API)

https://words.filippo.io/passkey-record/
2•gnabgib•21m ago•0 comments

Gavin Newsom's return-to-office rules are stricter than many states

https://calmatters.org/politics/2026/07/newsom-return-to-office-states/
1•cdrnsf•21m ago•0 comments

Colibrì proof-of-concept gains frontier-level 1.5-TB AI model

https://www.tomshardware.com/tech-industry/artificial-intelligence/colibri-proof-of-concept-gains...
1•smoyer•23m ago•0 comments

Show HN: A Job Board for European Defence Companies

https://www.defencejobseu.com/
1•Collusus96•23m ago•0 comments

Throw, Result, or Neither?

https://www.architecture-weekly.com/p/throw-result-or-neither
3•birdculture•24m ago•0 comments

I asked Claude one question and accidentally built an intervention

https://claudeholic.me/
1•jgalego•24m ago•0 comments

Show HN: Internet Speed Atlas, a browser-measured ranking of 119 countries

https://speedof.me/internet-speed/
2•lastmile•26m ago•1 comments

Natural raises $30M to reinvent payments for AI agents – and take on Stripe

https://techcrunch.com/2026/07/20/natural-raises-30m-to-reinvent-payments-for-ai-agents-and-take-...
1•simonpure•26m ago•0 comments

Extreme Value Theory: Looking for the unusual (2021)

https://www.lancaster.ac.uk/stor-i-student-sites/owen-li/2021/02/14/extreme-value-theory-looking-...
1•gone35•32m ago•0 comments

Claude Code now has a screen reader mode

https://twitter.com/i/status/2079315549163778366
1•Hussain04•34m ago•0 comments

Is there a global loneliness epidemic? Research paints a complex picture

https://theconversation.com/is-there-really-a-global-loneliness-epidemic-research-reveals-a-more-...
4•billybuckwheat•36m ago•0 comments

InvisiCaps: The Fil-C Capability Model

https://fil-c.org/invisicaps
2•birdculture•37m ago•1 comments

Anecdotes Everywhere, Evidence Almost Nowhere (The State of AI in Mid-2026)

https://secondthoughts.ai/p/impact-of-ai
1•Kotlopou•42m ago•0 comments

The Trust Ceiling: The invisible limit on what AI is allowed to do

https://williamtp.substack.com/p/the-ai-trust-ceiling
1•williamtp•44m ago•1 comments

The AI Industry Just Got What It Deserved [video]

https://www.youtube.com/watch?v=9nUmVktlwvA
1•Jazgot•47m 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?