frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Chord Version 1 – A new IF modeling language for parser web games

https://sharpee.plover.net/chord-version-1/
1•ChicagoDave•31s ago•0 comments

The labour arbitrage theory of dev tool popularity

https://www.baldurbjarnason.com/2024/react-electron-llms-labour-arbitrage/
1•Teckla•2m ago•0 comments

Show HN: Free Email Verification Tool – no signup required

https://probe.uspeedo.online/
1•starryrbs•4m ago•0 comments

AI #178: A Fire Alarm for General Intelligence

https://thezvi.substack.com/p/ai-178-a-fire-alarm-for-general-intelligence
1•paulpauper•5m ago•0 comments

Should robots be considered as slaves?

https://www.optimallyirrational.com/p/should-robots-be-considered-as-slaves
1•paulpauper•6m ago•0 comments

Show HN: SMTP-probe – an open-source email deliverability diagnostic tool

https://github.com/monto-fe/smtp-probe
1•starryrbs•7m ago•0 comments

OpenBao Features – Declarative Configuration

https://openbao.org/blog/features-declarative-configuration/
1•cipherboy•11m ago•0 comments

Show HN: I poked at the golden ratio in SQL and solved an open math problem

https://blob.byteterrace.com/public/bds-theorem.html
1•kittoes•13m ago•0 comments

Show HN: Deep Skill Finder – Find agent skills using real execution benchmarks

https://www.meyo.life/skill
2•hannahLiang•18m ago•0 comments

How to Resolve Software Deployment Issues with SeaTicket

1•Daniel-Pan•18m ago•0 comments

Dismissing Europe as a museum is glib. Think of it as a theme park

https://www.economist.com/europe/2026/07/23/dismissing-europe-as-a-museum-is-glib-think-of-it-as-...
1•andsoitis•20m ago•0 comments

Pong Wars on the Commodore 64

https://imrannazar.com/articles/c64-pongwars
2•Teckla•22m ago•0 comments

The Full List of Trump's New Tariffs on 60 Economies

https://www.bloomberg.com/news/articles/2026-07-24/here-s-the-full-list-of-trump-s-new-tariffs-on...
1•alephnerd•22m ago•0 comments

The cost of GPUs goes far beyond AI data centers

https://www.theverge.com/cs/features/937356/ai-data-center-gpu-environmental-impact
3•acmnrs•24m ago•0 comments

Open Source Tax Engine outperforming GPT sol and Fable 5

https://opentax.invaro.ai/
2•asmigulati•27m ago•0 comments

Harness Handbook – Making Agent Harnesses Understandable, Auditable and Editable

https://ruhan-wang.github.io/Harness-Handbook/
2•gmays•33m ago•0 comments

RubyGems advisory: Possible leak of legacy API keys via improper cache config

https://blog.rubygems.org/2026/07/22/security-advisory-legacy-api-key-leak.html
2•forks•34m ago•1 comments

2026 western US snow drought was about 4x more likely due to climate change

https://www.pnas.org/doi/full/10.1073/pnas.2612961123
3•littlexsparkee•38m ago•2 comments

Which Odyssey translation wins a blind reading test?

https://homer.scrivium.com/report/
2•curo•40m ago•0 comments

WorkBuddy Bench: Agentic Coding Leaderboard

https://workbuddybench.com/index.html
1•ilreb•40m ago•0 comments

The Corporate Creep of Plex: Why it may be time to move to Jellyfin

https://reprodev.com/the-corporate-creep-of-plex-why-it-may-be-time-to-move-to-jellyfin-and-the-o...
2•reprodev•41m ago•0 comments

Slow Exhale

https://dgmor.itch.io/slow-exhale
1•skhr0680•42m ago•0 comments

Asthma Control Before and After Changing Gas Stoves to Electric Stoves

https://www.sciencedirect.com/science/article/pii/S2213219826005374
4•tchalla•45m ago•0 comments

Vanishing archaeological landscapes in Mesopotamia:CORONA imagery site detection

https://arxiv.org/abs/2507.13420
2•Jimmc414•50m ago•0 comments

Microsoft 365 outage affects Teams, SharePoint and other services

https://www.bleepingcomputer.com/news/microsoft/microsoft-365-outage-affects-teams-sharepoint-and...
3•Khaine•51m ago•1 comments

Deep in a Vermont Lake, a Contagious Cancer Is Spreading

https://www.nytimes.com/2026/07/22/science/contagious-cancer-catfish.html
1•eigenhombre•51m ago•0 comments

Automated sign detection across the Electronic Babylonian Library

https://arxiv.org/abs/2606.22608
2•Jimmc414•53m ago•0 comments

Police Removed Prominent Scientists from the ADA Meeting. Researchers Respond

https://www.the-scientist.com/police-removed-prominent-scientists-from-the-ada-meeting-researcher...
20•fosco•53m ago•4 comments

When Abraham Lincoln Fought a Duel:The Astonishing Saber Duel of Abraham Lincoln [video]

https://www.youtube.com/watch?v=9nSCZCtGpQs
1•fortran77•53m ago•0 comments

Minimalist Film

https://en.wikipedia.org/wiki/Minimalist_film
2•hopelessluca•53m 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.