frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Prompt I Cannot Read – Written by an LLM, about Being an LLM

https://the-prompt-i-cannot-read-ee16d7.gitlab.io/
1•antoviaque•2m ago•0 comments

How Genghis Khan Cooled the Planet

https://news.mongabay.com/2011/01/how-genghis-khan-cooled-the-planet/
1•thunderbong•3m ago•0 comments

Let It Flow: Agentic Crafting on Rock and Roll

https://arxiv.org/abs/2512.24873
1•killerdhmo•4m ago•0 comments

OBuilder on Windows: Bringing Native Container Builds with the HCS Back End

https://www.tunbury.org/2026/02/19/obuilder-hcs/
1•todsacerdoti•8m ago•0 comments

Role Models

https://www.profgmedia.com/p/role-models
1•mooreds•8m ago•0 comments

Animated Dark Mode Transition with Modern CSS

https://jonshamir.com/writing/color-mode
1•jonshamir•9m ago•0 comments

Show HN: Ruffle.rs brought back a 2012 Flash MMO to the modern web

https://oldschoolrealms.com/
2•crosschainer•9m ago•0 comments

CAP theorem – Partition is a verb

http://mmudama.github.io/posts/2026/cap-partitions/
1•mooreds•9m ago•0 comments

Agtech company moves headquarters from California to Minnetonka

https://bringmethenews.com/minnesota-business/agtech-company-moves-headquarters-from-california-t...
1•mooreds•10m ago•0 comments

Purl – A curl-esque CLI for making HTTP requests that require payment

https://github.com/stripe/purl
1•vercantez•12m ago•0 comments

Exiting the Cubic Simulation: The SPU-13 and the Geometry of Freedom

https://github.com/johncurley/synergetic-sqr
1•j291920•14m ago•1 comments

Trump tells CNN he's not insisting Iran needs to be a democratic state

https://www.cnn.com/2026/03/06/politics/trump-interview-iran-cuba-dana-bash
2•maxloh•14m ago•1 comments

Ask HN: Why do analytics tools show what happened but not why?

1•HPSimulator•15m ago•0 comments

Loxation flags: pig-butchering, grooming and social engineering

https://www.loxation.com/blog/posts/blog_vector_db_learning_substrate/
1•jabbr•18m ago•0 comments

Show HN: PriceMon – get alerted when a competitor changes their pricing

https://pricemon.io
1•scrygl•21m ago•0 comments

Web inventor Tim Berners-Lee backs social media ban for under-16s

https://www.catalannews.com/business/item/web-inventor-tim-berners-lee-backs-social-media-ban-for...
1•rbanffy•22m ago•0 comments

Syracuse among cities to upgrade snowplows with video, AI and GPS – AP News

https://apnews.com/article/snowplows-blizzard-ai-gps-syracuse-newyork-7508aa04a5877541bb1ea55e946...
1•rbanffy•22m ago•0 comments

China's Parents Are Outsourcing the Homework Grind to A.I

https://www.nytimes.com/2026/03/02/world/asia/china-education-ai.html
1•rbanffy•22m ago•0 comments

Show HN: Typeui.sh – generate skill files for design system specifications

https://www.typeui.sh/
9•elwingo1•24m ago•2 comments

I Audit a Legacy Rails Codebase in the First Week

https://piechowski.io/post/how-i-audit-a-legacy-rails-codebase/
1•birdculture•25m ago•0 comments

We're Training Students to Write Worse to Prove They're Not Robots

https://www.techdirt.com/2026/03/06/were-training-students-to-write-worse-to-prove-theyre-not-rob...
3•PretzelFisch•25m ago•0 comments

Blacksky: Open-source digital public infrastructure project

https://en.wikipedia.org/wiki/Blacksky
1•doener•26m ago•1 comments

Block Number Formats Are Direction Preservers

https://constantinides.net/2026/03/07/block-number-formats-are-direction-preservers/
2•matt_d•26m ago•0 comments

Warren's Abstract Machine: A Tutorial Reconstruction (1999)

https://web.archive.org/web/20220119110941/http://wambook.sourceforge.net/
2•Jtsummers•29m ago•0 comments

A New Version of Our Oracle Solaris Environment for Developers

https://blogs.oracle.com/solaris/announcing-a-new-version-of-our-oracle-solaris-environment-for-d...
3•naves•29m ago•0 comments

Agents of Chaos

https://arxiv.org/abs/2602.20021
1•pagade•30m ago•0 comments

Show HN: Dead Man's Switch – miss a check-in, alert your contacts

https://deadmansswitch.cloud
1•pajones•30m ago•0 comments

Shannon Got AI This Far. Kolmogorov Shows Where It Stops

https://medium.com/@vishalmisra/shannon-got-ai-this-far-kolmogorov-shows-where-it-stops-c81825f89ca0
2•tosh•32m ago•0 comments

Show HN: I made an App for learning Japanese, and it won in Vercel's OSS program

https://github.com/lingdojo/kana-dojo
1•thebababak•34m ago•0 comments

Apple Ads

https://ads.apple.com/app-store
2•_RPM•34m 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•9mo ago

Comments

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