frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Krasis LLM Runtime – run large LLM models on a single GPU

https://github.com/brontoguana/krasis
1•brontoguana•3m ago•1 comments

People who built the future, in their own words – Oral histories from CHM

https://f0lkl0r3.dev/#/
2•aanet•6m ago•0 comments

Fundamentals of Software Engineering: From Coder to Engineer

https://fundamentalsofswe.com
1•teleforce•9m ago•0 comments

NIST Time Widget

https://time.gov/widget/
1•gregsadetsky•10m ago•1 comments

Replit Is Pre‐Shopify‐2012

https://github.com/getlago/lago/wiki/Replit-Is-Pre%E2%80%90Shopify%E2%80%902012
2•AnhTho_FR•10m ago•0 comments

Confidently Wrong: Agentic coding predictions for the next year

https://thomshutt.com/2026/03/17/predictions/
1•chaghalibaghali•11m ago•0 comments

Open-index/hacker-news · Datasets at Hugging Face

https://huggingface.co/datasets/open-index/hacker-news
1•sharjeelsayed•11m ago•0 comments

Show HN: Score your GitHub repo for AI coding agents

https://twill.ai/scorecard
1•danoandco•12m ago•1 comments

Humanoids – A Bloomberg Terminal for the Robotics supply chain

https://www.humanoids.fyi/#/tab/skeleton
2•DwayneSamuels•15m ago•0 comments

systemd v260

https://github.com/systemd/systemd/releases/tag/v260
2•voxadam•15m ago•0 comments

American Diner Gothic

https://www.thenewatlantis.com/publications/american-diner-gothic
1•wyclif•16m ago•0 comments

Image manipulation has always been around: photographic fakes that trick the eye

https://www.bbc.com/culture/article/20260216-10-early-photographic-fakes-that-trick-the-eye
27•breve•20m ago•0 comments

Show HN: System that rediscovers physics laws from raw data autonomously

https://protoscience.ai
1•strujillo•21m ago•0 comments

'Many people fooled' by AI wedding pics, says Zendaya

https://www.bbc.com/news/articles/clyz7llp4k2o
1•breve•22m ago•0 comments

Show HN: Turn GitHub Pages into an Apt Repository

https://github.com/K0IN/apt-github-pages
1•K0IN•23m ago•0 comments

Brave is overriding user choice

https://community.brave.app/t/vimium-not-allowed-to-run-on-search-brave-com/650732
1•mcint•25m ago•0 comments

Arizona Files Criminal Charges Against Kalshi, the Prediction Site

https://www.nytimes.com/2026/03/17/technology/arizona-criminal-charges-kalshi.html
2•bookofjoe•27m ago•1 comments

Ask HN: Is anyone building write guarantees for agents working across tool

1•ajaystream•27m ago•0 comments

Tsdraw – a free modular drawing app

https://github.com/varunaditya-plus/tsdraw
1•varunaditya•30m ago•1 comments

The 30% Rule in AI

https://www.generative.inc/what-is-the-30-rule-in-ai
1•goldkey•31m ago•0 comments

Show HN: GitGlimpse – GitHub Action that generates UI/UX demos for your PRs

https://github.com/DeDuckProject/git-glimpse
2•fatach•32m ago•0 comments

The Delegation Dilemma, When AI Becomes Your Best Employee

https://leadprompt.sh/a/728-The-Delegation-Dilemma,-When-AI-Becomes-Your-Best-Employee-2026w8
1•saltysalt•33m ago•0 comments

CVE-2026-31900, my 0-click RCE in the psf/black GitHub Action

https://medium.com/securitycertcommunity/cve-2026-31900-50800bafafba
2•ParzivalHack•35m ago•1 comments

Marvin Hagemeister, Luca Casonato, David Sherret and Phil Hawksworth left Deno

https://bsky.app/profile/lcas.dev/post/3mhb4kavxd22y
11•simlevesque•38m ago•4 comments

What If You Could Know What Your Judge Did Last Summer?

https://rokoslobbyist.substack.com/p/what-if-you-could-actually-know-what
2•anonym29•40m ago•0 comments

Why AI systems don't learn – On autonomous learning from cognitive science

https://arxiv.org/abs/2603.15381
2•aanet•40m ago•2 comments

Motorcycle makers in Japan race to go carbon-neutral

https://www.japantimes.co.jp/business/2026/02/24/companies/japan-electric-motorbikes/
1•PaulHoule•42m ago•0 comments

Tennessee Teens Sue Elon Musk's xAI over Child Sexual Abuse Images

https://www.motherjones.com/politics/2026/03/tennessee-teens-sue-elon-musks-xai-over-child-sexual...
2•cdrnsf•42m ago•0 comments

Netanyahu Posts 'Proof of Life' Video as A.I. Sows Doubts About What's Real

https://www.nytimes.com/2026/03/17/technology/netanyahu-ai-video-iran-israel.html
2•geox•42m ago•0 comments

RustCFML – A CFML interpreter written in Rust

https://github.com/pixl8/RustCFML
3•rmason•47m 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•10mo ago

Comments

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