frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Twenty-Five Years After 9/11

https://hassanali110.substack.com/
1•securitystrateg•18s ago•0 comments

When Yemen and Saudi Arabia Come to Pakistan

https://hassanali110.substack.com/p/when-yemen-and-saudi-arabia-come
1•securitystrateg•2m ago•0 comments

There is no model called taste-1

https://cmd.safzan.dev/
1•infomiho•3m ago•0 comments

Show HN: Fentaris, an open-source proxy for managing multiple MCP servers

https://github.com/Fentaris/fentaris
1•Gabry848•3m ago•0 comments

kev: Jev-like model built on Qwen2.5-0.5B

https://github.com/jaredpalmer/kev
1•tosh•5m ago•0 comments

AI coding agents' 0-click RCE flaw could hand attackers keys to the kingdom

https://www.theregister.com/security/2026/09/17/ai-coding-agents-0-click-rce-flaw-could-hand-atta...
1•sbulaev•6m ago•0 comments

Vale, code-like linting for prose

https://vale.sh
1•birdculture•6m ago•0 comments

Can the AI arms race be stopped?

https://www.economist.com/leaders/2026/09/17/can-the-ai-arms-race-be-stopped
1•andsoitis•7m ago•0 comments

Is ChatGPT Dead

2•ahanjura•7m ago•1 comments

How to be a wise optimist about science and technology? (2024)

https://michaelnotebook.com/optimism/index.html
1•Gooblebrai•8m ago•0 comments

The Math of Clothing Design

https://mrc.stanford.edu/events/mathematics-clothing-design
1•marysminefnuf•10m ago•0 comments

A local Jev backed by DiffusionGemma

https://github.com/githubnext/localjev
1•awei•10m ago•0 comments

SafeSeal: Certifiable Watermarking for LLM Deployments

https://suny.technologypublisher.com/tech?title=SafeSeal%3a_Certifiable_Watermarking_for_LLM_Depl...
1•geox•10m ago•0 comments

Why I'm (sort of) not worried about AI – Jack Conte - SXSW [video]

https://www.youtube.com/watch?v=17_HcR95YBc
2•consumer451•15m ago•0 comments

Onyx: An interchange format for personal food diaries

https://github.com/dsemakin/onyx
1•dsemakin•16m ago•0 comments

We found defects in 37 of DeepSWE's 113 tasks

https://www.scrimdata.com/blog/deep-swe-benchmark-defects-ambiguities
3•lebek•17m ago•0 comments

Show HN: Htmldoc – A pastebin that renders the HTML your coding agent writes

https://htmldoc.space
1•ajaxray•18m ago•0 comments

Democrats try to ride data center backlash to election victory rural US Midwest

https://www.reuters.com/legal/government/democrats-try-ride-data-center-backlash-election-victory...
2•dat999zx•18m ago•0 comments

Jaguar XJ220 Jail Broken

https://www.theautopian.com/this-ancient-computer-program-is-the-key-to-keeping-jaguar-xj220-supe...
1•mauvehaus•19m ago•0 comments

Show HN: I asked Claude Code to teach my son about the phases of the moon

https://ricardoborges.github.io/MoonSrc/
2•r2ob•23m ago•0 comments

Yoshua Bengio's non-profit LawZero to build safe AI

https://www.theglobeandmail.com/business/article-yoshua-bengio-lawzero-receives-300-million-from-...
2•heresie-dabord•25m ago•0 comments

Type Systems You Might Not Know (But Will Love)

https://www.wearedevelopers.com/videos/100067-type-systems-you-might-not-know-but-will-love
2•silenttwin•25m ago•0 comments

What failed when I trained an object detector on synthetic images only

https://datasint.tech/rendered-training-data.html
3•stepangalickov•31m ago•2 comments

How to add comments to a static site using GitHub Pull Requests(2023)

https://nateeagle.com/posts/how-to-add-comments-to-a-static-site-using-github-pull-requests/
1•fv3y•34m ago•0 comments

When "Review" Becomes Permission: A Prompt Injection Lab

https://rsec.uk/insights/when-review-becomes-permission-a-prompt-injection-lab-mu5tsobx
1•Irsheidat•34m ago•0 comments

Hunting the Wild Vibrotruck

https://hackaday.com/2026/09/09/hunting-the-wild-vibrotruck/
1•sohkamyung•35m ago•0 comments

AI kill switch, explained: 'It's not too little, but it's probably too late'

https://www.cnbc.com/2026/09/19/ai-kill-switch-explained.html
1•pseudolus•37m ago•0 comments

Show HN: ParentPackIt – a mobile checklist app designed for parents and kids

https://apps.apple.com/us/app/parentpackit-kids-checklist/id6748917901
1•ashkans_dev•37m ago•0 comments

Hackers breach OpenAI using Claude tools, gaining access to employee accounts

https://www.tomshardware.com/tech-industry/cyber-security/hackers-breach-openai-using-claude-tool...
2•thunderbong•37m ago•0 comments

Is startpage.com mining Bitcoin when you open it?

1•roscas•38m ago•1 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.