frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Expat 2.8.2 released, fixes 13 vulnerabilities

https://blog.hartwork.org/posts/expat-2-8-2-released/
2•spyc•1m ago•0 comments

Show HN: OpenKnowledge – open-source alternative to Obsidian/Notion

https://openknowledge.ai/
6•engomez•2m ago•1 comments

Show HN: A Kanban for vibe coding in Claude Code and Codex

https://www.fredrin.dev
2•jaequery•3m ago•0 comments

1,600°C reactor can melt raw Moon dust into finished solar cells, glass and wire

https://www.autonocion.com/us/reactor-moon-solar-cells/
4•Jimmc414•4m ago•0 comments

IBM Outlines Sub-1nm Nanostack Transistor Technology

https://www.servethehome.com/ibm-outlines-sub-1nm-nanostack-transistor-technology/
2•ksec•5m ago•0 comments

What is the best way to get survey answers?

3•Lil-Finance-Bro•7m ago•0 comments

Tabularis: Open-source desktop SQL client your AI agent can use

https://tabularis.dev/
2•maxloh•7m ago•0 comments

Code review is dead. Long live code review

https://blog.codacy.com/code-review-is-dead-why-ai-generated-code-needs-verification-not-human-ap...
3•claudiacsf•7m ago•0 comments

Windows 10 quietly gets one more year of support and updates

https://www.neowin.net/news/windows-10-quietly-gets-one-more-year-of-support-and-updates/
2•bundie•7m ago•0 comments

Measuring tech debt in tokens instead of engineering hours

https://heysoup.co/notes-tech-debt-token-function
2•heysoup•7m ago•0 comments

Show HN: Use AI once to build the automation, then run it with $0 in AI

https://www.visualbuild.me
3•visualbuildme•11m ago•0 comments

Show HN: VibeDrift – measuring AI coding drift across open source repos

https://www.vibedrift.ai
3•samiahmadkhan•11m ago•0 comments

The Boeing 747 Begins Its Final Descent

https://www.theatlantic.com/magazine/2026/07/boeing-747-retirement/687304/
3•dbl000•12m ago•1 comments

Cultures of Making and Relating

https://blog.khinsen.net/posts/2026/06/25/cultures.html
3•akkartik•13m ago•0 comments

Ghostty/Agents.md

https://github.com/ghostty-org/ghostty/blob/main/AGENTS.md
2•adithyassekhar•13m ago•0 comments

Technical feedback on a client-side microkernel enclave?

https://eunomia.adeno.ltd/portal/eunomia-demo.html
2•renrenrenren•15m ago•1 comments

Daytona is going closed source

https://www.daytona.io/dotfiles/updates/daytona-is-going-closed-source
2•ushakov•15m ago•0 comments

In Meta's Reality Lab: Your body's data was only valuable once

https://www.nplusonemag.com/online-only/online-only/in-the-reality-lab/
2•johnshades•15m ago•0 comments

The principle of least power (2007)

https://blog.codinghorror.com/the-principle-of-least-power/
2•pramodbiligiri•16m ago•0 comments

YouTube Video ID Allowance

https://michaelchadwick.info/blog/2026/02/02/youtube-video-id-allowance/
4•speckx•16m ago•1 comments

Everyone's Been Drawing Pterosaur Wings Wrong

https://nautil.us/everyones-been-drawing-pterosaur-wings-wrong-1282235
2•Brajeshwar•18m ago•0 comments

Object-oriented OS with many features of popular niche Linux distributions

https://github.com/Jonathan-R-Anderson/anonymOS/
2•rockbeatspaper•18m ago•1 comments

Show HN: Hikaru Labs – Bulk image and file processing, 100% in-browser

https://hikarulabs.xyz
2•CFBL•18m ago•1 comments

Calling everything AI-generated is lazy

https://00f.net/2026/06/25/stop-calling-everything-ai-generated/
1•Tomte•19m ago•0 comments

A Herculaneum scroll has been read for the first time

https://scrollprize.org/firstscroll
1•verditelabs•19m ago•1 comments

Billionaire's Warning: I'm Selling. The Crash Is Here [video]

https://www.youtube.com/watch?v=32u5T6lO8qk
2•hsnewman•21m ago•0 comments

Claude Code Hints at Fable Return

https://twitter.com/synthwavedd/status/2069813760622043483
4•thedebuglife•22m ago•3 comments

The Trump White House Is over Anthropic CEO Dario Amodei

https://www.wired.com/story/the-trump-white-house-is-over-anthropics-dario-amodei/
4•thedebuglife•22m ago•0 comments

What if some of history's earliest kings were queens?

https://www.nationalgeographic.com/history/article/history-earliest-kings-ur-sumeria
2•bookofjoe•23m ago•0 comments

Route Through Dead Zones. 302x Faster Than Google

https://www.elara-cortex.com/
1•jkuria•23m 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.