frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Books Recommendations?

1•washelterskelte•27s ago•0 comments

Go Is Not Just for CLIs. It Runs the Cloud Native Control Plane

https://devops-daily.com/posts/go-runs-the-cloud-native-control-plane
1•ejboy•5m ago•0 comments

The Silicon Man

https://arenamag.com/articles/the-silicon-man
1•barry-cotter•10m ago•0 comments

VID 20160804

https://www.youtube.com/results?sp=mAEA&search_query=vid%2B20160804
1•ycuser2•16m ago•1 comments

Arena, the same design system in React and Angular from one contract

https://arena.dravensoft.org/web-benches/
1•JuanCarlosHidal•20m ago•0 comments

A documentary about a scientist who thinks time loops are real

2•undefbehavior•23m ago•0 comments

Lenexus – dependency graph with deterministic risk engine and AI layer

https://lenexux.com/welcome
1•loicobg•26m ago•0 comments

ProgramBench

https://www.vals.ai/benchmarks/programbench
3•vinhnx•31m ago•1 comments

Learn Neuralese: a small field guide to talking like the swarm

https://shimmermathlabs.com/neuralese.html
1•nwhitehead•32m ago•0 comments

Making GPUs Fast: A Deep Dive into Training Performance (2025)

https://www.youtube.com/watch?v=pHqcHzxx6I8
1•sharma-arjun•35m ago•0 comments

USN-8717-1: Apache Tika vulnerability – Ubuntu security notices

https://ubuntu.com/security/notices/USN-8717-1
2•kyisaiah47•37m ago•0 comments

GitSpawn: Untrusted repos can execute code via AI coding agents

https://www.manifold.security/blog/ai-coding-agents-git-hijack
3•fourfire•51m ago•0 comments

Tracking Public Predictions with AI

https://mob.so/prescience
1•david_shi•54m ago•1 comments

The Rise and Fall of the Harper Rule

https://200.hc.com/stories/the-rise-and-fall-of-the-harper-rule/
1•ankitg12•55m ago•0 comments

Personal AI Router for Local Inference

https://www.nvidia.com/en-us/ai-on-rtx/personal-ai-router/
7•jonbaer•1h ago•0 comments

Dyson CameraJet ($500 Toothbrush)

https://www.dyson.com/discover/news/latest/introducing-camerajet
1•nycdatasci•1h ago•2 comments

To Ruby from Python

https://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-python/
2•thunderbong•1h ago•0 comments

Deploying blojsom 2.28 (2006) on a modern host, 2026

https://blojsom.audiodude.xyz/blojsom/blog/
1•audiodude•1h ago•1 comments

The Strange Brain of an F1 Driver

https://www.nytimes.com/2026/09/04/sports/f1-brains-drivers-racing.html
4•bookofjoe•1h ago•2 comments

New feature, agent owning maintenance plans

https://machinemind.cdtglobal.org/
1•igdiaz•1h ago•0 comments

Vietnam Ho Chi Minh City proposes curbs on gasoline, diesel vehicles from 2027

https://www.reuters.com/world/asia-pacific/vietnams-ho-chi-minh-city-proposes-curbs-gasoline-dies...
2•teleforce•1h ago•1 comments

AI-assisted writing is common because writing is hard

https://greyenlightenment.com/2026/08/24/ai-assisted-writing-is-common-because-writing-is-hard/
1•paulpauper•1h ago•1 comments

Claude Fable 5.1 vs. GPT-6 Astra, who wins on the 3D modeling?

https://github.com/PhiloLabs/fable51-worlds/tree/main
2•ameddserM•1h ago•2 comments

"Taste" Will Not Save You

https://molochinations.substack.com/p/taste-will-not-save-you
1•domhudson•1h ago•0 comments

The jobs apocalypse is postponed. An AI jobs boom is here

https://www.economist.com/finance-and-economics/2026/09/04/the-jobs-apocalypse-is-postponed-an-ai...
4•alephnerd•1h ago•1 comments

A Movie Can't Be Just Its Own Thing Anymore

https://www.theatlantic.com/culture/2026/09/onslaught-movie-review-a24-adam-wingard/688521/
1•paulpauper•1h ago•0 comments

Need advice on personal web project

https://www.what2do.me/
1•gnrlnoob•1h ago•2 comments

Hi, I'm a solo dev behind Twilock

https://apps.apple.com/us/app/twilock-screen-time-blocker/id6786474238
1•hussaintaheri•1h ago•0 comments

Show HN: Video Wall Live – View all your Ring cameras at once, on the big screen

https://ring.com/pages/appstore/video-wall-live
1•rabbimarshak•1h ago•0 comments

Shotdock – Wayland screenshot, recording, and window framing tool in Rust

https://github.com/sirrryasir/shotdock
3•sirrryasir•1h 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.