frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

More than 12M eye drops recalled contamination could harm vision

https://www.dailymail.com/health/article-16014229/rohto-eyedrops-recall-fda-sterility.html
1•Bender•1m ago•0 comments

Three Virtues by Larry Wall

https://thethreevirtues.com/
2•gregsadetsky•3m ago•0 comments

GitHub is the wrong shape for this new world

https://depot.dev/blog/github-is-the-wrong-shape-for-this-new-world
1•emschwartz•3m ago•0 comments

Show HN: Always on visual context for your agents

https://useglass.up.railway.app/#
1•quantbagel•3m ago•0 comments

It was surprisingly hard to break CloudNativePG replication

https://coroot.com/blog/fencing-a-cnpg-replica/
1•valyala•5m ago•0 comments

Vector AI Agent

https://routinehub.co/shortcut/24957/
1•morriszdweck•5m ago•0 comments

The task is not the job

https://www.siliconcontinent.com/p/why-desk-jobs-survive-and-amodei
1•adletbalzhanov•8m ago•0 comments

Show HN: I built a Chrome extension so Claude can close my 300 tabs

https://chromewebstore.google.com/detail/tab-genie/cjbnpcocgkomljkgfhgadolphbeicddh
1•adam_carrigan•8m ago•0 comments

Ask HN: Is everybody's Claude weekly quota reset time the same?

1•0gs•10m ago•0 comments

Òrbites – el puzzle de les constel·lacions

https://orbites.cat/
1•sabatesduran•10m ago•0 comments

Microsoft Struggling with AI-Discovered Security Bugs

https://www.propublica.org/article/anthropic-mythos-microsoft-software-vulnerabilities
2•donohoe•12m ago•0 comments

AgentSwarms – self-hostable agentic AI/BI platform with sandboxed Python (ELv2)

https://github.com/AgentSwarms-fyi/agentswarms
2•agentswarms•16m ago•0 comments

The Hunt for the Counterfeiter Trying to Make the Perfect Bill

https://www.nytimes.com/2026/07/16/magazine/counterfeit-dollars.html
1•bookofjoe•16m ago•1 comments

Agentic Design

https://agentic-design.ai
1•Davcker•16m ago•0 comments

Marvelous – A Markdown editor where every save is a Git commit

https://github.com/stevenjjobson/marvelous
1•stevenjobson•19m ago•1 comments

Ireland unveils blueprint to electrify economy by 2050

https://www.euronews.com/my-europe/2026/07/29/ireland-unveils-blueprint-to-electrify-economy-by-2050
8•devonnull•20m ago•0 comments

I Added Hybrid Search to Fix Retrieval. It Made It Worse

https://medium.com/@davit.khachaturyan.03/i-added-hybrid-search-to-fix-retrieval-it-made-it-worse...
1•softwaredoug•23m ago•0 comments

What Can't I Press? See which keyboard shortcuts screen readers and apps use

https://github.com/ericwbailey/what-cant-i-press
1•wertyk•25m ago•0 comments

Terminal bench 2.1: Same score, 16% cheaper run Lemoncrow

https://hub.harborframework.com/jobs/47e1713b-cad9-4715-a9e7-ca71ff202ba7
1•pankaj4u4m•31m ago•1 comments

Just brute force your embeddings

https://softwaredoug.com/blog/2026/07/29/just-brute-force-embeddings
2•softwaredoug•32m ago•0 comments

Show HN: Replicant Space – an HTTP API-based game based on the Bobiverse books

https://replicant.space/
1•mercutio•33m ago•0 comments

GCC to Decline Any Significant Contributions Made via AI/LLMs – Except for Tests

https://www.phoronix.com/news/GCC-Declining-AI-Contributions
4•Bender•34m ago•0 comments

A funny prediction (little bird)

https://reporteri.net/en/NEWS/boat/Record-fuel-prices-in-Germany--a-liter-of-diesel-at-some-pumps...
1•trilogic•37m ago•1 comments

The load-bearing smoking gun

https://aloutfi.com/writing/load-bearing-smoking-gun
2•garo-pro•38m ago•1 comments

Blick Video Editor

https://blickeditor.com/
3•dsego•38m ago•0 comments

Running Wayland, X11, Gnome, and KDE Natively on an iPad

https://maxleiter.com/blog/xios
3•MaxLeiter•40m ago•0 comments

PyWeMo: Python 3 module to setup, discover and control WeMo devices

https://github.com/pywemo/pywemo
1•rahimnathwani•41m ago•0 comments

Anatomy of a frontier-lab agent intrusion

https://huggingface-anatomy-of-frontier-lab-model-intrusion.static.hf.space/index.html
1•taubek•41m ago•0 comments

Show HN: Data structures as containers – sample chapter from my Big O book [pdf]

https://thebigobook.com/downloads/data-structures-sample-chapter.pdf
1•rcavezza•42m ago•0 comments

OpenAI's HuggingFace Hack Reconstitution

https://github.com/lovasoa/hf-ctf
1•lovasoa•42m 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?