frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Definitive Guide to Functional Programming in Cpp – ACCU 2025 [video]

https://www.youtube.com/watch?v=lvlXgSK03D4
1•olvy0•1m ago•0 comments

Agnus Barbieri's Fast

https://en.wikipedia.org/wiki/Angus_Barbieri%27s_fast
1•rzk•2m ago•0 comments

Scientists find hidden antibiotic 100x stronger against deadly superbugs

https://www.sciencedaily.com/releases/2025/10/251029002855.htm
1•doener•2m ago•0 comments

Cell Nucleus

https://en.wikipedia.org/wiki/Cell_nucleus
1•ugur2nd•3m ago•0 comments

Meta is about to start grading workers on their AI skills

https://www.businessinsider.com/meta-ai-employee-performance-review-overhaul-2025-11
2•pella•7m ago•0 comments

You should still be writing code from your editor

https://github.com/sourcegraph/amp.nvim/pull/28
1•MorehouseJ09•8m ago•2 comments

Wikipedia and the Destruction of Trust [video]

https://www.youtube.com/watch?v=9zi0ogvPfCA
1•mpartel•11m ago•0 comments

Show HN: The Put Monolith – A Minimal AI-Ingestible Ruleset

https://github.com/publicusagetax/PUT-Monolith-v2
1•publicusagetax•13m ago•0 comments

Upgrading to Raspberry Pi OS Trixie

https://smist08.wordpress.com/2025/11/16/upgrading-to-raspberry-pi-os-trixie/
1•ingve•18m ago•0 comments

Britain to make refugee status temporary

https://www.reuters.com/world/uk/britain-announces-largest-asylum-policy-overhaul-modern-times-20...
3•PessimalDecimal•19m ago•0 comments

Adding an imaginary unit to a finite field

https://www.johndcook.com/blog/2025/11/16/finite-field-i/
2•ibobev•20m ago•0 comments

Linux mode setting, from the comfort of OCaml

https://roscidus.com/blog/blog/2025/11/16/libdrm-ocaml/
2•ibobev•21m ago•0 comments

Super human Stratego with RL and test time search

https://arxiv.org/abs/2511.07312
1•algo_trader•21m ago•1 comments

62 chapter open-source Zig book

https://www.zigbook.net
3•rudedogg•22m ago•0 comments

Bitcoin Is Falling and Crypto Stocks Are Crashing

https://www.theinformation.com/articles/bitcoin-falling-crypto-stocks-crashing
1•JumpCrisscross•22m ago•0 comments

Double Bind

https://en.wikipedia.org/wiki/Double_bind
1•walterbell•22m ago•0 comments

Show HN: Tsofa – The Simple, Offline Flashcard App

https://inventwithpython.com/tsofa/
1•AlSweigart•24m ago•0 comments

How A Narcissist Conducts Psychological Warfare (2019)

https://www.psychologytoday.com/us/blog/peaceful-parenting/201901/how-a-narcissist-conducts-psych...
3•walterbell•25m ago•0 comments

AI Is the Bubble to Burst Them All

https://www.wired.com/story/ai-bubble-will-burst/
4•AlphaWeaver•27m ago•0 comments

Tracking users with favicons, even in incognito mode

https://github.com/jonasstrehle/supercookie
2•vxvrs•27m ago•0 comments

Dark Pattern Games

https://www.darkpattern.games
3•robotnikman•28m ago•0 comments

AMD vs. Intel: A Unicode Benchmark

https://lemire.me/blog/2025/11/16/amd-vs-intel-a-unicode-benchmark/
2•ibobev•28m ago•0 comments

Octopii, a batteries included framework for building distributed systems in Rust

https://github.com/octopii-rs/octopii
4•nubskr•29m ago•3 comments

Layanan Pelanggan Agoda 24 Jam

1•Kopi1•30m ago•0 comments

Ask HN: What were the best books you read in 2025?

3•dom96•31m ago•1 comments

Layanan Agoda 24 Jam

1•Kopi1•31m ago•0 comments

To be desirable is currency. To desire is liability

https://amycoded.substack.com/p/everyone-wants-to-be-desired-no-one
1•schyzomaniac•36m ago•1 comments

I've been building an HTML-first tool – sharing it in case it helps someone

2•guseyn•37m ago•1 comments

Thermostats: Tuning Team Temperature

https://another.rodeo/thermostats/
1•mooreds•37m ago•0 comments

Show HN: ResendForward – OS server and UI for use with Resend.com inbound

https://github.com/lsherman98/resendforward
1•lsherman98•39m ago•0 comments
Open in hackernews

Ask HN: How do you send large sets of data to an LLM

2•obayesshelton•6mo 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•6mo 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•6mo 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?