frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What happened to Amprius and their claimed 450Wh/kg battery?

https://www.google.com/search?q=amprius+battery+450
1•walrus01•1m ago•1 comments

Building the CAD application of my dreams

https://v2.brep.io/blog/building-the-cad-application-of-my-dreams
1•mmiscool•5m ago•1 comments

New study shows that psychedelic drugs affect the brain differently

https://www.sdu.dk/en/om-sdu/fakulteterne/sundhedsvidenskab/nyheder-2026/psykedeliske-stoffer-paa...
1•XzetaU8•6m ago•0 comments

OpenBB belongs to everyone (their plan to open source)

https://openbb.co/
1•ColinEberhardt•12m ago•0 comments

NeoMME: Multimodal encoders trained from scratch with a single Transformer

https://huggingface.co/blog/Hcompany/neomme
1•CoderLim110•12m ago•0 comments

OpenAI Cut Off a Billion-Dollar Customer to Avoid Elon Musk

https://www.wired.com/story/openai-elon-musk-cursor-billion-revenue/
2•doener•18m ago•0 comments

Ask HN: Why is HN native dark mode not implemented yet?

1•SriniK•18m ago•1 comments

Decoding the NEC V20 Microcode

https://martypc.blogspot.com/2026/09/decoding-nec-v20-microcode.html
2•mariuz•20m ago•0 comments

Profession has died. Now what?

https://blog.ponelat.com/p/your-profession-has-died-now-what
1•ponelat•23m ago•0 comments

Anti-Ad Download Assistant" for Free

2•jackie_001•26m ago•0 comments

Cerebras and Compute Nordic Finland Announces AI Data Centre in Mikkeli, Finland

https://investors.cerebras.ai/news-releases/news-release-details/cerebras-and-compute-nordic-finl...
2•olvy0•26m ago•0 comments

Show HN: Terminal-native prompt composer for power users running many agents

https://github.com/oborchers/proqi
2•theroot_•28m ago•0 comments

Model Fatigue Is Real

https://moekhalil.substack.com/p/model-fatigue-is-real
3•mfkhalil•33m ago•1 comments

Max H3 – MiniMax H3 Max AI Video Generator

https://www.maxh3.com/
2•Follow_Cloud•34m ago•0 comments

US diesel prices hit record high as conflicts intensify supply crunch

https://www.reuters.com/business/energy/us-diesel-hits-record-5820-gallon-gasbuddy-says-2026-09-03/
4•hebelehubele•38m ago•0 comments

What's New in Neovim 0.13

https://dotfiles.substack.com/p/whats-new-in-neovim-013
2•htfy96•38m ago•0 comments

Buying Used? Check the Warranty History Before You Pay

https://holdmybill.com/blog/buying-used-check-warranty-history
2•niksmac•39m ago•0 comments

World Sandwich

https://claude.ai/code/artifact/5ffe9a8e-e1c6-4204-b893-585bea78a252
2•voxycon•40m ago•0 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
3•meetpateltech•40m ago•0 comments

Arcade – The White House

https://www.whitehouse.gov/arcade/
2•personjerry•41m ago•0 comments

Oura's IPO Reveals High Growth for Smart-Ring Maker

https://www.wsj.com/finance/stocks/ouras-ipo-reveals-high-growth-for-smart-ring-maker-9ce3e4c9
2•mgh2•41m ago•0 comments

Volkswagen board approves plan to cut another 50k jobs

https://www.bbc.co.uk/news/articles/cx2z0kvy4n4o
2•vinni2•42m ago•0 comments

Trump White House Launches Arcade with Games to Build Wall, Deport Migrants

https://www.newsweek.com/trump-white-house-launches-arcade-with-games-to-build-wall-deport-migran...
2•personjerry•43m ago•0 comments

New stealth model: omen alpha

https://twitter.com/opencode/status/2095746098522452093
1•ryanvogel•43m ago•0 comments

Scott Galloway: The Impossibility of Turning Men into the Progressiv9

https://www.conorfitzgerald.com/p/scott-galloway-and-the-impossibility
1•barry-cotter•45m ago•0 comments

Average wages no longer buy a standard-size home in most of Europe

https://english.elpais.com/economy-and-business/2026-09-03/average-wages-no-longer-buy-a-standard...
3•geox•47m ago•0 comments

Show HN: Lettura, an app to read FreshRSS feeds built for RSS enthusiasts

https://giuliomagnifico.blog/post/2026-10-01-lettura-app/
1•giuliomagnifico•49m ago•0 comments

Volkswagen flags 50k job cuts across group as board approves turnaround plan

https://www.reuters.com/business/autos-transportation/volkswagen-supervisory-board-approves-trans...
2•haunter•50m ago•0 comments

UFTA-VMM – transparent page-fault memory tiering with an adaptive predictor

https://tushi-tomoto-gooyie.itch.io/ufta-xp
1•ShaggyRogers•51m ago•0 comments

How Delhi built a world-class metro for a bargain

https://www.nytimes.com/2026/09/02/headway/india-delhi-metro-public-transit.html
2•ripvanwinkle•52m ago•1 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.