frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: 49IDE – 2D Grid IDE for managing many agents, Git trees, issues

https://github.com/alpbahadur/49Agents
1•alpbahadur•3m ago•0 comments

Inadequate Equilibria

https://equilibriabook.com/inadequacy-and-modesty/
1•Bluestein•4m ago•0 comments

Why every AI model tells Japanese voters to vote for the Communist Party

https://twitter.com/MTSlive/status/2085842125464457722
1•tosh•4m ago•0 comments

Amazon Built a Data Center in a California Town Without Anyone Noticing

https://www.wsj.com/us-news/how-amazon-built-a-data-center-in-a-california-town-without-anyone-no...
1•speckx•5m ago•0 comments

2008 vs. 2026: The Same Dominoes Are Falling [video]

https://www.youtube.com/watch?v=Zgbzdk-eqJ0
1•xbmcuser•6m ago•0 comments

Prompt Privacy from LLMs

https://snwagh.com/blog/2026/stained-glass-transform/
2•napping_penguin•6m ago•1 comments

Developer ported Word for Windows 1.1a from 1990 to run natively on Windows 11

https://www.neowin.net/news/developer-ported-word-for-windows-11a-from-1990-to-run-natively-on-wi...
1•01-_-•6m ago•0 comments

An AI-powered iOS app for real-time fencing analysis (tracking/skeletons)

https://apps.apple.com/us/app/fencingvision-ai-coach/id6794765462
2•vortex5566•7m ago•0 comments

AI alignment is a red herring

https://interconnected.org/home/2026/08/08/alignment
2•peteforde•8m ago•0 comments

Show HN: TchoAI – Transform your documents into editable slide decks

https://tcho.ai/en
2•dyfang•13m ago•0 comments

Claude but It's Good at Misinformation

https://fauxthropic.com/
2•doomeacc•13m ago•0 comments

Offline AI Search Engine

https://www.wazzup.im
2•wazzup_im•15m ago•0 comments

Poll: Does the browser think you speak Chinese, but you do not?

2•Bender•16m ago•0 comments

What Happened: OpenAI and HuggingFace

https://thezvi.substack.com/p/what-happened-openai-and-huggingface
2•yurivish•18m ago•0 comments

Replai – smarter online form tooling

https://go-replai.com
2•eduardoVel•20m ago•1 comments

How AI Layoffs Can Trigger an Economic Spiral

https://bytepith.com/article/how-ai-layoffs-trigger-economic-spiral
2•khanhnguyen8386•20m ago•0 comments

Claude TV

https://vibetv.shop/
2•yitchelle•20m ago•0 comments

A tool to quickly step through and audit LLM-generated Python codebases

https://github.com/arnoldpredator/pyreplay
2•arnoldpredator•21m ago•1 comments

The chew toy that ate my small business

https://unherd.com/2026/08/the-chew-toy-that-ate-my-small-business/
3•speerer•23m ago•0 comments

HTML Day 2026

https://2026.html.energy/
3•hendersonreed•24m ago•0 comments

DARPA Lift Challenge – Aug 8 – Main Broadcast [livestream] [video]

https://www.youtube.com/watch?v=RWt7FIRWnyc
2•consumer451•26m ago•0 comments

Reducing Graphics API Complexity: A Clean Slate Design for Modern GPUs [video]

https://www.youtube.com/watch?v=aQv9pUl9PBM
2•mellinoe•27m ago•0 comments

The Price Tag

https://thehickmanletter.substack.com/p/the-price-tag
1•mooreds•29m ago•0 comments

US "Freedom Tech Excellence Program" Uses Palantir to Oppose Surveillance

https://www.state.gov/current-partnerships-global-partnerships-unit/
3•gumby•29m ago•1 comments

Show HN: captain-miao – herding coding agents in your terminal (kitty/zellij)

https://github.com/hyperlogue/captain-miao
1•rickye26•29m ago•0 comments

Video Has 0 Comments

https://www.youtube.com/watch?v=r6uSlQTEcZM
2•viralparmarme•30m ago•0 comments

Show HN: Geotop – Real-time terminal network monitor with map visualization

https://github.com/ozkanpakdil/geotop
1•ozkanpakdil•32m ago•1 comments

My Personal Software Journey: Self-Hosting Agent-Built Apps on a Mac Mini

https://metedata.substack.com/p/016-my-personal-software-journey
1•young_mete•32m ago•0 comments

Wireblast a 100 Gbps packet generator in Go using AF_XDP

https://toonk.io/index.html
2•bgpdude•34m ago•0 comments

OpenAI Astra: A Paradigm Shift from Answers to Assignments

https://medium.com/predict/openai-astra-a-paradigm-shift-from-answers-to-assignments-bdce13f10037
1•timventura•35m 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.