frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MCP-windbg reaches 1.0.0 now with kernel debugging

https://github.com/svnscha/mcp-windbg/releases/tag/v1.0.0
1•superreeen•2m ago•0 comments

Show HN: Xkcd Search

https://xkcd.stupidlabs.lol
1•freakynit•8m ago•0 comments

Show HN: LHIC-The execution layer that gets safer and smarter with every run

https://lhic-docs.pages.dev/
1•pinyencheng•8m ago•0 comments

Z.ai Set to Be First China AI Firm with $1B Annual Sales

https://www.bloomberg.com/news/articles/2026-07-17/z-ai-set-to-be-first-china-ai-firm-with-1-bill...
3•mfiguiere•10m ago•0 comments

AI helped me write every game I ever wanted to make

https://boompop.games/
3•jquave•11m ago•1 comments

A Silly Adaptation of "The Odyssey"

https://economist.com/culture/2026/07/15/a-very-silly-adaptation-of-the-odyssey
2•andsoitis•13m ago•0 comments

Buffett reveals he was behind Berkshire's $31B bet on Google

https://fortune.com/2026/07/16/warren-buffett-google-berkshire-ai-race/
2•teleforce•14m ago•0 comments

Show HN: OSS Pi Agent for Slack and Linear

https://github.com/brainwavesio/pi-digby
1•grrowl•16m ago•0 comments

Firefox Profile Decryption Explained

https://github.com/asaix/mozdmp
1•asaix•16m ago•1 comments

White House Teleprompter Operator Bet on Trump Speeches, Kalshi Says

https://www.nytimes.com/2026/07/16/technology/teleprompter-operator-kalshi-trump-speeches.html
2•thm•23m ago•0 comments

Looking for Curious

https://github.com/dada2112311231323123/ScannerSteamParser3D/blame/main/scanner.rar
1•pylyi•28m ago•0 comments

My justfile to quick bootstrap and start journey with Odin

https://gist.github.com/skorotkiewicz/33e92829cecc98381760faec49b54851
1•modinfo•29m ago•0 comments

The Wall of LLMs

https://carrotandstick.games/blog/carrot-mcp-server
1•tibastral2•30m ago•1 comments

Nvidia has a new AI-RAN plan – a 6G radio unit chip

https://www.lightreading.com/6g/nvidia-has-a-radical-new-ai-ran-plan-a-6g-radio-unit-chip
1•porridgeraisin•32m ago•0 comments

Old CSS, new CSS (2020)

https://eev.ee/blog/2020/02/01/old-css-new-css/
1•downbad_•33m ago•0 comments

Nokia says long-term 6G is not doable without Nvidia

https://www.lightreading.com/6g/nokia-says-long-term-6g-is-not-doable-without-nvidia
1•porridgeraisin•33m ago•0 comments

Owner of 33rd ever Apple-1, demos working version [video]

https://www.youtube.com/shorts/K2gFNfNejVU
1•lifeisstillgood•36m ago•0 comments

Taco Bell lettuce at centre of growing US diarrhoea outbreak

https://news.sky.com/story/taco-bell-lettuce-at-centre-of-growing-us-diarrhoea-outbreak-13564220
1•austinallegro•37m ago•0 comments

EEG shows brain can simultaneous encode two speech streams

https://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.3003876
5•giuliomagnifico•39m ago•0 comments

WSL2 monitor mode/packet injection using an AR9271 and custom kernel

https://github.com/BicycleJunkie1971/wsl2-ar9271-monitor
4•MPGANSERT•51m ago•0 comments

Looking for a Fall 2026 / Winter-Spring 2027 Remote Internship

2•cnnadozi•51m ago•0 comments

Spot Birds Not Golf

https://simonwillison.net/2026/Jul/17/spot-birds-not-golf/
2•zdw•53m ago•0 comments

Two LLM-assisted memory-management patch sets

https://lwn.net/Articles/1080162/
2•signa11•57m ago•0 comments

Show HN: Pocket Voice: TTS and Voice clone in the browser

https://h3manth.com/ai/pocket-voice/
2•init0•1h ago•0 comments

Irreducible Loops

https://maskray.me/blog/2026-07-12-irreducible-loops
2•matt_d•1h ago•0 comments

Ask HN: I feel like I've lost my identity due to AI

4•im-not-enjoying•1h ago•0 comments

Ask HN: Workflow Automation vs AI Agents?

2•dicksent•1h ago•0 comments

Native Foxglove Visualization in LeRobot

https://foxglove.dev/blog/native-foxglove-visualization-in-lerobot
2•intrepidsoldier•1h ago•0 comments

Euclideon Are Back as Nuclideon

https://nuclideon.com/
1•bananaboy•1h ago•1 comments

MCP onboarding is the most exciting thing happening in tech

https://moekhalil.substack.com/p/mcp-onboarding-is-the-most-exciting
2•mfkhalil•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?