frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pixal3D: Pixel-Aligned 3D Generation from Images

https://ldyang694.github.io/projects/pixal3d/
1•steveharing1•57s ago•0 comments

Photo GIMP – A Patch for GIMP 3 for Photoshop Users

https://github.com/Diolinux/PhotoGIMP
1•SockThief•7m ago•0 comments

Private Networking on Hetzner Cloud with Tailscale

https://onatm.dev/2026/01/28/private-networking-on-hetzner-cloud-with-tailscale/
1•onatm•8m ago•0 comments

Agent skill for UB detection in Rust

https://twitter.com/i/status/2055439039692452106
1•Dowwie•9m ago•0 comments

A relatively brief explanation of Boltzmann Brains

https://www.lesswrong.com/posts/v8MSczS3CuoqMmTFw/a-relatively-brief-explanation-of-boltzmann-brains
1•joozio•13m ago•0 comments

Show HN: MaragingLoop: Autonomous Bare-Metal OS Agent

https://github.com/GistNoesis/MaragingLoop/
1•GistNoesis•14m ago•1 comments

No comment on this PR may mention the following topics

https://chaosfem.tw/@Athena/116578993491995353
1•colinprince•17m ago•0 comments

Klaxon a livr earthquake map with no back end

https://klaxon.live/
2•Accher•20m ago•0 comments

American Jobs with AI Exposure Are Starting to Disappear, Data Show

https://gizmodo.com/american-jobs-with-ai-exposure-really-are-starting-to-disappear-data-show-200...
1•pseudolus•21m ago•0 comments

Some Asexuals Are Using AI Companions for Intimacy Without the Sex

https://www.wired.com/story/some-asexual-people-are-using-ai-companions-for-intimacy-without-the-...
1•joozio•23m ago•0 comments

Opening a jar for 10 hours straight [video]

https://www.youtube.com/watch?v=X969XcyIHWY
2•pingou•34m ago•0 comments

AidaIDE – A desktop IDE built around SSH sessions

https://aidaide.app/vs/putty
1•westhemess•36m ago•0 comments

SlothDB is an OLAP DB ahead of DuckDB on Clickbench SQL database in C++20

2•souravroy78•36m ago•0 comments

Microsoft rejects critical Azure vulnerability report, no CVE issued

https://www.bleepingcomputer.com/news/security/microsoft-rejects-critical-azure-vulnerability-rep...
1•rurban•37m ago•1 comments

The 'Mythos Moment'

https://profserious.substack.com/p/the-mythos-moment
1•krona•39m ago•0 comments

Running Local Language Model on Game Boy Color

https://old.reddit.com/r/LocalLLaMA/comments/1tbi2n3/i_got_a_real_transformer_language_model_runn...
1•AbuAssar•43m ago•0 comments

SPF PermError: What Causes It and How to Fix It Step-by-Step

https://dmarcguard.io/blog/spf-permerror-fix/
1•meysamazad•44m ago•0 comments

How the New Testament Was Copied and Preserved

https://www.jeremysarber.com/p/how-the-new-testament-was-copied
2•meysamazad•44m ago•0 comments

Building Shopie for Mac with SwiftUI

https://mjtsai.com/blog/2026/05/08/building-shopie-for-mac-with-swiftui/
1•SoKamil•46m ago•0 comments

We need something better than touchscreens in cars

https://thejollyteapot.com/2026/05/10/we-need-something-better-than-touchscreens-in-cars/
1•meysamazad•47m ago•0 comments

Riding the Leopard

https://www.notboring.co/p/riding-the-leopard
1•watchful_moose•48m ago•0 comments

Nvidia Surpasses Germany

https://www.euronews.com/business/2026/05/16/nvidia-surpasses-germany-how-the-market-caps-of-tech...
5•DeathArrow•56m ago•1 comments

'White monkeys' paid to make Chinese businesses look global

https://www.theguardian.com/lifeandstyle/2026/may/16/fake-lawyers-scientists-chefs-punters-white-...
2•YeGoblynQueenne•1h ago•0 comments

Why our AI agent needed a causal graph, not just a RAG database

https://openyf.dev/blogs/world-model
1•youelfedr•1h ago•0 comments

Huginn Net – Multi-Protocol Passive Fingerprinting (P0f-Style)

https://github.com/biandratti/huginn-net
1•xvilka•1h ago•0 comments

PE packer with randomized VM ISA per output file (C++)

https://github.com/iamsopotatoe-coder/TinyLoad
3•iamsopotatoe•1h ago•0 comments

MicroZig: Embedded Applications in Zig

https://github.com/ZigEmbeddedGroup/microzig
2•tosh•1h ago•0 comments

DFDS to invest €1B in battery electric ships for the Channel

https://www.dfds.com/en/about/media/news/dfds-to-invest-1-billion-euro-in-battery-electric-ships-...
3•zeristor•1h ago•0 comments

Media Date Fixer: Clean Up Wrong Dates in Photo and Video Libraries

https://github.com/xam-ps/Media-Date-Fixer
1•xamp•1h ago•0 comments

Magic 1.0 – A highly modular email theme

https://celaro.co/journal/magic-launch
1•celaro•1h 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?