frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini for Go Developers: Building Agents in Go

https://danicat.dev/posts/gemini-for-go-developers-part-3-building-agents/
1•eigenBasis•4m ago•0 comments

iCloud+ Includes Apple TV, Arcade, and Curated Music Stations in 100 Countries

https://www.macrumors.com/2026/09/15/icloud-plus-includes-apple-tv-arcade-100-countries/
1•calme_toi•4m ago•1 comments

Omarchy ships its own Linux kernel in v4.0.4

https://github.com/omacom/omarchy/releases/tag/v4.0.4
2•djfergus•6m ago•0 comments

Organizing Context in a Multi-Agent Harness

https://www.langchain.com/blog/organizing-context-in-a-multi-agent-harness
1•gemanor•6m ago•0 comments

Never-again – so your AI agent stops repeating mistakes you fixed

https://github.com/malaysherasia-ai/claude-never-again
1•malaysherasia-a•7m ago•0 comments

There is NO realistic scenario where AI wipes out all of humanity

https://twitter.com/RichardSocher/status/2099889673153683766
1•tosh•8m ago•1 comments

Senate Blocks Cryptocurrency Regulation

https://www.latimes.com/world-nation/story/2026-09-15/senate-blocks-cryptocurrency-regulation-as-...
3•1vuio0pswjnm7•11m ago•0 comments

A backtest can pose a question its own data cannot answer

https://research.creativebyzuniga.com/rsi2/
1•CilantroCo•11m ago•0 comments

Potemkin Understanding in Large Language Models (2025)

https://arxiv.org/abs/2506.21521
1•mpweiher•11m ago•0 comments

Text Recognition techniques for premodern Italian and Devanāgarī manuscripts

https://uniqueatpenn.wordpress.com/2026/09/11/2025-2026-sims-fellows-applying-escriptoriums-handw...
1•bryanrasmussen•15m ago•1 comments

A Super-Accurate Clock Using a Tiny Microcontroller

https://hackaday.com/2026/09/15/a-super-accurate-clock-using-a-tiny-microcontroller/
2•fork-bomber•17m ago•0 comments

The structure and lasting impact of the Roman road system

https://www.nature.com/articles/s41467-026-75453-3
4•geox•21m ago•0 comments

Jev means structured output is interesting again

https://www.seangoedecke.com/jev-means-structured-output-is-interesting-again/
2•dondraper36•21m ago•0 comments

Qwen3.8 Max – Cost per task higher than Astra on Artificial Analysis

https://artificialanalysis.ai/models/qwen3-8-max
1•mydreamof•25m ago•1 comments

COBOL dev won .NET hackathon with help from AI

https://www.theregister.com/ai-and-ml/2026/09/15/cobol-dev-won-net-hackathon-with-help-from-ai-an...
3•theanonymousone•26m ago•1 comments

Valeriepieris Circle

https://en.wikipedia.org/wiki/Valeriepieris_circle
1•edward•30m ago•0 comments

Show HN: Point at anything in your app, say what you want, get a spec

https://dhamark.com/try
1•Femina•31m ago•0 comments

Show HN: LaunchPad – I built a Launchpad to replace macOS Apps

1•zhangchioulin•32m ago•0 comments

UK mathematician debunks myth around Parthenon's optical illusions

https://www.theguardian.com/science/2026/sep/16/uk-mathematician-debunks-myth-parthenon-optical-i...
1•trocado•33m ago•0 comments

The Gap Will Grow

https://backnotprop.substack.com/p/the-gap-will-grow
1•ramoz•35m ago•0 comments

The secret formula for Apple's rounded corners (2023)

https://arun.is/blog/apple-rounded-corners/
1•guynamedloren•36m ago•0 comments

Dense vs. Moe Models: Active Parameters, Throughput, and When to Choose Each

https://developer.nvidia.com/blog/dense-vs-moe-models-active-parameters-throughput-and-when-to-ch...
1•pretext•37m ago•0 comments

Nightmare Eclipse revelaved his identity

https://twitter.com/MSNightmare2000/status/2099381382925447545
1•croes•37m ago•0 comments

Secret Life of Circuits – Illustrated Guide to Electronic Circuit Design

https://nostarch.com/secret-life-of-circuits
2•alibarber•40m ago•0 comments

Sanders: "If AI is coming for workers, it should bring a 4-day workweek with it"

https://fortune.com/2026/09/15/bernie-sanders-ai-four-day-workweek-bill/
2•Markoff•42m ago•1 comments

Ask HN: How do you test an app from a region you're not physically in?

1•Stranger5901•45m ago•1 comments

Attribution-Based Control in AI Systems

https://attribution-based-control.ai/
1•handfuloflight•48m ago•0 comments

Why WordPress Is Still the #1 CMS in 2026

https://wpaudit.cc/blog/why-wordpress-is-the-worlds-number-one-cms-2026/
1•mysticmetal•50m ago•0 comments

Apple M5 Ultra Geekbench

https://browser.geekbench.com/v7/cpu/354092
2•7777777phil•53m ago•0 comments

Roundtables: Could AI kill us all?

https://www.technologyreview.com/2026/09/15/1143936/roundtables-will-ai-really-kill-us-all/
1•joozio•54m 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.