frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bill Gates Says Trump Is Wrong to Hold Out Against AI Safeguards

https://www.bloomberg.com/news/articles/2026-09-27/bill-gates-says-trump-is-wrong-to-hold-out-aga...
1•Betelbuddy•10s ago•0 comments

Trump and Anthropic CEO Dario Amodei Set for White House Dinner

https://www.wsj.com/tech/ai/trump-and-anthropic-ceo-dario-amodei-set-for-white-house-dinner-32c2d0ab
1•mudil•50s ago•0 comments

Oliver Beats ClickHouse

https://oliverdb.ai/blog/244-queries.html
1•pnr-consulting•1m ago•0 comments

BLBX-lang alpha (black box)

https://github.com/ikodane842/blbx-lang/releases/tag/v0.1.0
1•ikodane•1m ago•0 comments

Open-Source E2E FHE Implementation for Privacy-Preserving Llama 3 8B Inference

https://arxiv.org/abs/2609.12378
1•simonpure•1m ago•0 comments

Anthropic CEO Amodei set to meet with Trump

https://www.cnbc.com/2026/09/27/dario-amodei-set-to-have-dinner-with-trump-after-missing-state-di...
1•Betelbuddy•2m ago•0 comments

HiFinder, a map for outdoor spots that never sends photos to a third party

https://hifinder.net/age/
1•animepuika•2m ago•0 comments

Debt-hungry AI companies face increased risk as bond yields spike

https://www.cnbc.com/2026/09/27/debt-hungry-data-center-companies-increased-risk-bond-yields-spik...
1•Betelbuddy•3m ago•0 comments

Allegations of US interference in Quebec election

https://globalnews.ca/news/12073854/quebec-election-u-s-interference/
2•Teever•3m ago•0 comments

Show HN: Kernal Fit – how I lost weight working IT without a gym

https://apps.adrenaline.design/kernalfit/
1•dkoepke65•5m ago•0 comments

Show HN: Cartopolis, interactive globe-sized 3D world

https://code.garage44.eu/jeroen/cartopolis
1•jvanveen•6m ago•0 comments

Luarocks.org remote code execution exploit

https://vhyrro.neorg.org/posts/critical-luarocks-exploit-cve/
3•cupcakerob•7m ago•0 comments

Booted up in 1993, this server still runs – but not for much longer (2017)

https://www.computerworld.com/article/1673071/booted-up-in-1993-this-server-still-runs-but-not-fo...
2•doener•7m ago•0 comments

Walmart says it's not using personal information to set prices

https://apnews.com/article/walmart-pricing-dynamic-pricing-1488b3614058c9452426c0e2e656f653
2•bradleyankrom•7m ago•0 comments

When did Google get so f-ing weird?

https://sancho.bearblog.dev/google-weird/
2•sancho-panza•8m ago•0 comments

The largest privately owned laser just turned on

https://techcrunch.com/2026/06/03/the-worlds-largest-privately-owned-laser-just-turned-on/
2•ianrahman•8m ago•0 comments

A year of hourly weather drawn as the iris of an eye

https://iris.experiai.com/
1•diegotogni•12m ago•0 comments

Montessori Education

https://en.wikipedia.org/wiki/Montessori_education
1•simonebrunozzi•14m ago•0 comments

Stake data breach exposes customer details after hack at partner DriveWealth

https://www.news.com.au/technology/online/hacking/stake-data-breach-exposes-customer-details-afte...
1•mooreds•15m ago•0 comments

Have an LLC

https://zachholman.com/posts/you-should-have-an-llc
1•mlex•16m ago•0 comments

A crypto sentiment API that AI agents pay for autonomously (x402 protocol)

https://crypto-sentiment-x402.onrender.com/sentiment/BTC
2•Chekka•17m ago•0 comments

Self-Hosting on the Dark Web

https://david.alvarezrosa.com/posts/self-hosting-on-the-dark-web/
1•mooreds•17m ago•0 comments

Why Copy and Paste Still Feels Wrong on a Phone

https://medium.com/ai-widgets/why-copy-and-paste-still-feels-wrong-on-a-phone-cef6e2d4efd4
1•azhenley•17m ago•0 comments

Design Decision: Technical Debt in BillaBear

https://iain.rocks/blog/technical-debt-in-billabear
1•mooreds•18m ago•0 comments

My first time in Stockholm (thanks, YC)

https://domelian.substack.com/p/my-first-time-in-stockholm-thanks
1•dichik•21m ago•1 comments

Oil Slips as Iran Diplomacy Sparks Fresh Hopes for a Market Reset

https://medium.com/@d02514047/oil-slips-as-iran-diplomacy-sparks-fresh-hopes-for-a-market-reset-4...
1•joeymabia1•25m ago•2 comments

Preface – Home Manager Manual

https://nix-community.github.io/home-manager/
1•abdelhousni•25m ago•0 comments

Introduction – Act – User Guide – Manual – Docs – Documentation

https://nektosact.com/introduction.html
1•abdelhousni•27m ago•0 comments

Show HN: An AI wedding concierge I built and ran at my own 300-person wedding

https://ai-do.io/demo
1•aido_wedding•30m ago•0 comments

US push to flood Balkans with American gas sparks concerns in Brussels

https://www.politico.eu/article/us-push-to-flood-balkans-with-american-gas-sparks-concerns-in-bru...
2•leonidasrup•32m 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?