frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Emoji Museum

https://emojistime.com/en/museum
1•kilroy123•53s ago•0 comments

Secure AI Sandboxes on Kubernetes

https://mitos.run/blog/ai-sandboxes-on-kubernetes
1•stubbi•1m ago•0 comments

Small World – The "Preact" of 3D Web Engines (TypeScript, WebGPU)

https://rottensteiner-stefan.github.io/small-world/
1•DragonZoul•2m ago•0 comments

33434 Scottmanley (1999 FU)

https://ssd.jpl.nasa.gov/tools/sbdb_lookup.html#/?sstr=33434
1•root-parent•4m ago•0 comments

Show HN: AgentWatch – per-client cost tracking for LangChain agents

https://agentwatch-two.vercel.app/
1•hubi8120•5m ago•0 comments

Solar rail could become common in Europe after successful trial in Switzerland

https://www.euronews.com/2026/07/05/italy-could-be-the-next-country-to-build-a-solar-railway-afte...
2•neilfrndes•6m ago•0 comments

Show HN: microide, a 100% vibecoded IDE that LLM agents can drive

https://pablojimenezmateo.github.io/microide/
1•gef3233•6m ago•0 comments

OpenAI-Compatible DeepSeek API – No Chinese Phone Required

https://api.aifreeaistack.com
3•FreeAIStack•9m ago•0 comments

Infuriating Google commercial imagines the founding fathers embracing AI

https://www.theverge.com/ai-artificial-intelligence/961468/google-ai-commercial-founding-fathers-...
2•ilreb•11m ago•0 comments

Morphometrics: Introduction to the Analysis of Shape

https://www.geol.umd.edu/~tholtz/G331/lectures/331biomech.html
2•num42•12m ago•0 comments

Doorways do not always cause forgetting: a multimodal investigation (2021)

https://link.springer.com/article/10.1186/s40359-021-00536-3
2•bookofjoe•12m ago•0 comments

C programmers commit fresh crimes against readability

https://www.theregister.com/offbeat/2026/07/05/c-programmers-commit-fresh-crimes-against-readabil...
2•jjgreen•13m ago•0 comments

Challenging Caveman

https://pi-infected.github.io/token-harness-optimizer-leaderboard/
2•Tokenade•14m ago•1 comments

Female US rower completes historic solo journey from California to Hawaii

https://www.theguardian.com/us-news/2026/jul/04/california-hawaii-rowing-solo-journey
3•dwa3592•14m ago•0 comments

Self-hosted email client with an AI agent, running on Cloudflare Workers

https://github.com/cloudflare/agentic-inbox
2•Brajeshwar•17m ago•0 comments

Building your own electric motor – The Secret Genius of Modern Life(2023)[video]

https://www.youtube.com/watch?v=LoSGSawJCO0
2•thelastgallon•18m ago•0 comments

Hey YouTube WTF Is This?

https://www.youtube.com/watch?v=RIiKGoYXHVs
2•tcp_handshaker•19m ago•0 comments

Blog with AI Auto Poster

2•david3289•21m ago•0 comments

CNN Lite

https://lite.cnn.com
4•empressplay•22m ago•0 comments

My road trip with the do-gooding cactus smugglers

https://economist.com/1843/2026/03/06/my-road-trip-with-the-do-gooding-cactus-smugglers
3•andsoitis•25m ago•0 comments

I built an AI that diagnoses PagerDuty incidents and posts fixes to Slack

https://wjhowland376-code.github.io/Pulse/
2•Pulse-AI•27m ago•0 comments

Solving Sudoku in Pure SQL

https://www.dbpro.app/blog/sudoku-in-pure-sql
2•upmostly•28m ago•0 comments

Need feedback to a simple game I build for my startup regarding PMF

https://www.specky.space/specbench/play
2•fshalaby•28m ago•1 comments

Deterministic Simulation Testing in Go with Synctest

https://guidobattiston.com/posts/dst-go/
2•unyieldingsys•29m ago•0 comments

Solving Santa Claus Puzzle with a Model Checker

https://wyounas.github.io/puzzles/concurrency/2026/01/10/how-to-help-santa-claus-concurrently/
2•simplegeek•31m ago•0 comments

What's YOUT Famuly's Story?

https://markmbello.substack.com/p/welcome-to-our-founding-issue
2•lawsuitllc•31m ago•0 comments

Why do u check my website but dont register

https://www.surgeos.app/
2•yernururu•32m ago•1 comments

AI models should reason, tools should execute (Utilix)

https://www.utilix.tech/
2•negiadventures•35m ago•0 comments

How railway timetables became Unix time

https://parksb.github.io/en/article/39.html
2•parksb•37m ago•0 comments

Tech firms are blaming AI for device and console price rises

https://www.bbc.com/news/articles/cd95k584pzqo
5•geox•38m 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?