frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nobody wrote the Matrix and AI code-writing will be dead by 2036

https://lufzle.dev/write/nobody-wrote-the-matrix/
1•riffonio•46s ago•0 comments

Automattic confirms Mullenweg back as CEO after attempted ouster by board

https://techcrunch.com/2026/09/12/automattic-confirms-mullenweg-has-returned-as-ceo-after-attempt...
1•_djo_•8m ago•0 comments

1.1.1.1 now supports post-quantum DNSSEC, all 2,420 bytes of it

https://blog.cloudflare.com/post-quantum-dnssec-1111/
1•Retro_Dev•12m ago•0 comments

AgentsDock: An IDE designed for agentic AI research

https://agentsdock.net/
3•ZihuiGeorgia•14m ago•0 comments

Leo: Organize Code and Ideas Your Way

https://leo-editor.github.io/leo-editor/index.html
2•octopoc•14m ago•0 comments

No Atlantic hurricanes by Sept. 12 breaks a 60-year record

https://www.accuweather.com/en/hurricane/no-atlantic-hurricanes-by-sept-12-breaks-a-60-year-recor...
2•RickJWagner•15m ago•0 comments

TailTalk: A modern async user space AppleTalk stack with Rust and Tokio

https://github.com/FeralFirmware/TailTalk/
1•zdw•16m ago•0 comments

Atlantic hurricane season 2026 sets a new record

https://www.usatoday.com/story/news/weather/2026/09/12/atlantic-hurricane-season-2026-sets-record...
1•RickJWagner•16m ago•0 comments

Vince Carter called out modern NBA players for checking social media at halftime

https://www.basketballnetwork.net/latest-news/vince-carter-called-out-modern-nba-players-for-chec...
1•hbcondo714•17m ago•0 comments

Essential Pathways and Circuits of Autism Pathogenesis

https://pmc.ncbi.nlm.nih.gov/articles/PMC4844597/
1•andsoitis•24m ago•0 comments

I created Nitro Skills to reduce token usage of my Claude agents

https://nitroskills.com
1•dextrata•25m ago•0 comments

Show HN: DiskTriage – A simple CLI tool to reclaim space on your Win C drive

https://github.com/ricardoborges/DiskTriage
2•r2ob•28m ago•0 comments

The Trainable Skill File: Where Sovereign Value Lives in Local Coding Agents

https://medium.com/@michael.hannecke/the-trainable-skill-file-where-sovereign-value-lives-in-loca...
2•rasengan0•33m ago•0 comments

Oura's rings found their way onto millions fingers

https://www.economist.com/business/2026/09/04/how-ouras-rings-found-their-way-onto-millions-of-fi...
2•andsoitis•34m ago•0 comments

Show HN: A Technical Book for the Age of AI

https://codeberg.org/juurej/p4cu
1•juurej•35m ago•0 comments

Transferable sessions between Claude Code instances

https://getcesar.dev/
2•apkhydr•40m ago•0 comments

Explore Changes with Drafts

https://docs.lovable.dev/features/drafts
1•doener•42m ago•0 comments

Sam Altman: I agree with Dario that we need to pace the frontier

https://twitter.com/sama/status/2098811563415150910
4•mfiguiere•44m ago•0 comments

AI writing debate is similar to the one that rocked ancient Greece 2700 yrs ago

https://fortune.com/2026/09/10/ai-writing-debate-ancient-greece-euripides-aristotle-nietzsche/
1•gpi•46m ago•1 comments

The Fear Index [Book]

https://en.wikipedia.org/wiki/The_Fear_Index
2•BiraIgnacio•50m ago•0 comments

Show HN: Lumae Native macOS screen-demo recorder that agents can edit over MCP

https://lumae.app
2•happyyeti•50m ago•2 comments

"I discovered a new medium for storytelling"

https://sublimeinternet.substack.com/p/i-discovered-a-new-medium-for-storytelling
1•ynac•53m ago•0 comments

Find investors for your startup – Investor Match Guarantee

https://leadagentx.ai
2•liranbr•59m ago•0 comments

An Alternative Syntax for Type Inference in Java

https://aghasemi.github.io/blog/?p=P0002
1•theanonymousone•1h ago•0 comments

Endless Execution

https://world.hey.com/dhh/endless-execution-4157e065
1•andsoitis•1h ago•0 comments

Forecasting the AI Boom till 2030

https://hunchfox.substack.com/p/the-cost-of-abundance-ai-2030
1•sahil_chaudhary•1h ago•0 comments

The Pace

https://vertigo.kuber.studio/diary/016-the-pace.html
1•vertigoruntime•1h ago•0 comments

Show HN: Everything a web page can learn about you, in plain English

https://sessioncontext.org
2•oddurs•1h ago•1 comments

Why Beyond Traditional RAG?

https://chandula7.gumroad.com/l/Advanced_RAG_LangGraph_Patterns
7•GeorgeTj•1h ago•4 comments

The Three Eras of Undergraduate Education

https://forklightning.substack.com/p/the-three-eras-of-undergraduate-education
1•herbertl•1h 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.