frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Thousands of Interstellar Objects May Be Lurking in Our Solar System

https://www.404media.co/thousands-of-interstellar-objects-may-be-lurking-in-our-solar-system/
1•Brajeshwar•1m ago•0 comments

Firefox Addon – "summary" link for Hacker News posts

https://addons.mozilla.org/en-GB/firefox/addon/hacker-news-summary/
1•JSeiko•1m ago•1 comments

Show HN: Too many articles to read, let random algorithm decide what I read next

https://read.mustakim.dev/bored
1•mustak_im•3m ago•1 comments

Iceland votes on whether to restart talks on joining European Union

https://www.nbcnews.com/world/europe/iceland-votes-whether-restart-talks-joining-european-union-r...
1•newgolobal•4m ago•0 comments

QDay Algebra 2M prime factor in nanoseconds

https://zenodo.org/records/22157593
1•GeometryKernel•4m ago•0 comments

Tiny World Model

https://paul.mou.dev/posts/2026-08-16-twm/
2•ppymou•5m ago•0 comments

Let the Clicks Speak: A Simple Score for Popularity-Driven Ranking

https://medium.com/@oleber_62556/let-the-clicks-speak-a-simple-score-for-popularity-driven-rankin...
1•softwaredoug•6m ago•0 comments

Quis Custodiet Ipsos Custodes?

https://en.wikipedia.org/wiki/Quis_custodiet_ipsos_custodes%3F
3•tosh•11m ago•1 comments

News-deframe: Structural comparison of how news outlets frame the same event

https://github.com/422August/news-deframe
1•August0422•13m ago•0 comments

Magic eye tube (The first RF "debugger")

https://en.wikipedia.org/wiki/Magic_eye_tube
1•peter_d_sherman•15m ago•1 comments

Understanding Event-Driven Systems

https://www.thetrueengineer.com/p/understanding-event-driven-systems
2•adletbalzhanov•17m ago•0 comments

Google translate is a better writer than me

https://theoo.dev/notes/google-translate-is-a-better-writer-than-me-29
3•speckx•18m ago•0 comments

I Found Two Shopify Plugin Zero-Days in a Bathtub

https://alec.is/posts/i-found-two-shopify-plugin-zero-days-in-a-bathtub/
1•arm32•18m ago•0 comments

OpenLake: Fast, Durable Storage for LLM Inference and Training

https://www.theopenlake.com/blog/introducing-openlake
2•kunalsin9h•19m ago•0 comments

Who Is Antigone? The 2500-Year-Old Rebel with a Cause

https://www.nytimes.com/2026/03/22/theater/antigone-theater-art-sophocles-adaptations.html
1•bryanrasmussen•19m ago•0 comments

SwarmWorld: Stigmergic technological evolution in societies of LLM agents

https://arxiv.org/abs/2608.26081
1•wintercarver•19m ago•1 comments

Why Everybody Hates Palantir

https://www.economist.com/britain/2026/08/20/why-everybody-hates-palantir
3•bookofjoe•20m ago•1 comments

Xiaomi Magnetic Bluetooth Speaker: iPhone MagSafe Stand and Speaker in One Tiny

https://www.gizmoweek.com/xiaomi-magnetic-bluetooth-speaker/
1•takumi123•21m ago•0 comments

ELPI – Embeddable Lambda Prolog Interpreter

https://github.com/LPCIC/elpi
2•TheWiggles•21m ago•0 comments

Experience Machine

https://www.smbc-comics.com/comic/experience-7
1•loughnane•23m ago•0 comments

RFC draft-meow-mrrp-00

https://www.ietf.org/archive/id/draft-meow-mrrp-00.txt
2•ruined•25m ago•0 comments

BoqCalc, an AI pipeline that prices a 500-line BOQ without hallucinating rates

https://boqcalc.com
1•boqcalc•26m ago•0 comments

Blue-Collar Jobs Are the New Flashpoint in Data-Center Fight

https://www.wsj.com/economy/jobs/blue-collar-jobs-are-the-new-flashpoint-in-data-center-fight-aac...
2•627467•27m ago•1 comments

AI Lattice Proofs with Chris Peikert

https://securitycryptographywhatever.com/2026/08/26/ai-lattice-proofs-with-chris-peikert/
1•henrikhorluck•27m ago•0 comments

When do Markov chains converge?

https://amitharlev.com/blog/mc_convergence/
1•vismit2000•29m ago•0 comments

Cloudflare Workers: Request Collapsing

https://developers.cloudflare.com/workers/cache/
1•tosh•31m ago•0 comments

Right to Repair State Laws Continue to Surge – Enforcement Remains Nonexistent

https://www.techdirt.com/2026/08/28/right-to-repair-state-laws-continue-to-surge-but-enforcement-...
1•speckx•31m ago•0 comments

The Inverse of Ensloppification?

https://getisland.app/blog/inverse-of-ensloppification/
2•ethanpronev•34m ago•0 comments

The Hugging Face attack surprised me

https://www.planned-obsolescence.org/p/the-hugging-face-attack-surprised
2•dnw•34m ago•0 comments

Would you share your weirdest agent logs with AI safety researchers?

https://www.reddit.com/r/AI_Agents/comments/1w1nuzb/whats_your_weirdest_ai_agent_log/
3•matildagh•35m 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.