frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI and Anthropic oversold AI security breaches

https://nypost.com/2026/09/19/us-news/openai-anthropic-oversold-security-breaches-to-pressure-fed...
1•hei-lima•1m ago•0 comments

Collateral Damage of IP-Based Blocking During LaLiga Football Streaming

https://ooni.org/post/2026-laliga-collateral
1•Bluestein•1m ago•0 comments

Quick notes from teaching technical profiles how to talk in public

https://www.lesswrong.com/posts/nKsyMfNsAuTrxmjmi/quick-notes-from-teaching-technical-profiles-ho...
1•wslh•3m ago•0 comments

KdK Part 5: The Aitkenator

https://nealstephenson.substack.com/p/kdk-part-5-the-aitkenator
1•peteforde•5m ago•0 comments

Statement on Superintelligence (2025)

https://superintelligence-statement.org
2•etoulas•5m ago•0 comments

Founding Engineer, AI and Full-Stack

https://bettrlife.ai/founding-engineer
1•jillforBTRL•7m ago•1 comments

Notebook interpolates smoothly between projections of the globe

https://observablehq.com/@d3/projection-transitions
1•joebig•9m ago•0 comments

Show HN: MP3 to MIDI Lab – Convert MP3/WAV to MIDI in the Browser

https://mp3tomidilab.com/
1•liweipt•10m ago•0 comments

Elegant Shape of Eiffel Tower Solved Mathematically by CU-Boulder Prof (2005)

https://www.colorado.edu/today/2005/01/04/elegant-shape-eiffel-tower-solved-mathematically-cu-bou...
1•floweronthehill•11m ago•0 comments

Bytemail – One-time-purchase native email client for macOS (no subscription)

https://bytemailapp.com
1•karakhanyans•11m ago•0 comments

Programming languages hit a decade low on Hacker News

https://www.orangecrumbs.com/stories/programming-languages
1•oyster143•12m ago•0 comments

Curated list of hosting (VPS, GPU, infra, AI)

https://github.com/dalisoft/awesome-hosting
1•dalisoft•15m ago•0 comments

How I see software dev in AI era

https://dhilst.github.io/2026/09/19/sweng-as-opt-prob/
2•geckones•16m ago•0 comments

The End of Upward Mobility

https://www.noemamag.com/the-end-of-upward-mobility/
1•Gooblebrai•16m ago•0 comments

Divide by Depth for Instant 3D

https://gabrieloc.com/2026/09/15/perspective.html
1•gabrieloc•17m ago•1 comments

PC ports of old console games are the new AI vibe coding battleground

https://www.pcgamer.com/gaming-industry/pc-ports-of-old-console-games-are-the-new-ai-vibe-coding-...
2•adunk•18m ago•0 comments

Detecting and mitigating a multi-stage AiTM phishing and BEC campaign (2023)

https://www.microsoft.com/en-us/security/blog/2023/06/08/detecting-and-mitigating-a-multi-stage-a...
2•colinprince•20m ago•0 comments

How the incident happened: a play in one act

https://surfingcomplexity.blog/2026/09/19/how-the-incident-happened-a-play-in-one-act/
2•azhenley•20m ago•0 comments

Show HN: KillSwitch – a programming language designed to be difficult for LLMs

https://killswitch-lang.org
4•dom96•20m ago•0 comments

Escaping Docker's Hypervisor

https://accomplish.ai/blog/escaping-dockers-hypervisor/
2•RohanAdwankar•24m ago•1 comments

Testing Jev as a validation gate for drug-discovery agents

https://frederickparsons.substack.com/p/can-a-fast-ai-gate-catch-chemistry
2•fred_tandemai•25m ago•0 comments

Jevmetrics – probabilistic metric reduction inside OpenTelemetry

https://github.com/ishantanu/jevmetrics
3•ishantanu10•26m ago•0 comments

Solving rubiks cubes "without search"

https://arxiv.org/abs/2508.13113
4•E-Reverance•28m ago•0 comments

Firefox Telemetry Dictionary

https://dictionary.telemetry.mozilla.org/apps/firefox_desktop
1•M95D•29m ago•1 comments

Finding Bugs

https://matklad.github.io/2026/09/19/finding-bugs.html
2•surprisetalk•30m ago•0 comments

What do you think is the prevalence of this phenomenon in current AI discourse?

https://en.wikipedia.org/wiki/Preference_falsification
1•symbolicai•32m ago•2 comments

Economics Nobel Laureates' Letter Supporting the California Billionaire Tax [pdf]

https://gabriel-zucman.eu/files/prop40letter.pdf
5•marojejian•35m ago•4 comments

Markers to Deter Human Intrusion into Waste Isolation Pilot Plant (1993) [pdf]

https://gwern.net/doc/technology/1993-trauth.pdf
1•walrus01•35m ago•0 comments

ZK-JPEG: Zero-Knowledge Image Editing and Compression

https://eprint.iacr.org/2026/2039
2•gslin•37m ago•0 comments

Disney+ changes subscriber agreement to allow ads on every plan

https://www.dexerto.com/tv-movies/disney-changes-subscriber-agreement-to-allow-ads-on-every-plan-...
16•DemiGuru•39m ago•2 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?