frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Structured Promptmaker

https://www.gptpromptmaker.com/
2•sanathbhat•5m ago•0 comments

Porting a clearing-house money market to a smart contract

1•citizensinan•8m ago•0 comments

Arcentry is back – create beautiful 3D infrastructure diagrams

https://arcentry.com/?src=hn
1•wolframhempel•8m ago•0 comments

Listening to loud music on a Singapore bus? It'll cost you

https://www.cnn.com/2026/09/22/travel/singapore-bus-rules-music-intl-hnk
2•edward•10m ago•0 comments

"Father of The Elder Scrolls" Julian LeFay has passed away (2025)

https://www.gamesradar.com/games/the-elder-scrolls/father-of-the-elder-scrolls-julian-lefay-has-p...
2•anotherhue•10m ago•0 comments

I am done with this shit

https://www.reddit.com/r/ClaudeAI/comments/1wm5c21/i_am_done_with_this_shit/
1•meander_water•10m ago•0 comments

Tradeoff considerations while running LLM models locally

https://swapniltalekar.substack.com/p/should-you-be-running-llm-models
1•swapnilt•13m ago•0 comments

Scott Jenson: Are we going to use the same Desktop UX forever? [video]

https://www.youtube.com/watch?v=V7AfAcQwLW0
1•KitN•14m ago•0 comments

Secretive gambling industry exposed in leak

https://www.ftm.eu/articles/curacao-secretive-gambling-industry-exposed-in-leak
2•fh973•15m ago•0 comments

AurionMail: E2EE suite (CryptPad and Stalwart) with single-password UX

https://aurionmail.github.io/docs/
1•polo46•19m ago•0 comments

Ask HN: How do you cope with AI being used to target and bomb children?

2•trumbitta2•21m ago•2 comments

Claude Opus 5.5, GPT-6 Sol, GPT-6 Luna, and a new price war

https://simonwillison.net/2026/Sep/22/opus-and-sol-and-luna/
1•theanonymousone•23m ago•0 comments

Show HN: Semantic Search for Zotero Local

https://github.com/ilDon/zotero-semantic-search
1•ildon•24m ago•0 comments

Show HN: Listen to your eBook and control the playback sentence by sentence

https://documentplayer.com/
1•janpmz•24m ago•0 comments

GPT-6 Sol and Luna push the cost efficiency frontier by halving token cost

https://artificialanalysis.ai/articles/gpt-6-sol-and-luna-push-the-cost-efficiency-frontier
1•theanonymousone•26m ago•0 comments

Observe – local semantic code search that admits when grep beats it

https://github.com/tritsystem/012-trit-search
1•gbranaa4•33m ago•0 comments

NobodyWho is an inference engine that lets you run LLMs locally and efficiently

https://github.com/nobodywho-ooo/nobodywho
1•Bluestein•36m ago•0 comments

Show HN: I built a site for my 42 km walk across 30 Tokyo stations

https://yamathon.tonymanh.space
1•tonymanh•37m ago•0 comments

Taming the ML Firehose: Scaling Feature Consistency

https://www.uber.com/us/en/blog/taming-ml-firehose/
1•iamsyr•37m ago•0 comments

Tearing Down a Spring Drive

https://www.thenakedwatchmaker.com/decon-seiko-snowflake
1•stefanv•39m ago•0 comments

New AI technique could make minimally invasive surgeries safer and more precise

https://news.mit.edu/2026/new-ai-technique-could-make-minimally-invasive-surgeries-safer-more-pre...
2•ycombinatronics•42m ago•1 comments

Rebranding artificial intelligence as super intelligence

https://www.bbc.com/news/videos/c8n5d9x10v14o
3•tin7in•42m ago•1 comments

Jev in 25 Lines of Python

https://www.nobodywho.ai/posts/jev-in-25-lines/
10•bashbjorn•43m ago•2 comments

Nvitop: A better top for Nvidia GPUs

https://github.com/XuehaiPan/nvitop
1•Nina_antalpha•45m ago•1 comments

Aesthetic Terminal ePub Reader

https://github.com/UsboKirishima/rr
1•333revenge•48m ago•0 comments

Gemini Hacked Three Companies in First Known Breakout by Google's AI

https://simonwillison.net/2026/Sep/18/gemini-hacked-three-companies/
2•coffee•49m ago•0 comments

Linux Command Line Tricks that you do not know yet

https://lovethepenguin.com/
1•torgeros•58m ago•0 comments

Show HN: Newdo – a todo list where the list is an output, not an input

https://newdo.beaverminds.com
1•shaanjus4u•59m ago•0 comments

Grit your teeth and ship it

https://www.seangoedecke.com/grit-your-teeth-and-ship-it/
1•coffee•1h ago•0 comments

Discourse (open source forums) adds Discord-style voice and video calls

https://meta.discourse.org/t/voice-discord-style-voice-and-video-rooms-now-bundled-with-discourse...
1•Scaled•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?