frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Estimating π with a Coin

https://arxiv.org/abs/2602.14487
1•sebg•1m ago•0 comments

Show HN: King Louie – desktop AI with 20 agent tools, no cloud required

https://github.com/the-banana-tool/king-louie
1•sethito•1m ago•0 comments

The "Passive Income" trap ate a generation of entrepreneurs

https://www.joanwestenberg.com/the-passive-income-trap-ate-a-generation-of-entrepreneurs/
3•devonnull•2m ago•0 comments

Timeplus Released AgentGuard – Real-Time Security Detection for AI Agents

https://www.timeplus.com/post/agentguard
1•gangtao•2m ago•0 comments

The Rise of Marketing Speak

https://sustainableviews.substack.com/p/the-rise-of-marketing-speak
1•rzk•3m ago•0 comments

Break Bricks on Any Webpage

https://github.com/canalun/brick-break-anywhere
1•indigodaddy•3m ago•0 comments

The Mystery in the Medicine Cabinet

https://asteriskmag.com/issues/14/the-mystery-in-the-medicine-cabinet
1•downsplat•3m ago•1 comments

SEC's Power to Force Fraudsters to Disgorge Gains Returns to U.S. Supreme Court

https://www.law.com/nationallawjournal/2026/04/16/secs-power-to-force-fraudsters-to-disgorge-gain...
1•1vuio0pswjnm7•6m ago•0 comments

Doom with LaTex

https://julienlargetpiet.tech/articles/dissecting-latex-revenge-four-years-later.html
1•random__duck•6m ago•0 comments

Netflix Chair Reed Hastings to Leave Board in June

https://www.wsj.com/business/media/netflix-chair-reed-hastings-to-leave-board-in-june-6d887c27
1•fortran77•10m ago•1 comments

Sekreets – Real-Time Scanning of Leaked AI API Keys on GitHub

https://sekreets.vercel.app/
2•certyfreak•12m ago•0 comments

Startup Wars: How George Lucas Produced Star Wars Like a Startup

https://bertolami.com/blog/startup-wars
1•specular•13m ago•0 comments

SFML 3.1 Is Released

https://github.com/SFML/SFML/releases/tag/3.1.0
1•eXpl0it3r•13m ago•0 comments

Ask HN: Opus 4.7 – is anyone measuring the real token cost on agentic tasks?

1•nicola_alessi•14m ago•0 comments

Show HN: The Public Tab – See every federal dollar flowing through your district

https://thepublictab.com/
1•jaaacckz•14m ago•2 comments

Ask HN: Agent orchestrators / UIs you use on top of Claude?

1•nyellin•15m ago•0 comments

Why Engineering Managers shouldn't be expected to code

https://dev.jimgrey.net/2026/03/25/the-player-coach-trap-why-engineering-managers-shouldnt-be-exp...
1•saeedesmaili•16m ago•0 comments

Perplexity Personal Computer

https://www.perplexity.ai/hub/blog/personal-computer-is-here
1•Yukonv•18m ago•0 comments

Artificial Intelligence Index Report [pdf]

https://hai.stanford.edu/assets/files/ai_index_report_2026.pdf
1•danielmorozoff•18m ago•0 comments

Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission

https://hemmabo-mcp-server.vercel.app/.well-known/mcp.json
1•Freezone•18m ago•2 comments

Electron 41 Released

https://www.electronjs.org/blog/electron-41-0
2•andrewstetsenko•19m ago•0 comments

The Pandaverse

https://www.theremingoat.com/blog/the-pandaverse
1•ecliptik•19m ago•0 comments

Sir-Bench – benchmark for security incident response agents

https://arxiv.org/abs/2604.12040
3•dan_l2•20m ago•2 comments

Single-agent AI coding is a nightmare for engineers

https://twitter.com/MilksandMatcha/status/2044863551186309460
1•sarahxc•20m ago•0 comments

How to make your one-on-ones more productive

https://effortbox.com/blog/how-to-make-your-one-on-one-more-productive/
1•andreylangovoy•20m ago•0 comments

Who's paying for tokens and why? (The Anthropic 1000)

https://www.robinsloan.com/lab/ai-spend/
2•speckx•24m ago•1 comments

Finding a duplicated item in an array of N integers in the range 1 to N − 1

https://devblogs.microsoft.com/oldnewthing/20260413-00/?p=112227
1•ibobev•24m ago•0 comments

Our new AI code policy: No AI

https://screenshotbot.io/blog/no-ai
2•kitallis•24m ago•0 comments

Show HN: AI compatibility without compromises

https://supercompat.com
1•Nedomas•25m ago•0 comments

GOP finalizing draft national privacy law that would preempt states

https://www.politico.com/news/2026/04/16/gop-national-privacy-law-technology-00876794
2•Cider9986•26m ago•0 comments
Open in hackernews

LLM functions in TypeScript: a composable pattern for prompt/LLM/parse/execute

https://medium.com/llm-exe
5•llm-exe•11mo ago

Comments

llm-exe•11mo ago
A few weeks ago I posted about llm-exe, a TypeScript library for structuring LLM calls with reusable components.

I just put together a Medium series that digs deeper into how it works. It breaks down the idea of an LLM function - an executor that wraps a prompt, a model, and a parser. Each part does one thing well, and together they give you a clean, well-typed, testable, and composable way to work with LLMs.

The posts walk through each layer: prompt, parser, LLM, executor. If you're building LLM features in production with TypeScript, I think you’ll find the structure helpful. I am interested in any feedback.

Medium series: https://medium.com/llm-exe

mrbashtech•11mo ago
Great work! folks at llm-exe; As a TypeScript developer working with LLMs, llm-exe has been a game-changer for me. It abstracts away the boilerplate of prompt formatting, model integration, and response parsing, allowing me to focus on building features.

The modular design—separating prompts, parsers, and executors—makes my codebase cleaner and more maintainable. Plus, the ability to switch between different LLM providers with minimal code changes is incredibly convenient.