frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenRouter is a example of the Application layer of AI

https://s-1.vercel.app/posts/why-openrouter-can-be-the-next-great/
1•Altaba•1m ago•0 comments

Next-Token Predictor Is An AI's Job, Not Its Species

https://www.astralcodexten.com/p/next-token-predictor-is-an-ais-job
1•optimalsolver•2m ago•0 comments

Bluesky's active user base is shrinking as its focus expands beyond the app

https://techcrunch.com/2026/08/11/blueskys-active-user-base-is-shrinking-as-its-focus-expands-bey...
1•newusertoday•3m ago•0 comments

The Idea of Immutable Social Media

https://citizendot.github.io/articles/the-idea-of-immutable-social-media/
1•CITIZENDOT•4m ago•1 comments

MAI-Code-1.1-Flash: Better, faster, at a quarter of the cost

https://microsoft.ai/news/mai-code-1-1-flash-br-better-faster-at-a-quarter-of-the-cost/
2•theanonymousone•5m ago•0 comments

Misaligned AIs could use killer robots to take over

https://www.lesswrong.com/posts/9jKhqmFjMzdAvHANr/misaligned-ais-could-use-killer-robots-to-take-...
2•x312•5m ago•0 comments

The Society of Professional Journalists proposes edits to code of ethics for AI

https://www.niemanlab.org/2026/08/the-society-of-professional-journalists-proposes-edits-to-its-c...
1•jaredwiener•5m ago•0 comments

p0rt – see every dev server, port and Docker container in your menu bar

https://p0rt.app
1•ddeunert•6m ago•0 comments

Meter Offers Networking Grants

https://www.meter.com/grants
1•NathaP•9m ago•0 comments

Nvidia Nemotron 3.5 lightning and Nemo Switchyard

https://blogs.nvidia.com/blog/nemotron-lightning-switchyard-rtx-dgx/
7•droidjj•13m ago•0 comments

You Don't Need to Use Cloud AI Switchyard and Nemotron (Level1/Wendell) [video]

https://www.youtube.com/watch?v=-IGB6Avxwgo
2•amlib•15m ago•0 comments

How This 100-Year-Old Company Is Recreating a Lost Neon Color

https://www.wsj.com/finance/investing/how-this-100-year-old-company-is-recreating-a-lost-neon-col...
2•malshe•15m ago•1 comments

GPT 5.6 just solved (2,1)-C1P

https://www.reddit.com/r/accelerate/comments/1vkzfk7/gpt_56_just_solved_21c1p/
1•nadermx•16m ago•0 comments

WhichTok? Comparing Three TikTok Data Acquisition Tools

https://arxiv.org/abs/2608.09917
1•m-hodges•17m ago•0 comments

Between the Matrix and Her

https://kyletsai123.substack.com/p/between-the-matrix-and-her
1•Kyle0939•19m ago•0 comments

People behind Solid Queue, YC, and AnyCable speaking at the same conference?

https://sfruby.com/
1•camimirabal•20m ago•0 comments

The Ultimate Horse

https://worksinprogress.co/issue/the-ultimate-horse/
3•Petiver•20m ago•0 comments

On Comments

https://blog.helsing.ai/posts/on-comments/
4•MintPaw•22m ago•0 comments

Negotiating with CSS – Anselm Hannemann

https://anselm-hannemann.com/writings/negotiating-with-css
3•ulrischa•22m ago•0 comments

Don't Look Up

https://www.wheresyoured.at/dont-look-up/
9•thelastgallon•23m ago•0 comments

Pre-Computer Machine Cryptanalysis [pdf]

https://www.nsa.gov/portals/75/documents/news-features/declassified-documents/tech-journals/famou...
2•Bluestein•23m ago•0 comments

Show HN: Tradecraft.academy – the trading coach I couldn't find, so I built one

https://tradecraft.academy
3•2au_observer•24m ago•0 comments

Show HN: Digital business cards with your own domain

https://cards.digital-railways.com
2•not_wowinter14•24m ago•0 comments

Show HN: Beaver Backlog, an issue tracker that lives in your repo

https://github.com/builtbystef/beaver-backlog
2•builtbystef•25m ago•0 comments

AI models are breaking out of their cages. Their creators are scrambling

https://www.washingtonpost.com/technology/2026/08/10/openai-anthropic-under-pressure-explain-ai-h...
3•saikatsg•26m ago•0 comments

Hi-Fi Tape Recorder Changed Radio Forever

https://spectrum.ieee.org/magnetophon-laugh-track
1•Jimmc414•26m ago•0 comments

Fun with a Quadra 950 and a Whole Lot of RAM

https://lowendmac.com/2026/fun-with-a-quadra-950-and-a-whole-lot-of-ram/
1•geerlingguy•26m ago•0 comments

What Irregularity Costs: CUDA C++, Rust, and Triton

https://arxiv.org/abs/2608.08287
2•Jimmc414•26m ago•0 comments

Semiconductors: Commerce Needs Plan to Meet Chips for America R&D Requirements

https://www.gao.gov/products/gao-26-109121
1•Jimmc414•26m ago•0 comments

Anatomy of a One-Minute Outage

https://ajitabhpandey.info/2026/08/anatomy-of-a-one-minute-outage/
1•saikatsg•28m 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.