frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Every student is cheating with AI

https://ben.page/cheating
1•stopachka•3m ago•0 comments

Self-Healing Autopoietic Shell

https://huggingface.co/spaces/Daveswo/self-healing-autopoietic-shell
1•GlyphOS•6m ago•0 comments

The Coolest Cars We Saw at the 2026 Woodward Dream Cruise

https://www.caranddriver.com/news/a73453367/2026-woodward-dream-cruise-coolest-cars/
1•RickJWagner•7m ago•0 comments

Apple's Camera-Equipped AirPods See Them in Action

https://www.macrumors.com/2026/08/17/camera-equipped-airpods-macos-26-7/
1•thecybernerd•8m ago•0 comments

I've been doing endurance testing on microSD cards for the last 3 years

https://www.reddit.com/r/raspberry_pi/comments/1vqyx6o/ive_been_doing_endurance_testing_on_micros...
3•LeoPanthera•8m ago•0 comments

Apple's Camera-Equipped AirPods See Them in Action

https://twitter.com/aaronp613/status/2089522745184760112
2•thecybernerd•9m ago•0 comments

What Is DeepSeek-Harness? A Complete Introduction

https://findharness.com/blog/what-is-deepseek-harness
2•Justin3go•11m ago•0 comments

Caffeine and Cardiovascular Disease: A Scientific Statement from the AHA

https://www.ahajournals.org/doi/10.1161/CIR.0000000000001454
2•CalChris•11m ago•0 comments

Show HN: Tsampi BFT – Leaderless One-Round Voting with Parameterized Finality [pdf]

https://www.tsampi.com/tsampi-bft-1.0.pdf
1•coconutrandom•14m ago•0 comments

Qwen3.8-27B: slower tokens, faster and better results

https://overbring.com/blog/2026-08-17-qwen3-8-27b-wall-clock/
1•overbring_labs•14m ago•0 comments

Poor Man's Loop Engineering

https://awaitinginput.substack.com/p/poor-mans-loop-engineering
4•bsovran•16m ago•0 comments

Ask HN: Does anyone else feel like nothing matters anymore?

3•ramesh31•20m ago•2 comments

JD Vance vs. Trump: The Couch War Gets Out of Control [video]

https://www.youtube.com/watch?v=EbRMGAolHDk
1•pshales•30m ago•0 comments

LineageOS support comes to the Galaxy S22 series

https://9to5google.com/2026/08/17/lineageos-support-finally-comes-to-the-galaxy-s22-series/
1•thunderbong•31m ago•0 comments

Follow-Up Thoughts on Watermarking Schemes for AI-Generated Text

https://daringfireball.net/2026/08/follow-up_thoughts_on_watermarking
3•tambourine_man•32m ago•0 comments

RISC-V Extension Landscape

https://rpsene.github.io/riscv-extensions-landscape/
1•mshockwave•37m ago•0 comments

Headjust: macOS app that uses your headphones to surface tilt and lean

https://headjust.app/
1•ValentineC•40m ago•0 comments

Blobatar: Deterministic Geometric Avatars

https://www.blobatar.dev/
1•LorenDB•44m ago•0 comments

We Tested Qwen3.8 27B: How Much GPU and VRAM Do You Need

https://www.hardware-corner.net/qwen3-8-27b-hardware-tests/
1•mdp2021•45m ago•0 comments

Anthropic's Claude Will Add Watermarks to AI-Generated Text and Files

https://www.cnet.com/tech/services-and-software/anthropics-claude-will-add-watermarks-to-ai-gener...
1•wglb•47m ago•0 comments

Sam Altman: How to Be Successful (2019)

https://blog.samaltman.com/how-to-be-successful
3•TheAlchemist•53m ago•0 comments

I've been doing endurance testing on microSD cards for the last 3 years

https://www.reddit.com/r/homelab/comments/1vqzawd/ive_been_doing_endurance_testing_on_microsd_cards/
1•ValentineC•54m ago•0 comments

Goldeneye 007 100% Decompiled

https://twitter.com/defaultdnb/status/2089257650261229703
1•nomilk•55m ago•1 comments

Privibe – LLM CLI Local first+privacy focus+llama.cpp cache branch and Qwen3.x

https://github.com/alainnothere/privibe/tree/main
1•xlayn•1h ago•1 comments

Trump administration Announces New "Hacking Back" Program

https://reason.com/volokh/2026/08/17/trump-administration-announces-new-hacking-back-program/
6•anonymousiam•1h ago•1 comments

The Loss of Innocence

https://medium.com/freedomofthought/the-loss-of-innocence-a-timeline-of-growing-up-as-a-girl-ce62...
1•raynchad•1h ago•0 comments

Every Forward Deployed Engineer Just Got Promoted

https://www.furtherai.com/blog/every-forward-deployed-engineer-just-got-promoted
2•sgondala_ycapp•1h ago•0 comments

Laser mosquito zapper promises precision strikes as backers itch for answers

https://www.theregister.com/offbeat/2026/08/17/1k-laser-mosquito-zapper-promises-precision-strike...
3•mdp2021•1h ago•1 comments

Google wins bankruptcy auction for Spirit Airlines emails, chats, documents

https://www.axios.com/2026/08/17/google-spirit-airlines-bankruptcy
17•sgustard•1h ago•6 comments

PM Carney announces largest clean energy investment in North American history

https://www.pm.gc.ca/en/news/news-releases/2026/08/17/prime-minister-carney-announces-largest-cle...
46•garbawarb•1h ago•14 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?