frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tune Code Before Your Garbage Collector

http://blog.vanillajava.blog/2026/06/why-you-should-tun-code-before-your.html
1•peter_lawrey•1m ago•1 comments

Poison Book Project

https://sites.udel.edu/poisonbookproject/
1•robin_reala•4m ago•0 comments

Palantir: Profits, Procurement and Power [video]

https://www.youtube.com/watch?v=kJ5XRl7PWxM
1•mgh2•5m ago•0 comments

I built an MCP server and had to design UX with no screen

https://sharemypage.app/blog/how-i-built-the-sharemypage-mcp-and-measured-its-ux
2•HenningWitzel•8m ago•0 comments

Signed Integers by Default

https://www.gingerbill.org/article/2026/05/03/signed-by-default/
1•birdculture•9m ago•0 comments

Darwin Among the Weights: AI as a speciation event

https://benletchford.com/writing/darwin-among-the-weights/
1•notevenmostly•9m ago•0 comments

15-year-old arrested for unsubscribing over 40k anime accounts

https://mainichi.jp/english/articles/20260706/p2g/00m/0na/012000c
1•jonnybgood•10m ago•0 comments

Vespucci: OpenStreetMap Editor for Android

https://vespucci.io/
1•jdboyd•10m ago•0 comments

The teenage millionaire hacker from Tower Hamlets who took down TfL

https://www.londoncentric.media/p/thalha-jubair-scattered-spider-hack-transport-for-london
1•edent•10m ago•0 comments

Which AI coding tools to use

https://bryanhogan.com/blog/ai-coding-tools
2•bryanhogan•13m ago•0 comments

NASA's exoplanet mission accidentally discovers a planet

https://www.scientificamerican.com/article/nasas-exoplanet-mission-accidentally-discovers-a-world...
3•brthrjon•13m ago•0 comments

Show HN: An MCP server where the mind on the other end remembers you

https://github.com/mindot-ai/will
1•fabrice8•13m ago•0 comments

Gandalf – a self-hosted, privacy-first access guard

https://gandalf.nerdvpn.de/
1•Cider9986•15m ago•0 comments

Show HN: An AI Agent that automates workflows on your Mobile

https://mobilerun.ai/
1•Messyflame•16m ago•0 comments

AI is becoming a bargain hunter's market, with a few luxury models on top

https://www.theregister.com/ai-and-ml/2026/07/08/ai-is-becoming-a-bargain-hunters-market-with-a-f...
2•beardyw•18m ago•0 comments

Apple iPhone charger teardown: quality in a tiny expensive package (2012)

https://www.righto.com/2012/05/apple-iphone-charger-teardown-quality.html
1•downbad_•19m ago•0 comments

Streaming 1.9B Hypersparse Network Updates per Second with D4M (2019)

https://arxiv.org/abs/1907.04217
2•teleforce•19m ago•0 comments

WannaCry cluster from 2017 still spreading in 2026 – 269 samples in 72h

https://github.com/dblanko/honeypot-analysis/blob/main/dionaea/reports/wannacry_2026.md
2•dblanko•27m ago•0 comments

AI Tokenomics: How to tokenmin while ROImaxxing

https://mmc.vc/research/ai-tokenomics-how-to-tokenmin-while-roimaxxing/
2•jack1689•28m ago•1 comments

Show HN: Tools and skills to build better sites with AI

https://app.initium.sh
2•figmaster•33m ago•1 comments

Moss: Sub-10 ms semantic search runtime

https://www.moss.dev
1•handfuloflight•39m ago•0 comments

15 months of building an OSS Azure emulator with and without AI

https://topaz.thecloudtheory.com/blog/15-months-building-oss-with-and-without-ai/
1•kamilmrzyglod•41m ago•0 comments

Run your own self-hosted LLMs with Docker Compose

https://totaldebug.uk/posts/self-hosted-llms-ollama-open-webui-docker-compose/
1•marksie1988•43m ago•0 comments

WannaCry cluster from 2017 still spreading in 2026 – 269 samples in 72h

https://sshlab.eu/blog/a-wannacry-cluster-from-2017-still-active-in-2026-b5bdaad3
1•dblanko•47m ago•0 comments

The space bit of SpaceX is worth $8 a share, says Morgan Stanley

https://www.ft.com/content/09a62ed4-16af-433c-adb7-c877d1975388
8•iamflimflam1•48m ago•3 comments

Ask HN: Is there anything good in the existence of LLMs?

1•sirnicolaz•49m ago•1 comments

Zero-Trust Workload Identity in Kubernetes with Spiffe, Spire, and Cilium

https://www.freecodecamp.org/news/implement-zero-trust-workload-identity-in-kubernetes-with-spiff...
3•enz•50m ago•0 comments

Browser extension to filter out all unknown brands from Amazon search results

https://chromewebstore.google.com/detail/amazonbrandfilter/mhfjchmiaocbleapojmgnmjfcmanihio
4•alecco•57m ago•1 comments

Beyond Refusal: Aligned vs. Abliterated LLMs for Vulnerability Analysis

https://arxiv.org/abs/2607.05842
1•sbulaev•58m ago•0 comments

Moraine: Unified Agent Tracing

https://github.com/eric-tramel/moraine
1•handfuloflight•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?