frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to Start a Successful Freelance Business as a Software Developer (2017)

https://nickjanetakis.com/blog/how-to-start-a-successful-freelance-business-as-a-software-developer
1•downbad_•1m ago•0 comments

Sue (Dinosaur)

https://en.wikipedia.org/wiki/Sue_(dinosaur)
1•thunderbong•8m ago•0 comments

Mirror your GitHub repos to tangled.org automatically

https://synchub.to/
1•wertyk•13m ago•0 comments

The Mighty Big Array of Finn Jensen LA8YB

https://la0by.darc.de/LA8YB_EME_MBA.htm
1•kalehmann•14m ago•0 comments

Facebook Down

https://downdetector.co.uk/status/facebook/
2•RupertWiser•16m ago•0 comments

Perforce charges $500 for training training videos.. and it's AI narrated

https://training.perforce.com/learn/courses/535/p4-helix-core-user-basic
2•TZubiri•19m ago•1 comments

Ask HN: Are you building agents? What do they need access to?

1•asim•20m ago•1 comments

Ollama: All Aboard Open Models

https://ollama.com/blog/all-aboard-open-models
1•inferhaven•20m ago•0 comments

Wolfram LLM Benchmarking Project

https://www.wolfram.com/llm-benchmarking-project/
1•rzk•21m ago•0 comments

Breeze – A High-Performance Go Web Framework with a Built-In Developer Dashboard

https://github.com/nelthaarion/breeze
1•ethanwinters•22m ago•1 comments

The Model Race Hangover

https://adlrocha.substack.com/p/adlrocha-the-model-race-hangover
1•adlrocha•23m ago•0 comments

2026 EuroLLVM – Rust or CHERI?

https://www.youtube.com/watch?v=3YJn2VULv8E
1•pjmlp•24m ago•0 comments

OpenAI reduces Codex Model Context Size from 372k to 272k

https://github.com/openai/codex/pull/33972/files
1•AmazingTurtle•25m ago•0 comments

Some Observations on Kimi

https://xcancel.com/deanwball/status/2078133895766114412#m
1•vrganj•26m ago•1 comments

Show HN: Use the document. Not the personal data

https://www.dokmine.com/
1•not_wowinter13•27m ago•0 comments

FckSignups: Open-source tools. No accounts, emails, tracking–just tools

https://github.com/BraveOPotato/FckSignups
1•wertyk•28m ago•0 comments

Analogies in Nature (1856) [pdf]

https://mimno.infosci.cornell.edu/papers/maxwell-analogies.pdf
1•rzk•30m ago•0 comments

Tech-Infused Pool Hall Startup Raises $55M

https://www.nytimes.com/2026/07/17/business/dealbook/poolhouse-fundraise-topgolf.html
1•gemanor•32m ago•0 comments

Reviewing AI Code Is Not a Viable Argument

https://www.softwaremaxims.com/blog/reviewing-ai-code
2•birdculture•33m ago•1 comments

Will AI Fix Prior Authorization – Or Make It Worse?

https://undark.org/2026/07/15/medicare-prior-authorization-ai/
1•thm•35m ago•0 comments

Valve/Collabora Release Holo Core Custom Aarch64 Arch Linux Port for Steam Frame

https://www.linuxcompatible.org/story/valve-and-collabora-release-holo-core-a-custom-aarch64-arch...
1•_____k•43m ago•1 comments

Email Is Crazy

https://samkhawase.com/blog/email-is-crazy/
1•fagnerbrack•43m ago•0 comments

Same Idea, Different Decade

https://fagnerbrack.com/same-idea-different-decade-4abaa13ed0f0
1•fagnerbrack•44m ago•0 comments

Lean Programming Language

https://lean-lang.org/
2•fagnerbrack•44m ago•0 comments

Prodigy – AI Workforce for professional teams

1•samayashar•46m ago•0 comments

Order of Magnitude Physics a Textbook with Applications to the Retinal Rod(1998) [pdf]

https://www.inference.org.uk/sanjoy/thesis/thesis-letter.pdf
1•nill0•48m ago•0 comments

The Art of Insight in Science and Engineering – Mastering Complexity(2014) [pdf]

https://ocw.mit.edu/courses/res-6-011-the-art-of-insight-in-science-and-engineering-mastering-com...
1•nill0•52m ago•0 comments

SIMD Vectors in the HotSpot JVM [video]

https://www.youtube.com/watch?v=KpCz6UtViEo
1•tosh•56m ago•0 comments

Kimi K3 is top-tier at cybersecurity

https://twitter.com/rauchg/status/2078647648307880209
3•tosh•57m ago•0 comments

Show HN: PilotCite – Get your brand cited by ChatGPT, Gemini, and more

https://www.pilotcite.com
1•standew•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?