frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

U.S. to suspend the Jones Act in a bid to curb soaring oil prices

https://www.bloomberg.com/news/articles/2026-03-12/trump-administration-set-to-suspend-jones-act-...
1•geox•26s ago•0 comments

Boardsmith – text prompt to KiCad schematic, BOM, and firmware (works offline)

https://github.com/ForestHubAI/boardsmith
1•ForestHubAI•1m ago•1 comments

A plan to get more electricity to West Texas may come undone

https://www.texastribune.org/2026/03/12/west-texas-electricty-plan/
1•hn_acker•1m ago•0 comments

Maligna Kodera

https://krzyhau.itch.io/maligna-kodera
1•ta988•2m ago•0 comments

Title: Show HN: Aurora – Live dashboard watching local LLMs create autonomously

https://aurora.elijah-sylar.com
1•elijahscamp•3m ago•1 comments

Why Task Proficiency Doesn't Equal AI Autonomy

https://www.signalbloom.ai/posts/why-task-proficiency-doesnt-equal-ai-autonomy/
1•anonu•7m ago•0 comments

BallotGuessr

https://www.ballotguessr.com/
1•colinprince•8m ago•0 comments

Amygdala: Prompt a topic, get a footnoted report from experts in seconds

https://amygdala.eu/research
1•JoranCornelisse•9m ago•0 comments

Microsoft EVP Rajesh Jha is retiring

https://www.businessinsider.com/microsoft-executive-rajesh-jha-retiring-read-memos-2026-3
1•DarkCrusader2•10m ago•1 comments

Military AI as 'Abnormal' Technology

https://www.lawfaremedia.org/article/military-ai-as--abnormal--technology
2•hn_acker•10m ago•0 comments

Use Neovim's server capabilities on your local machine

https://github.com/mhinz/neovim-remote
2•RobTonino•11m ago•0 comments

UK to drop historic figures from banknotes and change them to images of wildlife

https://brusselssignal.eu/2026/03/uk-to-drop-historic-figures-from-banknotes-and-change-them-to-i...
3•thunderbong•11m ago•0 comments

2026 AI Adoption and Workforce Performance Benchmarks

https://www.activtrak.com/resources/state-of-the-workplace/
1•ptrhvns•11m ago•0 comments

Runtime Safety Infrastructure for AI Agents

https://nono.sh
1•TheTaytay•12m ago•0 comments

Show HN: OneCLI – Vault for AI Agents in Rust

https://github.com/onecli/onecli
4•guyb3•13m ago•0 comments

Finland Is Ready for Russia. Is Anyone Else?

https://www.bloomberg.com/graphics/2026-opinion-finland-is-ready-russia-arctic/
2•RyanShook•14m ago•0 comments

Get ready for takeoff with Uber and Joby

https://www.uber.com/us/en/newsroom/uber-air/
1•r-bt•14m ago•0 comments

Live AI Session Summaries in a Two-Line Tmux Status Bar

https://quickchat.ai/post/tmux-session-summaries-for-parallel-ai-agents
1•piotrgrudzien•14m ago•0 comments

Reversing memory loss via gut-brain communication

https://med.stanford.edu/news/all-news/2026/03/gut-brain-cognitive-decline.html
3•mustaphah•15m ago•0 comments

Should Sam Altman fear token compression?

3•Gillesray•17m ago•0 comments

Show HN: Open-Source GTM Skills for Claude Code, Codex, and Cursor

https://github.com/athina-ai/goose-skills
1•hbamoria•17m ago•0 comments

DesiPeeps

https://desipeeps.com
1•saibuilds•18m ago•0 comments

Should Sam Altman fear token compression?

https://www.edgee.ai/blog/posts/2026-03-12-should-sam-altman-fear-token-compression-technology-or...
1•Gillesray•19m ago•1 comments

I wrote Gitleaks, now I'm maintaining Betterleaks

https://www.aikido.dev/blog/betterleaks-gitleaks-successor
4•zricethezav•19m ago•1 comments

Nvidia Fork of Godot Engine

https://github.com/NVIDIA-RTX/godot
2•throwaway2027•20m ago•0 comments

Hegger

https://hegger.party
2•davedx•21m ago•0 comments

Ask HN: Which DNS based ad blocker do you suggest?

2•SoftwareEn2•21m ago•1 comments

Save the Student Essay

https://openquestionsblog.substack.com/p/save-the-student-essay
1•voxleone•22m ago•0 comments

Show HN: BoltzPay – fetch() that pays for AI agents (x402 and L402)

https://github.com/leventilo/boltzpay
1•leventilo•23m ago•0 comments

Show HN: Stop AI Debugging with Print(). Use a Debugger

https://github.com/AlmogBaku/debug-skill
1•almogbaku•24m ago•0 comments
Open in hackernews

Ask HN: How do you send large sets of data to an LLM

2•obayesshelton•10mo 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•10mo 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•10mo 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?