frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Email Data Normalization for Automation

https://blog.mailwebhook.com/blog/normalization-is-where-reliability-starts/
1•birdculture•19s ago•0 comments

Token-warden is a thrifty office manager for your AI assistants

https://github.com/vukkt/token-warden
1•vukkt•40s ago•0 comments

What I have done with Claude Code in the last 60 days being a non tech person

1•sahiltll•55s ago•0 comments

Under-16s to be banned from social media, Starmer announces

https://www.bbc.co.uk/news/live/c77yx1jpg1nt
1•petepete•3m ago•0 comments

Brand Voice Local Tunning Tool Demo

https://github.com/yuvhaim-gif/LLM_InSight
1•yuvalhaim•4m ago•0 comments

Building N8n AI Automation Workflows: What I Learned Creating a Masterclass

https://www.udemy.com/course/n8n-ai-automation-masterclass-build-ai-chatbots-hindi/?referralCode=...
1•tv77048•4m ago•0 comments

Selective Elimination of TP53 Mutant Cells

https://www.biorxiv.org/content/10.64898/2026.05.08.723607v1
2•rballpug•9m ago•1 comments

Openrouter Fusion API

https://openrouter.ai/openrouter/fusion
1•tdchaitanya•12m ago•0 comments

Ask HN: Is the Fable situation the ultimate "security through obscurity"?

1•king_zee•13m ago•0 comments

Crown Sanctum of Symmetries

https://sand-morph.up.railway.app/crown-sanctum
1•echohive42•13m ago•0 comments

Knicks in 5

https://www.natesilver.net/p/knicks-in-5
1•7777777phil•13m ago•0 comments

Horsewood Capsules: Don't Buy Until You Read This Real Truth

https://finance.yahoo.com/sectors/healthcare/articles/horsewood-urgent-report-2026-horse-19110038...
1•gabykais•16m ago•1 comments

I think a global AI pause almost certainly won't happen

https://www.lesswrong.com/posts/mtNZG7Ee6JfBKhE2H/why-i-think-a-global-ai-pause-almost-certainly-...
2•joozio•18m ago•0 comments

AI demands more engineering discipline. Not less

https://charitydotwtf.substack.com/p/ai-demands-more-engineering-discipline
1•robin_reala•19m ago•0 comments

Why AI hasn't replaced software engineers, and won't

https://simonwillison.net/2026/Jun/14/why-ai-hasnt-replaced-software-engineers/
2•SVI•20m ago•0 comments

Heisenbug

https://en.wikipedia.org/wiki/Heisenbug
2•y1n0•20m ago•0 comments

The Null in Your Not IN

https://boringsql.com/posts/not-in-null/
1•radimm•23m ago•0 comments

A frontier without an ecosystem is not stable

https://twitter.com/i/status/2066182223213293753
1•Michelangelo11•25m ago•0 comments

New Hetzner price increase (As of 15 June)

https://www.hetzner.com/cloud/
5•radimm•27m ago•2 comments

Successful Psilocybin Treatment of Alzheimer

https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2026.1813281/full
3•cl3misch•30m ago•0 comments

Show HN: Toothpaste Picking Manager

https://github.com/notlibrary/tpm
1•notlibrary•31m ago•0 comments

World’s nuclear arsenals expanded and upgraded

https://www.sipri.org/media/press-release/2026/increasing-focus-nuclear-weapons-amid-heightened-e...
3•geox•32m ago•1 comments

Ipley Cross – Why This Type of Road Junction Will Keep Killing Cyclists (2018)

https://singletrackworld.com/2018/01/collision-course-why-this-type-of-road-junction-will-keep-ki...
1•downbad_•33m ago•0 comments

Sogen – High-performance Windows and Linux userspace emulator

https://sogen.dev/
1•fratellobigio•35m ago•0 comments

Python async exposes hidden coupling and backpressure

https://phroneses.com/articles/build/notes/how-python-async-exposes-hidden-coupling-and-backpress...
1•jhevans•35m ago•0 comments

FastContext-1.0-4B-SFT: lightweight repository-exploration subagent

https://huggingface.co/microsoft/FastContext-1.0-4B-SFT
1•cmitsakis•39m ago•0 comments

OST to PST Converter Software

https://apps.microsoft.com/detail/9p62fq9z8x7p?hl=en-US&gl=US
1•tieanderson•39m ago•0 comments

Starmer to announce 'Australia plus' ban on social media for under-16s in UK

https://www.theguardian.com/uk-news/2026/jun/14/starmer-to-announce-australia-plus-ban-on-social-...
3•beardyw•40m ago•1 comments

Ask HN: Should AI be used at all as a total beginner?

1•vetry•44m ago•1 comments

Is SMIC N+3's Metal Pitch Smaller Than Intel 18A's?

https://newsletter.semianalysis.com/p/steel-smic-n3-teardown
1•hunglee2•55m 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.