frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Let's understand and implement consistent hashing

https://sushantdhiman.dev/lets-implement-consistent-hashing/
1•birdculture•44s ago•0 comments

Show HN: Beehive – Multi-Workspace Agent Orchestrator

https://storozhenko98.github.io/beehive/
1•mst98•1m ago•0 comments

What Ultimately Is There? Metaphysics and the Ruliad

https://writings.stephenwolfram.com/2026/02/what-ultimately-is-there-metaphysics-and-the-ruliad/
1•inshard•2m ago•0 comments

Show HN: Dypai – Build back ends from your IDE using AI and MCP

https://www.dypai.ai/
1•lorengarcialv•2m ago•0 comments

3D-printing platform rapidly produces complex electric machines

https://news.mit.edu/2026/3d-printing-platform-rapidly-produces-complex-electric-machines-0218
1•JeanKage•5m ago•0 comments

Seedream 5.0: ByteDance's AI image generator with 4K output

https://loraai.io/seedream-50
1•xbaicai•6m ago•1 comments

Is Donald Trump Alive?

https://isdonaldtrumpalive.com/
1•only_in_america•8m ago•0 comments

Gig workers in Africa had no idea they were helping the U.S. military

https://restofworld.org/2026/gig-workers-us-military-appen/
2•JeanKage•8m ago•0 comments

Diesel Vortex: Inside the Russian cybercrime group targeting US and EU freight

https://haveibeensquatted.com/blog/diesel-vortex-inside-the-russian-cybercrime-group-targeting-us...
4•juxhindb•9m ago•1 comments

My lobster lost $450k this weekend

https://pashpashpash.substack.com/p/my-lobster-lost-450000-this-weekend
1•ssiddharth•9m ago•0 comments

Validation Testing for AI Consultancies

https://tryhala.xyz
1•belocci•10m ago•1 comments

Best Web Hosting Services in The USA

https://webseotrends.com/best-web-hosting/
1•manipathakblog•13m ago•1 comments

Show HN:Agentic Browser Automation – Lightweight Selenium and Claude Code Bridge

https://github.com/GregoryLi360/Agentic-Browser-Automation
1•gregoryli360•14m ago•1 comments

Appstore – Upcoming SDK minimum requirements

https://developer.apple.com/news/?id=ueeok6yw
1•notlikeus•15m ago•0 comments

Reproducible Builds in Language Package Managers

https://nesbitt.io/2026/02/24/reproducible-builds-in-language-package-managers.html
1•yla92•15m ago•0 comments

Cloud Hosting vs. Shared Hosting: Which Web Hosting Should You Choose

https://manipathaktech.substack.com/p/cloud-hosting-vs-shared-hosting
1•manipathakblog•15m ago•0 comments

Show HN: SsrJSON: faster than the fastest Python JSON library

https://github.com/Antares0982/ssrJSON
1•antares0982•16m ago•0 comments

Adversarial multi-agent planning and deterministic pipeline execution for agents

https://github.com/elitecoder/forge-ai
1•surferbayarea•17m ago•1 comments

Why There Are So Many Image Formats [video]

https://www.youtube.com/watch?v=W31xBdl5tNA
1•nomilk•18m ago•0 comments

IBM shares plummet 13% after Anthropic COBOL announcement

https://www.forbes.com.au/news/investing/ibm-shares-plummet-13-worst-day-since-2000-after-anthrop...
3•GaryBluto•21m ago•1 comments

The Sender Sub-Language (C++) [pdf]

https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2026/p4014r0.pdf
1•gpderetta•22m ago•0 comments

Show HN: Use this to optimise your CV

https://www.cvcomp.com
1•prashasthajain1•22m ago•0 comments

Is it possible to manipulate your social-media algorithms?

3•JonnyDamnedFox•23m ago•0 comments

Copyright Can Survive in the Age of AI

https://www.ip.mpg.de/en/research/research-news/copyright-in-the-age-of-ai.html
1•JeanKage•26m ago•1 comments

Stick Hero controlled by trackpad pressure (Mac Force Touch, Safari playable)

https://stick-hero-pressure.vercel.app
1•booffa•27m ago•2 comments

SSH Virtual Hosting: No Host Header, but Public Key

https://blog.exe.dev/ssh-host-header
1•pvtmert•27m ago•1 comments

BrokenClaw – RCE in OpenClaw via Gmail Hook

https://veganmosfet.codeberg.page/posts/2026-02-02-openclaw_mail_rce/
2•veganmosfet•28m ago•1 comments

Ask HN: How do you implement production-grade draft isolation in Django?

1•pigon1002•28m ago•0 comments

Bare Zork

https://github.com/Drache93/bare-zork
3•Drache93•31m ago•1 comments

Queues for Kafka ready for prime time

https://freedium-mirror.cfd/https://medium.com/@andrew_schofield/queues-for-kafka-ready-for-prime...
1•gslin•32m 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.