frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Investors in Situational Awareness deserved to lose their shirts

https://www.economist.com/finance-and-economics/2026/08/04/investors-in-situational-awareness-des...
1•Anon84•39s ago•0 comments

New Node.js API Documentation

https://nodejs.org/en/blog/announcements/new-api-docs-beta
1•araujogui•48s ago•0 comments

Agentic Minimalism: The Human Control Loop

https://leverageloops.substack.com/p/agentic-minimalism-the-human-control
1•tosh•1m ago•0 comments

F*Ex: Frams' Fast File EXchange

https://fex.belwue.de/index.html
1•marvinborner•1m ago•0 comments

Show HN: TormentNexus – Local-first Go control plane with persistent memory

https://tormentnexus.site
1•TormentNexusAI•2m ago•0 comments

The CPU Cost of Protobuf Varints in Go

https://kmcd.dev/posts/protobuf-varint-vs-fixed/
1•ingve•3m ago•0 comments

Mixture-of-Kittens: An MoE training megakernel for NVL72

https://twitter.com/cursor_ai/status/2084670806613737919
1•OsamaJaber•4m ago•0 comments

Airtable hides a recap in plain sight

https://www.marginpoints.com/issues/2026-08-04-airtable-hides-a-recap-in-plain-sight
1•historian1066•4m ago•0 comments

White House plans to keep AI framework under wraps

https://www.axios.com/2026/08/04/white-house-ai-framework-under-wraps
2•thm•5m ago•1 comments

The Nodebook

https://www.thenodebook.com
2•handfuloflight•6m ago•0 comments

Southern California Edison equipment blamed for 2025 Eaton fire in Los Angeles

https://www.cnn.com/2026/08/04/us/california-eaton-wildfire
1•rawgabbit•6m ago•0 comments

AI-generated websites converge on each other more than human designs do

https://ai-design-convergence.vercel.app
1•Stackrift•7m ago•0 comments

Nuclear Safety Authority supports spent nuclear fuel final disposal facility

https://stuk.fi/en/-/the-radiation-and-nuclear-safety-authority-supports-the-licence-for-a-spent-...
2•iljah•8m ago•1 comments

Agentic Coding in the Wild: Characterizing GitHub Copilot Traces at Production

https://arxiv.org/abs/2608.00101
1•matt_d•9m ago•0 comments

Code Like a Pirate with AI

https://bitfieldconsulting.com/posts/code-like-pirate
1•ingve•9m ago•0 comments

Show HN: SindriCAD – open-source parametric CAD for Linux, Windows and macOS

https://github.com/MakerViking/sindricad
1•muninworks•10m ago•0 comments

People are mysteriously disappearing off WhatsApp

https://www.the-independent.com/tech/whatsapp-account-removed-deleted-rules-b3027160.html
2•Markoff•10m ago•1 comments

The session that synced itself

https://github.com/craigstoller/claude-code-sessions/blob/main/docs/the-session-that-synced-itsel...
2•craigstoller•13m ago•0 comments

Design by Contract and Effects for LLMs

https://gavinray97.github.io/blog/design-by-contract-and-effects-for-llms
2•caminanteblanco•14m ago•0 comments

A peculiar way to install apps

https://unsung.aresluna.org/as-a-windows-user-its-a-very-surreal-way-to-install-a-program/
2•colinprince•17m ago•0 comments

Surveillance-based advertising: why ad AI economics always demand more data

https://www.adreva.ai/learn/ai-in-advertising
1•abasicodes•17m ago•0 comments

Asana's Tab Shortcuts

https://unsung.aresluna.org/asanas-fascinating-tab-shortcuts/
1•speckx•18m ago•0 comments

Show HN: And now for a break: The Swimmer (1968) in Frogger Form

https://fun-things.vercel.app/the-swimmer/
1•bethanyhunt•20m ago•0 comments

Learning the ropes: why Germany is building risk into its playgrounds (2021)

https://www.theguardian.com/world/2021/oct/24/why-germany-is-building-risk-into-its-playgrounds
2•downbad_•20m ago•0 comments

New unlimited use coding agent (Standard Code)

https://standardcode.ai/
3•jpschroeder•20m ago•0 comments

Show HN: Single Reference to 3100 APIs

https://github.com/mindcloud-inc/universal-api-reference
3•frabjoused•21m ago•1 comments

Can Reddit fend off a new wave of AI SEO spam?

https://www.theverge.com/ai-artificial-intelligence/973098/reddit-ai-search-seo-marketing-brands-...
2•CharlesW•23m ago•0 comments

So what's next (personal news from developer of popular CoreJS polyfill) (2023)

1•KolmogorovComp•25m ago•0 comments

AI Detection of Poker Player Bluffing

https://www.wired.com/story/ai-tells-detection-world-series-of-poker-espn/
1•nate•25m ago•0 comments

The Law of Jante (2015)

https://www.theparisreview.org/blog/2015/02/11/the-law-of-jante/
1•NaOH•27m 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.