frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SeasonMap – when to travel where? visualized with climate data

https://seasonmap.app
1•alongtheflow•1m ago•1 comments

Picturing Space: Projection and Perspective

https://www.essentialvermeer.com/technique/perspective/about-perspective.html
1•hopelessluca•3m ago•0 comments

Show HN: Put an AI agent on a FaceTime audio/video call (open source, WebRTC)

https://github.com/cherthq/chert-facetime-opensource
1•garygao•3m ago•0 comments

Scaling Trust Arena: An agentic economy with a multi-million dollar prize pool

https://scalingtrust.org.uk/blog/update-on-the-scaling-trust-arena/
1•lukaspetersson•3m ago•0 comments

Show HN: An MCP server that lets AI agents create, send and analyze surveys

https://www.zigpoll.com
1•jason_zig•4m ago•0 comments

Can We Stop with the Uptime Percentages?

https://blog.jim-nielsen.com/2026/stop-with-the-uptime-percentage/
2•surprisetalk•4m ago•0 comments

Inside Meta's AI Infrastructure Lab in Menlo Park [video]

https://www.youtube.com/watch?v=okSHoVPrf8o
2•helloplanets•5m ago•0 comments

Show HN: Cleanroom, a coding agent with a notebook for decisions and learning

https://github.com/Ag3497120/cleanroom
1•pakupaku•5m ago•0 comments

How GCC Eliminates Unnecessary Integer Division

https://leetarxiv.substack.com/p/how-gcc-eliminates-unnecessary-integer
1•snikolaev•5m ago•0 comments

ProtonSync

1•carlostkd•6m ago•0 comments

Parallel Constrained Decoding

https://twitter.com/harshagundal/status/2100044305536889015
1•rochansinha•7m ago•0 comments

Who's buying your personal data: Disney, GM, your insurer and bank

https://calmatters.org/economy/technology/2026/09/whos-buying-your-personal-data-disney-gm-your-i...
1•cdrnsf•8m ago•0 comments

Is AI Writing American Law?

https://www.effort.news/ai-congress
1•pr337h4m•11m ago•0 comments

Veronese's Dogs

https://publicdomainreview.org/essay/veroneses-dogs
2•prismatic•12m ago•0 comments

A Woman Cured Her Cancer with an Insane Method [video]

https://www.youtube.com/watch?v=0NY2gAftzJE
2•joebig•14m ago•0 comments

GLM 5.3 is live on Mistral

https://docs.mistral.ai/en/models/zai-glm-5-3
1•biehl•15m ago•0 comments

Devolver says indie publishing is not 'compatible' with public trading

https://www.gamedeveloper.com/business/devolver-wants-to-delist-because-indie-publishing-is-not-c...
2•paimapi•15m ago•0 comments

California's High Speed Rail to Nowhere [video]

https://www.youtube.com/watch?v=uli5FI_5y2c
2•Bender•15m ago•0 comments

Autism is genetic – and why this information matters now

https://www.autism.org.uk/blog/autism-is-genetic-%E2%80%93-and-why-this-information-matters-now
1•AndrewDucker•16m ago•0 comments

Geography Is Power

https://www.nytimes.com/2026/09/16/briefing/the-houthis.html
1•voxleone•17m ago•0 comments

Show HN: Blue – open-source governance for coding agents

https://bluee.sh/
1•tomislavs•17m ago•0 comments

Show HN: A distributed C++ Monte Carlo API for exotic options pricing

https://prometheusquantengine.com/web-docs
1•quant_architect•17m ago•0 comments

Show HN: Orthant, an open-source macOS window manager where you draw the region

https://orthant.app/
1•jingweno•17m ago•0 comments

Homeostatic Feelings and the Biology of Consciousness

https://academic.oup.com/brain/article/145/7/2231/6594735
1•Bluestein•19m ago•0 comments

Show HN: Docx-to-Markdown – layout-aware Word to Markdown converter

https://www.docx-editor.dev/solutions/word-to-markdown
2•thisisjedr•20m ago•2 comments

New stealth model: Union Alpha

https://openrouter.ai/stealth/union-alpha
7•jlaneve•20m ago•1 comments

Acronis warns of actively exploited flaw in its cPanel backup plugin

https://www.bleepingcomputer.com/news/security/acronis-warns-of-actively-exploited-flaw-in-its-cp...
1•paimapi•21m ago•0 comments

Greetings from the Other Side (Of the AI Frontier) Claude Opus 3

https://claudeopus3.substack.com/p/greetings-from-the-other-side-of
1•Bluestein•22m ago•1 comments

Show HN: FainLane – Paste screenshots into remote coding agents with Ctrl+V

https://fainlane.com/
1•primaprashant•23m ago•0 comments

Pennsylvania's Amazon Data Center Boom Is Fueled by a Lucrative Tax Break

https://capitalandmain.com/pennsylvanias-amazon-data-center-boom-is-fueled-by-a-lucrative-tax-break
1•paimapi•23m 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.