frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Europe's warm nights nearly doubled this summer

https://emot.substack.com/p/europes-warm-nights-nearly-doubled
1•emot•3m ago•0 comments

Anyone Got a Fenty.dev Invite?

1•penguinsnetwork•4m ago•0 comments

The Distractor

http://booktwo.org/notebook/the-distractor/
1•zetamax•4m ago•0 comments

Show HN: Clownbid.lol – pay to be the biggest clown on the internet

https://clownbid.lol/
1•nadermx•5m ago•0 comments

Give Your Coding Agent a Journal

https://doug.sh/posts/give-your-coding-agent-a-journal/
2•dougcalobrisi•6m ago•0 comments

If You Knew God Exists, Wouldn't You Become a Priest?

https://joecmarshall.com/posts/if-you-knew-god-exists-wouldnt-you-become-a-priest/
3•CoreSet•7m ago•0 comments

Are We Learning to Think Less?

https://socketstudy.com/sparks/are-we-learning-to-think-less/
1•wingrove•8m ago•1 comments

The Ternus Era at Apple Begins, but Cook Isn't Leaving

https://www.bloomberg.com/news/videos/2026-08-30/the-ternus-era-at-apple-begins-but-cook-isn-t-le...
2•sbulaev•12m ago•0 comments

Will anybody use AI as much as coders?

https://www.economist.com/business/2026/08/30/will-anybody-use-ai-as-much-as-coders
2•tagawa•12m ago•1 comments

Show HN: Break 5, the addictive, 5 minute, daily word game

https://break5.co.uk/
1•dwgebler•14m ago•0 comments

West Point prof fired for continuing to teach human causes of climate change

https://www.theguardian.com/us-news/2026/aug/27/west-point-climate-scientist-fired
2•randycupertino•16m ago•0 comments

Israel Is Running a Synthetic Think Tank to Influence AI Search Results

https://www.404media.co/israel-is-running-a-synthetic-think-tank-to-influence-ai-search-results/
4•Jimmc414•17m ago•0 comments

Show HN: Open-source hands-free mouse control with Tracky Mouse

https://github.com/1j01/tracky-mouse/
1•1j01•19m ago•0 comments

Debian developer resigns after corporate LLM use without disclosure wins vote

https://lists.debian.org/debian-devel/2026/08/msg00318.html
6•majorchord•21m ago•1 comments

Papers with wrong IDs on ArXiv more common

https://www.reddit.com/r/learnmachinelearning/comments/1w2u68z/heads_up_some_papers_are_citing_co...
4•marysminefnuf•26m ago•0 comments

Show HN: St. Louis Food Map

https://stlouing.com/food/
1•stlouing•27m ago•0 comments

Building software factories (with no slop)

https://twitter.com/dzhng/status/2090252351533973768/
1•zatkin•30m ago•0 comments

Packman package manager to be discontinued on 2026-12-31

https://lists.links2linux.de/pipermail/packman/2026-August/018314.html
1•epenn•30m ago•0 comments

"A big win for Android interoperability"

https://www.osnews.com/story/145665/a-big-win-for-android-interoperability/
2•aryonoco•31m ago•0 comments

Lady Gaga is now an AI-longevity biotech founder

https://www.regeneration.ai/p/lady-gaga-is-now-an-ai-longevity
1•Gaishan•34m ago•0 comments

The tests passed. The extension was still broken

https://channelfence.app/blog/the-tests-passed-the-extension-was-still-broken/
1•ChannelFence•36m ago•0 comments

No-Code Self-Documenting Makefiles

https://github.com/bahmanm/bmakelib/releases/tag/v0.9.0
1•bahman-m•36m ago•0 comments

Show HN: What Apple's OS updates silently change in the on-device AI model

https://umer9538.github.io/underfoot/
2•Umer2521•37m ago•0 comments

How to build a diffusion language model

https://kuleshov-group.github.io/blog/blog/2026/how-to-build-a-diffusion-language-model/
2•volodia•37m ago•0 comments

The Aviation Herald was sued

https://avherald.com/h?article=53c8958a&opt=0
1•kotaKat•39m ago•0 comments

Show HN: I timestamped 34 trading strategy sweeps before running them

https://mobinmoharami.github.io/sweep-registry/
1•mobinmohrarami•39m ago•0 comments

Matrox: Graphics for Professionals

https://www.abortretry.fail/p/matrox
3•BirAdam•39m ago•0 comments

California Passes AB-1856 for Open-Source Relief over Age Verification

https://www.phoronix.com/news/California-AB-1856-Passes
4•birdculture•55m ago•0 comments

Generating scenarios for extreme events, without extreme data

https://news.mit.edu/2026/generating-scenarios-extreme-events-without-extreme-data-0824
1•MarcoDewey•1h ago•0 comments

Accidental Aesthetics and Romance of Power Wires: Infrastructure Is Sexy

https://www.governance.fyi/p/accidental-aesthetics-and-romance
6•crescit_eundo•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.