frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Kimi K3 Is Now Live on Canopy Wave

https://canopywave.com/models/kimi-k3
1•Rossmax•1m ago•0 comments

Show HN: WhimPop – A macOS menu that pops up under your cursor

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

Show HN: Turo – Tagalog for point, saves Tokens by pointing instead of talking

https://github.com/kdeps/turo
1•jjuliano•2m ago•0 comments

Sodium restriction and insulin resistance: A review of 23 clinical trials

https://journalofmetabolichealth.org/index.php/jmh/article/view/78/242
1•sublinear•6m ago•0 comments

Microsoft Sam starts his car

https://www.youtube.com/watch?v=EQ1LbeaU_LI
1•nazgulsenpai•8m ago•0 comments

Exercises in benchmarking and evals, part 7

https://danluu.com/exercise-7/
1•janvdberg•9m ago•0 comments

Small and mid-sized businesses are managing Android devices without Google

https://www.msn.com/en-xl/news/other/how-small-and-mid-sized-businesses-are-managing-android-devi...
1•erkin_bek•13m ago•0 comments

KDE daemon – the annoying restart is needed to complete update

https://www.dedoimedo.com/computers/kde-system-notification-helper.html
1•coisasdavida•13m ago•1 comments

Shown HN: Mathend – Microsoft Word but less annoying

https://mathend.com
1•muhamsyaddad•16m ago•1 comments

Microsoft unveils AI security tools it says outperform competing platforms

https://arstechnica.com/security/2026/07/microsoft-unveils-ai-security-tools-it-says-outperform-c...
3•joozio•21m ago•0 comments

Final hurrah? Glasgow's cut-price Commonwealth Games fight for survival

https://www.lbc.co.uk/article/anyone-still-care-commonwealth-games-glasgow-opinion-5Hjdf6S_2/
3•austinallegro•22m ago•0 comments

Cracking the code: can AI help us decipher ancient languages?

https://theconversation.com/cracking-the-code-can-ai-help-us-decipher-ancient-languages-288238
2•zeristor•24m ago•0 comments

Open Source Must Be Fun (Or It Will Die)

https://mikemcquaid.com/open-source-must-be-fun-or-it-will-die/
1•robin_reala•24m ago•0 comments

Evals before prompts: building an LLM OCR for KYC

https://blog.nilenso.com/blog/2026/05/18/evals-before-prompts-building-an-llm-ocr-for-kyc/
1•priyangapkini•25m ago•0 comments

Facebook now wants a selfie video of your face, too

https://blog.mega.io/facebook-verified-selfie
2•dotcoma•29m ago•0 comments

Three certificates, one domain, three lost launch days

https://www.certpost.ai/blog/three-certificates-three-lost-launch-days
1•mlmusson•33m ago•0 comments

AI 'tokenmaxxing' fades as workplaces look to cut tech spending

https://apnews.com/article/ai-token-openai-anthropic-corporate-31bb80ac1cd7862d05f6397177d826b1
6•geox•34m ago•1 comments

A Proposal for a Universal Moral Core

https://continuations.com/a-proposal-for-a-universal-moral-core
1•imartin2k•35m ago•0 comments

"Cards as Weapons" by Ricky Jay (1977)

https://archive.org/details/Cards_as_Weapons_-_Ricky_Jay_1977
1•jansan•40m ago•0 comments

Solving Math and Physics Problems You Don't Know How to Solve

http://redsymbol.net/articles/solving-problems-you-dont-know-how-to-solve/
1•ankitg12•40m ago•0 comments

Show HN: AI Usage – Native macOS Menu Bar for Claude Code and Codex Limits

https://github.com/burakgon/ai-usage-menubar
1•burakgon•40m ago•0 comments

News outlet killed story on plagiarism after Cambridge prof hired law firm

https://retractionwatch.com/2026/07/27/cambridge-jason-arday-plagiarism-allegations-times-higher-...
4•Michelangelo11•41m ago•0 comments

Show HN: A Back End You Can Call Directly from React – No API Required

https://linkedrecords.com/getting-started/
1•WolfOliver•42m ago•0 comments

YC Startup School 2026

https://bestmate.io/startup-school-2026
1•harper•45m ago•0 comments

Compass: Fast, local-first knowledge graph for understanding codebases

https://github.com/crabbuild/compass
2•handfuloflight•52m ago•0 comments

Ask HN: How to rewrite `Claude.md` and install the skill for Opus5 and Fable5

3•hyhmrright•54m ago•2 comments

Prompting Claude Opus 5

https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/prompting-claude-opus-5
3•alvis•54m ago•0 comments

How Netanyahu Lost America

https://www.theatlantic.com/ideas/2026/07/bibi-netanyahu-israel-failures-antisemitism/688050/
3•Alien1Being•57m ago•1 comments

We moved wind turbines from China to Sri Lanka [video]

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

GPS Map Camera: Geotag Camera

https://play.google.com/store/apps/details?id=com.gpsmapcamera.photo.timestamp.video.location&hl=...
1•satyampromotion•59m 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?