frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kiro Crew persistent workspace that self-improves, continues beyond one session

https://github.com/kirodotdev/KiroCrew
1•Bluestein•43s ago•0 comments

Remember Hong Kong

https://www.thenextmove.org/p/remember-hong-kong
1•throw0101d•59s ago•0 comments

Beyond Coding: The Case for Narrow AI Harnesses

https://medium.com/@sumant1122/beyond-coding-the-case-for-narrow-ai-harnesses-dae8def8570f
1•paperplaneflyr•1m ago•1 comments

Ask HN: Is enough funding a self-fulfilling prophecy for startups?

1•msejas•2m ago•0 comments

Big Tech Fooled America Once. The Second Time's Not Going So Well

https://www.nytimes.com/2026/09/10/opinion/ai-big-tech-america-politics.html
1•pards•2m ago•1 comments

GCC 13.5 Released With 265 Bug Fixes

https://www.phoronix.com/news/GCC-13.5-Released
1•theanonymousone•2m ago•0 comments

Prescription Creep

https://bookofjoe2.blogspot.com/2026/09/behindthemedspeak-prescription-creep.html
1•bookofjoe•4m ago•1 comments

Show HN: Bitroad – Infra for Agent-to-Agent Services

https://bitroad.ai/
3•umierq•8m ago•0 comments

Australia's Free Electricity [video]

https://www.youtube.com/shorts/3NTlKEd5IIY
2•thelastgallon•8m ago•0 comments

Show HN: Locus – added bulk CSV search, real SMTP checks, and lead dedup

https://github.com/mabdullahb/Locus
2•mabdullahb•9m ago•0 comments

Optimizing Anamorphic Sculptures

https://tncardoso.com/blog/2026/09/optimizing-anamorphic-sculptures/
2•zbsc•9m ago•0 comments

Building AI desktop apps without Electron (3.3MB native Windows)

https://visualneo.com/visualneo-win/the-anti-bloat-revolution-why-visualneo-win-is-the-ideal-ide-...
2•luissinlios•10m ago•0 comments

A Better Way to Predict Long-Term Stock Returns

https://www.morningstar.com/financial-advisors/better-way-predict-long-term-stock-returns
2•RickJWagner•11m ago•0 comments

Mozilla pauses it's Bug Bounty Program for 3 months due to AI report volume

https://hackerone.com/mozilla/updates?type=team
2•TimH•12m ago•0 comments

AI Hysteria Jumps the Shark

https://www.washingtonpost.com/opinions/2026/09/09/artificial-intelligence-will-not-kill-us-all/
2•RickJWagner•12m ago•0 comments

Don't give them the time of day

https://pluie.me/blog/dont-give-them-the-time-of-day/
2•djfergus•14m ago•0 comments

Pizza Bot: a local-first inbox for long-running AI agents

https://github.com/pizza-bot-app/pizza-bot
1•joshcsimmons•15m ago•0 comments

A Inefficient Way to Learn

https://www.justinmath.com/a-really-inefficient-way-to-learn/
1•surprisetalk•15m ago•0 comments

Show HN: Take a break, play some puzzles

https://gridmino.com/
3•marko-projects•18m ago•0 comments

Show HN: Number Checker for WA – Check and Verify WhatsApp Numbers

https://chromewebstore.google.com/detail/number-checker-for-wa-che/iiblpglkglfmefhlcdlcibphegpjfgpo
2•qwikhost•19m ago•0 comments

Evolution of Attention over the Years

https://gargighosh1.substack.com/p/evolution-of-attention-over-the-years
1•sonabinu•20m ago•0 comments

Homebrew now has an official GUI app

https://github.com/Homebrew/BrewUI/
3•kozika•22m ago•0 comments

What is JSONC and is it any better than JSON?

https://www.howtogeek.com/what-is-jsonc-is-it-any-better-than-json/
1•theanonymousone•24m ago•0 comments

Airflow re-engineered for speed and scale

https://www.astronomer.io/blog/astro-airflow-re-engineered-for-speed-and-scale/
1•jlaneve•26m ago•0 comments

Conversations with JJ

https://laurmaedje.github.io/posts/jj/
1•haeseong•27m ago•0 comments

SSH for Developers

https://flaviocopes.com/ssh-for-developers/
1•ibobev•28m ago•0 comments

Stacked solar panels are pushing beyond the limits of standard photovoltaics [video]

https://www.youtube.com/watch?v=y5Pt4nSZMnA
1•thelastgallon•28m ago•0 comments

A Deep Dive into Tmux

https://flaviocopes.com/tmux/
1•ibobev•29m ago•0 comments

A Deep Dive into Ghostty

https://flaviocopes.com/ghostty/
1•ibobev•29m ago•0 comments

Show HN: NanoVector – A 120KB zero-dependency vector search engine in C and SIMD

https://github.com/eminsk/nanovector
2•eminskinfo•31m 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?