frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The day the Pintupi Nine entered the modern world

https://www.bbc.com/news/magazine-30500591
1•ilamont•2m ago•0 comments

When Building Is Easy, the Danger Is Building Everything

https://stack72.dev/when-building-is-easy-the-danger-is-building-everything/
2•speckx•4m ago•0 comments

Making the news available at no cost is a victory

https://www.sltrib.com/opinion/commentary/2026/05/12/just-days-tribune-reporting/
3•danso•4m ago•0 comments

Lake Tahoe residents to find a new power source after energy source redirects

https://finance.yahoo.com/news/nearly-50-000-lake-tahoe-170925969.html
2•hnthrowaway0315•8m ago•0 comments

Continual Harness: Online Adaptation for Self-Improving Foundation Agents

https://arxiv.org/abs/2605.09998
2•milkkarten•8m ago•0 comments

Research shows fast and effective way to reduce plastics in body

https://www.uwa.edu.au/news/article/2026/april/research-shows-fast-and-effective-way-to-reduce-pl...
1•littlexsparkee•10m ago•0 comments

Why Was the Discovery of the Jet Stream Mostly Ignored? (2018)

https://www.smithsonianmag.com/air-space-magazine/as-next-may-unbelievablebuttrue-180968355/
1•robin_reala•11m ago•0 comments

Show HN: DAG-BFT with multi-attribute reputation

https://github.com/Savitri-Network/savitri-network
1•And_Cadamuro•12m ago•0 comments

What drawing lines on football pitch taught me about future of human-AI collab

https://singhkays.com/blog/drawing-lines-football-pitch-human-ai/
1•singhkays•14m ago•0 comments

Nginx Rift: Remote Code Execution via an 18-Year-Old Vulnerability

https://depthfirst.com/research/nginx-rift-achieving-nginx-rce-via-an-18-year-old-vulnerability
3•rs_rs_rs_rs_rs•15m ago•0 comments

Trevor Howsam Limited: 19th- and 20th-Century Props and Wallpaper

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

I built a site generator that starts from docs, Maps, or Instagram

https://www.google.com/search?q=azonova+sites
2•azharxes•16m ago•0 comments

The Death of (The Philosophy of) Economics

https://cyrilhedoin.substack.com/p/the-death-of-the-philosophy-of-economics
1•paulpauper•16m ago•0 comments

A SQL-Inspired Query Language Designed for Event Sourcing

https://yoeight.github.io/blog/2025/12/21/EventQL_A_SQL_Inspired_Query_Language_Designed_For_Even...
3•goloroden•16m ago•0 comments

Open Source Must Win

https://twitter.com/0xSero/status/2035022588439581076
2•bilsbie•17m ago•1 comments

The Wu Tapes

https://colossus.com/article/scott-wu-tapes-cognition/
1•paulpauper•17m ago•1 comments

How Can I Force Myself to Stop Thinking in Technical Solutions?

https://docs.eventsourcingdb.io/blog/2026/05/14/how-can-i-force-myself-to-stop-thinking-in-techni...
1•goloroden•17m ago•0 comments

"Not Medically Necessary": Helping America's Health Insurers Deny Coverage

https://www.propublica.org/article/evicore-health-insurance-denials-cigna-unitedhealthcare-aetna-...
4•ceejayoz•17m ago•0 comments

The Forceful Ideology of Michael Pettis

https://tomenergy.substack.com/p/the-forceful-ideology-of-michael
1•paulpauper•17m ago•0 comments

Red Hat's skill packs give AI agents 20 years of institutional memory

https://thenewstack.io/red-hat-agentic-skills-repository/
2•speckx•17m ago•0 comments

A Cavity Doesn't Always Need a Filling

https://www.nytimes.com/2026/05/04/well/cavity-filling-second-opinion.html
1•bookofjoe•19m ago•1 comments

US Army goes green-ish, wants soldiers munching on plant proteins

https://www.theregister.com/offbeat/2026/05/12/us-army-eyes-alternative-proteins-for-soldiers-in-...
1•YeGoblynQueenne•20m ago•0 comments

Every Podcast Award Explained

https://recognized.fm/podcast-awards/
3•Chachingfm•20m ago•2 comments

Boingboing has discovered a new form of advertising hell

https://boingboing.net/2026/04/28/chonkers-the-steller-sea-lion-pays-san-francisco-a-visit.html
1•limbicsystem•20m ago•1 comments

Install web apps with the new HTML install element

https://developer.chrome.com/blog/install-element-ot
2•ulrischa•20m ago•0 comments

Uxxu

https://uxxu.io/
1•k8studio2•22m ago•0 comments

C-suite exodus at Boston Dynamics

https://www.semafor.com/article/05/01/2026/c-suite-exodus-at-boston-dynamics
3•ilamont•23m ago•0 comments

How My Mother Made Magic Happen

https://lithub.com/how-my-mother-made-magic-happen/
2•speckx•24m ago•0 comments

China to Invest in DeepSeek at $50B Valuation

https://www.wsj.com/tech/ai/china-to-invest-in-deepseek-at-50-billion-valuation-045041d0
3•gmays•24m ago•0 comments

Using QUIC backscatter to infer hypergiant deployment configurations

https://blog.apnic.net/2026/04/21/using-quic-backscatter-to-infer-hypergiant-deployment-configura...
1•PaulHoule•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•12mo ago

Comments

llm-exe•12mo 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•12mo 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.