frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Xyvel Trip – plan a trip in one sentence, with prices

https://xyvel.ch/en/trip
1•gladia92soussa•23s ago•0 comments

August 27 TCRF DDoS Attack Postmortem

https://blog.xkeeper.net/the-cutting-room-floor/tcrf-2026-ddos-postmortem/
1•panic•47s ago•0 comments

Embracing Dark Mode: A User's Perspective on Accessibility

https://blog.master.dev/dark-mode-very-much-matters-to-me/
1•ibobev•48s ago•0 comments

Opus 5.5 refuses basic molecular biology questions

https://bede.im/2026/09/24/open-models-biology.html
2•bede•2m ago•0 comments

Steppy Fox – Free Game

https://steppyfox.com/
1•fadilbeg•2m ago•0 comments

Tiny-Vedas: RISC-V Infrastructure for AI Accelerator Design [pdf]

https://siliscale.com/papers/tiny-vedas.pdf
1•marcux95•2m ago•0 comments

Eli's Software Encyclopedia

https://elisoftware.org/wiki/Main_Page
1•baal80spam•3m ago•0 comments

Any nerds out there who've read a lot of research papers?

2•shriy-singh•4m ago•0 comments

GizmoSQL changes the unit economics for AI analyst companies

https://emms21.github.io/gizmosql-followup/
1•emms21•9m ago•1 comments

I'm Begging You: Never Write with A.I

https://www.nytimes.com/2026/08/04/opinion/artificial-intelligence-ai-writing.html
2•ferryth•10m ago•1 comments

Lateline: A Mind of Their Own (1996) [video]

https://www.youtube.com/watch?v=WFeeVJR5rVc
1•sanbor•10m ago•0 comments

Privacy: The Sequel (2015)

https://www.theawl.com/2015/09/privacy-the-sequel/
1•bookofjoe•12m ago•0 comments

Haversine Law

https://www.johndcook.com/blog/2026/09/21/haversine-law/
1•ibobev•12m ago•0 comments

Nathaniel Bowditch

https://www.johndcook.com/blog/2026/09/22/nathaniel-bowditch/
1•ibobev•13m ago•0 comments

GLiNER2.5-Decide

https://huggingface.co/fastino/GLiNER2.5-Decide
1•trollied•15m ago•0 comments

ChatGPT is my (new) GTD interface

https://raywu.org/chatgpt-is-my-gtd-interface
1•raywu•15m ago•0 comments

Show HN: Denizlihub

https://denizlihub.com/
1•denizlihub•15m ago•0 comments

Show HN: Inkdom – Draw loops on the real world map to claim territory

https://inkdom.io/
1•Nuze•17m ago•0 comments

Show HN: Lini – one language for diagrams, charts, schematics and drawings

https://lini.rs/
1•monfared•18m ago•0 comments

Claude can't stop itself from writing code comments

https://bayes.net/shut-up-and-swe-bench/
1•tadamcz•19m ago•0 comments

Show HN: Fine-tuned 110M encoder beat 7B LLMs and hybrid search for NIST mapping

https://github.com/applied-inference-lab/autormf-ml-lab
1•jpusateri•20m ago•0 comments

Show HN: Little Memory 2.0, one-line-a-day journal, offline-first

https://apps.apple.com/us/app/little-memory-one-line-a-day/id514233379
1•ivantse•21m ago•0 comments

Why No One Wants to Date Tech Bros

https://www.wired.com/story/tech-bros-dating-palantir-tesla/
5•1vuio0pswjnm7•21m ago•0 comments

File notification side channel leakage on Linux, Android, Windows, and macOS

https://inoti.fyi/
3•iamnothere•22m ago•1 comments

AlloyDB's Agentic Database Architecture

https://cloud.google.com/blog/products/databases/alloydbs-agentic-database-architecture
1•qianli_cs•22m ago•0 comments

GTA 6 $400 Collector's Edition Comes with Everything Except the Game

https://www.gamespot.com/articles/gta-6-400-collectors-edition-comes-with-everything-except-the-g...
2•toilet•24m ago•0 comments

Show HN: FluxCast – Stream Linux Desktop to a Smart TV via Miracast

https://github.com/IlyaP358/fluxcast
1•Illium•27m ago•0 comments

Can Java's Adjoint Automatic Differentiation Compete with C++?

https://nablatensor.com/blog/xad-matlogica-aadc-monte-carlo-benchmark
4•petrpravda•28m ago•0 comments

A24 making an SCP movie without anybody from The SCP Foundation involved

https://www.avclub.com/a24-scp-vhs-movie-without-scp-foundation
1•ravenical•30m ago•0 comments

Is there word or term for $Trillion valued companies not having perfect UI?

2•kingleopold•32m ago•2 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.