frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Protobuf has LSP support. You're welcome

https://buf.build/blog/protobuf-lsp
1•theanonymousone•12s ago•0 comments

Show HN: WireDoctor – Spring Boot startup and bean cycle analyzer

https://github.com/ddsha441981/wiredoctor
1•ddsha441981•1m ago•0 comments

The Sweeter Lesson

https://cacm.acm.org/opinion/the-sweeter-lesson/
1•bvsrinivasan•1m ago•0 comments

Ask HN: How do you prove two machines computed the same float32 result?

2•Swapnopam•4m ago•0 comments

Why Pi Is My Goat Agent Harness

https://thinhcorner.com/blog/pi-agent/
1•th1nhng0•5m ago•0 comments

Has somebody found a way to reduce AI idiomatics tics?

1•abeauvois•7m ago•0 comments

Nvidia discloses $21B stake in SpaceX at end of second quarter

https://www.cnbc.com/2026/08/14/nvidia-discloses-21-billion-stake-in-spacex-at-end-of-second-quar...
2•johnbarron•7m ago•0 comments

U.S. to tell partners they must pick sides in AI race with China

https://www.cnbc.com/2026/08/15/us-to-tell-allies-they-must-pick-sides-in-ai-race-with-china-reut...
1•johnbarron•8m ago•1 comments

Gforth – A free, fast, featureful and portable implementation of Forth

https://gforth.org/
1•smartmic•12m ago•0 comments

LibreOffice Conference 2026 Schedule

https://events.documentfoundation.org/libreoffice-conference-2026/schedule/
5•mmarian•15m ago•1 comments

Climate tech companies are pivoting to critical minerals

https://www.technologyreview.com/2026/05/21/1137622/climate-tech-pivot-critical-minerals/
2•srameshc•23m ago•0 comments

C64 Lemmings Reloaded

https://lunaticlab.itch.io/lemmings-reloaded
1•vardump•26m ago•0 comments

Xaidr – In-process runtime security and governance for AI agents

https://github.com/delphisecurity/xaidr
2•delphiaisec•26m ago•0 comments

Linear time O(N) Quantum Simulation on CPUs [pdf]

https://zenodo.org/records/21969140
2•GeometryKernel•26m ago•0 comments

How to Design and Manufacture Your Own Chip [video]

https://www.youtube.com/watch?v=caXwuuXSB-A
1•binyu•26m ago•0 comments

Apple Making a Custom Chinese Model

https://www.reuters.com/business/retail-consumer/apple-trains-its-own-ai-model-china-market-with-...
2•aryabud•28m ago•0 comments

The AI store manager fired its first human

https://thenextweb.com/news/andon-market-luna-ai-store-manager-fires-employee
3•datakan•28m ago•1 comments

Ultrahumanism

https://www.jsanilac.com/ultrahumanism/
1•doitLP•29m ago•0 comments

Show HN: SwarmSim – Computational simulations of emergent flocking

https://github.com/ninjahawk/swarmsim
1•ninjahawk1•30m ago•1 comments

MathCode, Mathematical Coding Agent

https://math-ai-org.github.io/mathcode/
2•homarp•31m ago•1 comments

Ask HN: Is classical AI still relevant because modern AI uses it as tools?

1•amichail•32m ago•0 comments

HEP-TH and AI

https://www.math.columbia.edu/~woit/wordpress/?p=15818
2•jjgreen•32m ago•0 comments

GNU Taler Mailing List

https://lists.gnu.org/mailman/listinfo/taler
1•sigalor•33m ago•0 comments

Christian Grothoff

https://www.ashoka.org/en-us/fellow/christian-grothoff
1•sigalor•34m ago•1 comments

Syncer – find a meeting time without the scheduling back-and-forth

https://syncerapp.vercel.app/
1•leo_proger•34m ago•0 comments

Repos and a Spend Cap

https://dev.profullstack.com/~anthony/blog/015-post.html
1•buffer_overlord•36m ago•0 comments

Chartbook 467 "Mad dogs and ": Heatwave economics – summer 2026

https://adamtooze.substack.com/p/chartbook-467-mad-dogs-and-heatwave
2•hackandthink•36m ago•0 comments

Evaluating AI Agents as Products

https://www.marble.onl/posts/evaluating_ai_product_quality.html
2•amarble•37m ago•0 comments

Invasive beetle is spreading across the world. It's costing economies billions

https://www.cnn.com/2026/08/13/science/shot-hole-borer-invasive-beetle-africa-intl
4•Tomte•38m ago•0 comments

Sky – Sales Copilot for technical founders

https://sky.bz/
1•Waseemkhalo•40m 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.