frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

10% of Firefox crashes are caused by bitflips

https://mas.to/@gabrielesvelto/116171750653898304
1•marvinborner•26s ago•0 comments

Ask HN: How do you find decent contracting/freelance roles without recruiters?

1•Gooblebrai•1m ago•0 comments

Pentagon Eyes New 'Robot Ship' Concept for Low-Profile, All-Domain Logistics

https://nextgendefense.com/pentagon-robot-ship-concept/
1•asdefghyk•1m ago•1 comments

ChatRoutes is open source now

https://github.com/afzal-xyz/chatroutes-opensource
1•mednosis•2m ago•1 comments

Agent's context is a junk drawer

https://www.augmentcode.com/blog/your-agents-context-is-a-junk-drawer
1•knes•3m ago•0 comments

Show HN: OpenTimelineEngine – Shared local memory for Claude Code and codex

https://github.com/JOELJOSEPHCHALAKUDY/open-timeline-engine
1•joeljoseph_•3m ago•0 comments

I'm building a $15/mo status page would you pay for it?

https://www.indiehackers.com/post/im-building-a-15-mo-status-page-would-you-actually-pay-for-it-6...
1•Powellfgn•4m ago•0 comments

The Purpose of Keyboard Bumps – Its Not What You Think

https://www.youtube.com/watch?v=FfkxxSOforw
1•aloneguid•4m ago•0 comments

Enterprise UI Module Federation

https://stevekinney.com/courses/enterprise-ui/module-federation
1•nadis•5m ago•0 comments

Show HN: We want to kill SaaS glue code with one shared infrastructure model

https://wacht.dev/
1•snipextt•5m ago•0 comments

Show HN: Tyop: A macOS menu bar app that fixes typos on demand

https://github.com/liamg/tyop
1•liamg•6m ago•0 comments

Show HN: safe-docx lets coding agents edit Word docs without breaking formatting

https://github.com/UseJunior/safe-docx
1•sobiajulu•6m ago•2 comments

Show HN: I built a language app that generates songs from your vocab list

https://www.lingotify.app/
1•gursu8•7m ago•0 comments

A zero-dependency multi-agent AI engine that negotiates instead of agreeing

https://github.com/ProjectPortmanteau/Execution
1•illportstudios•9m ago•1 comments

Father claims Google's AI product fuelled son's delusional spiral

https://www.bbc.com/news/articles/czx44p99457o
2•tartoran•10m ago•0 comments

The origin of our fascination with crystals

https://www.frontiersin.org/journals/psychology/articles/10.3389/fpsyg.2026.1633599/full
1•michaefe•12m ago•0 comments

Treetops Emit Ultraviolet Sparkles During Thunderstorms

https://www.smithsonianmag.com/smart-news/treetops-emit-ultraviolet-sparkles-during-thunderstorms...
1•thunderbong•12m ago•0 comments

Show HN: MomentSurfer – AI Scrolling Agent for Social Media

https://www.momentsurfer.com/
1•priyankaajsr•13m ago•0 comments

Don't Let Crypto Kill the Economy

https://bettermarkets.org/analysis/dont-let-crypto-kill-the-economy/
1•petethomas•13m ago•0 comments

Show HN: SmartAgentKit – policy-governed smart wallets for AI agents

2•martinbf•15m ago•0 comments

Show HN: Karellen-rr-MCP – MCP server that gives LLMs rr reverse debugging

https://github.com/karellen/karellen-rr-mcp
1•arcivanov•16m ago•1 comments

Israel Spent Years Hacking Tehran Traffic Cameras to Track Khamenei

https://thedefensepost.com/2026/03/04/israel-traffic-cameras-track-khamenei/
6•gambutin•17m ago•1 comments

Genome modelling and design across all domains of life with Evo 2

https://www.nature.com/articles/s41586-026-10176-5
1•kkoncevicius•17m ago•0 comments

Google ends its 30 percent app store fee and welcomes third-party app stores

https://www.engadget.com/apps/google-ends-its-30-percent-app-store-fee-and-welcomes-third-party-a...
5•_____k•18m ago•1 comments

Google Chrome moving to a two-week Release Cycle, to begin on 8 September

https://developer.chrome.com/blog/chrome-two-week-release
1•gr4vityWall•18m ago•0 comments

Ask HN: How will agents change our theories of labor?

1•char_string•19m ago•0 comments

Blogosphere – a directory of independent blogs and personal websites

https://blogosphere.app/
3•Curiositry•20m ago•1 comments

Show HN: A browser based sequencer for rapid music prototyping

https://music.grinningfrog.com
1•sesquieu•24m ago•0 comments

Helpme: Minimal tmux wrapper for context-aware agent debugging

https://github.com/cameronfyfe/helpme
3•ramoz•25m ago•0 comments

A Dual-LLM Policy for Reducing Noise in Agentic Program Repair

https://arxiv.org/abs/2510.03217
1•azhenley•25m 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•9mo ago

Comments

llm-exe•9mo 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•9mo 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.