frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Zugzwang

https://en.wikipedia.org/wiki/Zugzwang
1•Qem•3m ago•0 comments

If Claude writes the code, what makes me still a developer?

https://betweentheprompts.com/if-claude-writes-the-code/
2•scastiel•6m ago•0 comments

Santa Cruz restaurant changes logo after flurry of negative reviews for AI art

https://www.sfgate.com/food/article/santa-cruz-restaurant-ai-21955920.php
1•randycupertino•7m ago•0 comments

LLMs consistently pick resumes they generate over ones by humans or other models

https://arxiv.org/abs/2509.00462
2•laurex•9m ago•0 comments

Domination: A contrarian view of AI risk (2024)

https://matthewbutterick.com/chron/domination.html
2•vermilingua•18m ago•0 comments

I moved my blog from Jekyll to Emacs Lisp

https://martinsos.com/posts/my-blog-in-elisp
2•Martinsos•20m ago•1 comments

The History of Lipstick

https://www.saturdayeveningpost.com/2026/04/common-threads-the-history-of-lipstick/
1•ohjeez•21m ago•0 comments

Alberta allows windfall oil and gas payments to select ranchers – on public land

https://thenarwhal.ca/alberta-grazing-oil/
3•Teever•23m ago•0 comments

US blockade costs Iran $4.8B, US Navy acting 'sort of like pirates,' Trump says

https://www.jpost.com/middle-east/iran-news/article-894867
2•Levitating•25m ago•2 comments

A preliminary model to establish a digital twin for coffee roasting

https://www.nature.com/articles/s41598-026-43923-9?fromPaywallRec=false
2•bookofjoe•25m ago•0 comments

Show HN: RegularMonk – a web app that helps me use my phone less

https://www.regularmonk.com/hello
1•amit9968•26m ago•0 comments

Apple Faces Lawsuits over AirTag Stalking After Class Action Denied

https://www.macrumors.com/2026/05/01/airtag-stalking-lawsuits-apple/
1•mgh2•26m ago•0 comments

Make Common Sense Common Again

https://nik.art/make-common-sense-common-again/
1•herbertl•28m ago•0 comments

Stackless coroutines for gamedev in ~200 lines of C++

https://vittorioromeo.com/index/blog/sfex_coroutine.html
2•tzury•28m ago•0 comments

Proudly Pathetic

https://craigatallahfrost.com/post/2025/08/17/proudly-pathetic/
1•herbertl•29m ago•0 comments

NASA to increase CLPS contract to support surge of lunar lander missions

https://spacenews.com/nasa-to-increase-value-of-clps-contract-to-support-surge-of-lunar-lander-mi...
2•rbanffy•30m ago•0 comments

America's Expanding Domestic Surveillance

https://www.wsj.com/articles/americas-expanding-domestic-surveillance-08b73187
4•Brajeshwar•35m ago•0 comments

The Fake Hawaii CTO Who Fooled Everyone

https://dallasexpress.com/national/from-vegas-stages-to-official-warnings-the-fake-hawaii-cto-who...
1•greenchair•36m ago•0 comments

Apple Stores Targeted in $16.2M Counterfeit Device Scheme

https://pasadenanow.com/main/pasadena-apple-store-among-locations-targeted-in-16-2-million-counte...
1•kid64•36m ago•0 comments

Docker vs. Podman: Which Containerization Tool Is Right for You – DataCamp

https://www.datacamp.com/blog/docker-vs-podman
1•abdelhousni•39m ago•1 comments

Ask HN:Do people configure Claude Code to use other models

https://openrouter.ai/apps/claude-code
1•ripvanwinkle•39m ago•4 comments

LibreLocal 2026 – Global Meetups Across Six Continents

https://tux.re/forum/viewtopic.php?t=217
1•tuxyz•39m ago•0 comments

We Forgot How to Write

https://www.timwehrle.de/blog/we-forgot-how-to-write/
3•timwehrle•40m ago•1 comments

Sebastian Proactive: a local‑first AI companion that initiates conversations

https://github.com/DaroHacka/proactive-sebastian-ai-companion
1•darohacka•43m ago•0 comments

Chinese AI models are ~8 months behind and falling further behind

https://twitter.com/scaling01/status/2050395242663223751
1•enraged_camel•44m ago•4 comments

Path to Vibe Engineering

https://leandronsp.com/articles/path-to-vibe-engineering
1•leandronsp•44m ago•0 comments

Zig's issue tracker got 3k spam issues in 20 minutes

https://codeberg.org/ziglang/zig/issues
3•qilme•46m ago•2 comments

B.C. researcher taps magic of Dungeons and Dragons to help kids

https://www.cbc.ca/news/canada/british-columbia/dungeons-and-dragons-kids-therapy-neurodivergence...
2•empressplay•46m ago•0 comments

Tim Cook, the interview: Running Apple 'is sort of a lonely job' (2016)

https://www.washingtonpost.com/sf/business/2016/08/13/tim-cook-the-interview-running-apple-is-sor...
1•downbad_•47m ago•3 comments

Here's Looking at Euclid: 3D Paper Models of Oliver Byrne's Euclid's Elements

https://www.helenfriel.com/heres-looking-at-euclid
1•the-mitr•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?