frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

From dance floor to war: China readies humanoid robots for combat

https://www.reuters.com/world/china/dance-floor-war-china-readies-humanoid-robots-combat-2026-09-07/
1•bushwart•1m ago•0 comments

How Bats Prevent Doppler Acoustic Interference

https://hackaday.com/2026/09/07/how-bats-prevent-doppler-acoustic-interference/
1•sohkamyung•1m ago•0 comments

Arm unveils AI Portal for optimized AI apps

https://newsroom.arm.com/news/arm-unveils-arm-ai-portal
1•CoderLim110•2m ago•0 comments

UAE-based Falcon AI NSFW classifier among top global open-source models (2025)

https://www.middleeastainews.com/p/uae-ai-model-tops-50-million-monthly
1•instagraham•7m ago•0 comments

PS5 emulator can now run the console version of GTA V

https://www.tomshardware.com/video-games/pc-gaming/ps5-emulator-can-now-run-the-console-version-o...
1•avaer•8m ago•0 comments

What is your thought about the future on video extend developing?

https://videoall.ai/video‑extend
1•henryjin76•11m ago•1 comments

Working with Git Worktrees in Magit

https://emacsredux.com/blog/2026/09/02/working-with-git-worktrees-in-magit/
1•srijan4•15m ago•0 comments

0Pirate – AST-level code anonymizer and MCP proxy for frontier LLMs

https://pypi.org/project/0pirate/
1•arunmadhavan•17m ago•0 comments

JIT Context OS – Epistemic context runtime for coding agents

https://github.com/wojciechwiesner/jit-context
1•WWiesner•19m ago•0 comments

Show HN: MacDelta – A ChangeLog for Your Mac

https://macdelta.app
1•anand_murugan•22m ago•0 comments

CodeMetrics.CLI for C# projects in VS Code and Visual Studio

https://github.com/quicksln/CodeMetrics.CLI
1•qsln•24m ago•0 comments

TrustNotch – Tamper-evident audit logs for AI agents, verifiable offline

https://trustnotch.com/
1•sandrochekalov•25m ago•0 comments

My first extension with 20 useful features

https://chromewebstore.google.com/detail/digital-shield-tab-suspen/pkonihncnkmbejhhjadaognganhinnhc
1•digitaShida•25m ago•1 comments

Hiring and Firing a DBA

https://www.jmduke.com/posts/hiring-and-firing-a-dba.html
1•Tomte•32m ago•0 comments

The New Hugo at Home Plus a Tour of My Shelves

https://whatever.scalzi.com/2026/09/07/the-new-hugo-at-home-plus-a-tour-of-my-shelves/
1•Tomte•32m ago•0 comments

DeepSeek/Qwen are surprisingly well at generating code for DSCI pipelines

https://chat.deepseek.com/share/jg3hcnatoliqs1ct5i
3•melezhik•32m ago•3 comments

Venus may have been temperate and potentially habitable for most of its history

https://spacedaily.com/t-venus-carbonatite-lava-canali-co2-habitable-climate/
2•bryanrasmussen•32m ago•1 comments

Star Trek 60th Anniversary – National Air and Space Museum

https://airandspace.si.edu/whats-on/events/star-trek-60th-anniversary
1•rbanffy•32m ago•0 comments

Major Math Breakthrough by AI

https://mastodon.social/@tristanbuckmaster/117233413705701198
3•mvrandswe•33m ago•0 comments

GrapheneOS is building its own RCS support to cut Google Messages out

https://www.androidauthority.com/grapheneos-messaging-rcs-support-secure-paste-3708317/
3•the-mitr•36m ago•0 comments

Eiffel Tower employees strike after female staff removed

https://www.google.com/url?q=https://amp.dw.com/en/eiffel-tower-closed-strike-women-hindu/a-79152...
4•Michelangelo11•45m ago•2 comments

Magic-mushroom compound blocks a side effect of chemotherapy in mice

https://www.nature.com/articles/d41586-026-02744-6
4•tzury•47m ago•0 comments

Switching Password Managers in 2026

https://rmondello.com/2026/09/07/switching-password-managers-2026/
2•wrxd•47m ago•0 comments

CivBench: A Long-Horizon Benchmark for Tool-Mediated Agents in Civilization VI

https://arxiv.org/abs/2609.02459
1•taubek•47m ago•0 comments

Agility Robotics reports $1.8M revenue ahead of humanoid SPAC

https://www.therobotreport.com/agility-robotics-reports-18m-revenue-ahead-of-humanoid-spac/
1•raptortech•48m ago•0 comments

Generals – Conquer the live world map

https://generals.lol
2•mshermamatov•48m ago•0 comments

Do tech billionaires dream of shared abundance? We should probably just tax them

https://theconversation.com/do-tech-billionaires-dream-of-shared-abundance-we-should-probably-jus...
10•billybuckwheat•50m ago•0 comments

Show HN: Typebook engage yourself in reading by painstakingly writing every word

https://typebook.duckdns.org/
1•vegnus•50m ago•0 comments

Robot-Use Agents

https://web.mit.edu/phillipi/www/writing/robot-use-agents.html
1•hardmaru•50m ago•0 comments

Autistici.org Domain Taken Down

https://autistici.org
3•oriettaxx•53m ago•1 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?