frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Section 10 of Income Tax Act: Online Guide and Key Details – SMFG India Credit

https://www.smfgindiacredit.com/knowledge-center/section-10-of-income-tax-act.aspx
1•saumyaraut11•1m ago•0 comments

Poll: Europeans are torn between America and China

https://www.politico.eu/article/poll-europeans-torn-between-america-china/
1•vrganj•1m ago•0 comments

Start faster, stay updated, and navigate cleaner docs for ScalarDB and ScalarDL

https://medium.com/scalar-engineering/start-faster-stay-updated-and-navigate-cleaner-docs-for-sca...
1•josh-scalar•3m ago•0 comments

CoworkingCafe Study Ranks Atlanta, SF and Seattle as Top Cities for Grads

https://www.coworkingcafe.com/blog/the-best-cities-for-recent-grads/
1•vanclaude•4m ago•1 comments

I still enjoy building websites without AI

https://alprado.com/blog/i-still-enjoy-building-websites-without-ai/
1•alprado50•7m ago•0 comments

Everything Is Downstream of Technology

https://twitter.com/deepwhitman/status/2072896235753947361
2•bilater•11m ago•0 comments

Startup Spotlight: Inside Pastmaps' Solo Climb to Six Figures

https://runtimewire.com/article/startup-spotlight-inside-pastmaps-solo-climb-to-six-figures
2•ryanmerket•15m ago•0 comments

Relocating 6M Singapore bees and counting, one nest at a time

https://www.reuters.com/world/asia-pacific/relocating-6-million-singapore-bees-counting-one-nest-...
1•petethomas•22m ago•0 comments

Show HN: WyrmRSS – a self-hosted RSS reader with inline YouTube

https://github.com/kryoseu/WyrmRSS
1•kryoseu•23m ago•0 comments

Trump Jr.'s 'Amazon of guns' could make millions under new proposed firearm rule

https://www.reuters.com/legal/government/trump-jrs-amazon-guns-could-make-millions-under-new-prop...
6•petethomas•23m ago•0 comments

Claude Code Settings That Made Me a Faster Software Architect

https://jsdev.space/claude-code-settings-software-architect/
1•javatuts•23m ago•0 comments

A Deterministic Replacement for LLM-as-Judge in Stateful Agent Evaluation

https://arxiv.org/abs/2606.22737
4•jflynt76•24m ago•0 comments

Raw footage to maximized-retention videos

https://www.autoeditor.app/
1•Quise•28m ago•0 comments

New legal right to speak to a human for finance consumers

https://www.rte.ie/news/2026/0702/1581517-finance-chatbots/
3•austinallegro•37m ago•0 comments

Deepagents

https://github.com/langchain-ai/deepagents
2•kristianpaul•42m ago•1 comments

AI dev platform that keeps project context across the whole codebase lifecycle

https://brunelly.com/
2•RihabAI•48m ago•0 comments

AskHN: Using 'claude -p' for running Mr.Jassy - AWS butler agent

2•anoop_kumar•50m ago•0 comments

Wasmer: Fast, secure, lightweight containers based on WebAssembly

https://wasmer.io/
9•handfuloflight•53m ago•2 comments

BYD Denza Z steer-by-wire

https://carnewschina.com/2026/07/01/byd-denza-z-steer-by-wire-fudi-chassis/
6•Alien1Being•56m ago•1 comments

Google used its Android phone network's accelerometers as mini-seismometers

https://substack.com/@jklundblad/note/c-285567479
2•initramfs•58m ago•0 comments

From Open Source Software to Open Source Strategy

https://p3institute.substack.com/p/from-open-source-software-to-open
3•cletusigwe•59m ago•0 comments

The Free Market Lie: Why Switzerland Has 25 Gbit Internet and America Doesn't

https://stefan.schueller.net/posts/the-free-market-lie/
165•talonx•59m ago•80 comments

How to avoid AI in as many places as possible

https://www.fastcompany.com/91566861/how-to-avoid-ai-in-as-many-places-as-possible
3•1vuio0pswjnm7•1h ago•0 comments

Show HN: Bedtimeforkids let kids learn while entertain

https://bedtimeforkids.vercel.app
2•dutay05•1h ago•0 comments

Ua-tracer: what does a user agent fetch, follow and run

https://uatracer.com/
2•twapi•1h ago•0 comments

Every AI Visibility Tool Is Lying to You

https://canonry.ai/blog/ai-visibility-tools-are-lying
4•arberx•1h ago•0 comments

Google loses fight against record €4.1B EU antitrust fine

https://www.reuters.com/world/eu-top-court-dismisses-google-fight-against-record-41-billion-eu-an...
3•1vuio0pswjnm7•1h ago•0 comments

What Would Mark Twain Think of America at 250?

https://www.theatlantic.com/ideas/2026/07/mark-twain-america-anniversary-critique/687718/
3•paulpauper•1h ago•0 comments

Why Everyone Is Suddenly Talking About 'Universal Basic Capital'

https://www.theatlantic.com/economy/2026/07/universal-basic-capital-ai/687759/
6•paulpauper•1h ago•0 comments

Merlin: A computed tomography vision–language foundation model and dataset

https://www.nature.com/articles/s41586-026-10181-8
2•bryanrasmussen•1h 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•1y ago

Comments

llm-exe•1y 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•1y 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.