frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Universal Declaration of the Three Laws of Autonomous Agents

https://countercurrents.org/2026/09/universal-declaration-of-the-three-laws-of-autonomous-agents/
1•anuraj•2m ago•0 comments

What we do to the web, we do to ourselves

https://spiffworks.substack.com/p/what-we-do-to-the-web-we-do-to-ourselves
1•danfunk•3m ago•1 comments

Show HN: A writing coach that's not allowed to write your sentences

https://app.oghmere.com/try/HACKERNEWS2026
1•ygjb•3m ago•0 comments

Is science journalism dying? Comparing a "science crash" 40 years ago to today

https://www.niemanlab.org/2026/09/is-science-journalism-dying-comparing-a-science-crash-40-years-...
1•rdmuser•3m ago•0 comments

Is Compounding Inference as Powerful as Compounding Interest?

https://blog.neurometric.ai/p/compounding-inference-is-as-powerful
1•robmay•5m ago•0 comments

Shifting news authorities and democratic resilience

https://www.coe.int/en/web/freedom-expression/-/shifting-news-authorities-and-democratic-resilien...
1•taubek•5m ago•0 comments

Measuring AI's Impact on Delivery Speed

https://www.jamesshore.com/v2/blog/2026/measuring-ais-impact-on-delivery-speed
1•speckx•7m ago•0 comments

Human extinction 'just a matter of time' if AI slowdown doesn't go far enough

https://www.ctvnews.ca/sci-tech/article/state-of-emergency-montreal-based-ai-expert-says-industry...
2•hmokiguess•7m ago•1 comments

AI-Based Coding and Alienation

https://arnerief.net/en/articles/ai-coding-alienation/
1•olwmc•9m ago•0 comments

Show HN: Amika – Multiplayer cloud workstations for coding agents and humans

https://www.amika.dev/
2•dbmikus•10m ago•1 comments

Meta launches subscriptions with enhanced AI features

https://www.reuters.com/business/meta-launches-subscriptions-with-enhanced-ai-features-2026-09-15/
1•thm•10m ago•0 comments

Scientists discover switch that shuts down inflammation

https://www.sciencedaily.com/releases/2026/09/260911214306.htm
2•elo2000•11m ago•0 comments

Google copied our open-source code, removed engineers' names without credit

https://www.reddit.com/r/reinforcementlearning/comments/1wg1unx/google_copied_our_opensource_code...
2•jacquesm•11m ago•0 comments

Nobody pays for open source. We can force them to

https://seldo.com/posts/nobody-pays-for-open-source-we-can-force-them-to/
2•latchkey•11m ago•0 comments

Hugging Face is billing OpenAI $100M for hacking it

https://thenextweb.com/news/hugging-face-delangue-openai-100m-compute-traces-demand
3•cwwc•13m ago•0 comments

A new device helps severely paralysed patients communicate

https://www.economist.com/science-and-technology/2026/09/14/a-new-device-helps-severely-paralysed...
1•Brajeshwar•14m ago•0 comments

An updated look for the Raspberry Pi Desktop

https://www.raspberrypi.com/news/an-updated-look-for-the-raspberry-pi-desktop/
2•Brajeshwar•15m ago•0 comments

An Update on Wayback Machine Access

https://blog.archive.org/2026/09/15/an-update-on-wayback-machine-access/
3•ChrisArchitect•17m ago•0 comments

From Indigenous Loss, a Potent Legal Argument on Climate

https://e360.yale.edu/features/julian-aguon-interview
1•Brajeshwar•18m ago•0 comments

Verification Layer for Any Model

https://abloh.dev
1•unicornvom12•19m ago•1 comments

B2B SaaS Meta Ads: A Funnel-to-Creative Matrix

https://adriselab.com/blog/b2b-saas-meta-ads-creative-funnel-matrix
1•canermoraly•19m ago•0 comments

Auto-autoresearch: self-improving agents on Karpathy's NanoChat benchmark

https://rekursiv.ai/blog/autoautoresearch/
1•hyperparticle•20m ago•0 comments

Public Data for Health at the OpenAI Foundation

https://openaifoundation.org/news/public-data-for-health
1•abhishaike•21m ago•0 comments

Leaving Proton Mail

https://runarcn.no/leaving-proton-mail/
3•speckx•22m ago•1 comments

Making a movie in pure SVG using SMIL

https://www.zeyaddeeb.com/experiments/wes-anderson
1•zdeeb•23m ago•0 comments

Question for the Feds from Vanderbilt: Can We Start a Federal Drone Research?

https://jeniffergatesforuspresidentforlife.com
1•wapiou•25m ago•0 comments

Air pollution spiked 30% since US stopped worldwide embassy monitoring in 2025

https://www.npr.org/2026/09/15/nx-s1-5966503/air-pollution-spiked-after-the-trump-administration-...
1•ck2•25m ago•1 comments

Turning a Live Camera Feed into an Oil Painting

https://worthyrae.com/art/livestream-art
2•stingrae69•25m ago•0 comments

A 40-year-old bug in BSD Unix domain socket inode allocation discovered on the D

https://yuvalino.com/how-can-you-not-be-romantic-about-unix-domain-sockets
1•fanf2•27m ago•0 comments

How Americans think about censorship of news in the U.S.

https://www.pewresearch.org/journalism/2026/09/15/how-americans-think-about-censorship-of-news-in...
1•iamnothere•27m 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.