frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Simulated 30 agents across 6 major crypto crashes

1•AQMathApp•11s ago•0 comments

PlaytestQuest – Discord Quests for indie game devs and players

https://playtestquest.com
1•firmgrove•11s ago•0 comments

Gobwas/glob: a complete engine rewrite and v1.0.0 is finally here

https://github.com/gobwas/glob
1•gobwas•12s ago•0 comments

I created an extensible JavaScript parser

https://github.com/xjslang/xjs
1•GonzaloCV•1m ago•0 comments

Columnist: OpenAI and Anthropic are ruining San Francisco

https://www.sfgate.com/local/article/open-ai-anthropic-ruining-sf-22404657.php
1•walrus01•1m ago•0 comments

Let's Talk Roadmap Planning: Can 9 Women Make One Baby in One Month?

https://honestroadmaps.substack.com/p/lets-talk-roadmap-planning-can-9
1•mooreds•1m ago•0 comments

How to Write a Good Requirement– Checklist

https://www.nasa.gov/reference/appendix-c-how-to-write-a-good-requirement/
1•sturza•1m ago•0 comments

Florida Attorney General: We're not settling with Meta, we're going to court

https://www.youtube.com/watch?v=xCoYVusz1U8
1•root-parent•1m ago•0 comments

From Designed to Evolved Software

https://eakman.dev/from-designed-to-evolved-software/
1•dayflyer•2m ago•0 comments

Su-śrotā – Scholar-grade Sanskrit ASR

https://huggingface.co/prathoshap/sushrota-sanskrit-asr
1•yarapavan•2m ago•1 comments

Show HN: ContextSwitch – Make your LLM chats provider agnostic

https://contextswitch-blue.vercel.app/
1•rajtilakjee•3m ago•0 comments

SambaNova's SN50 RDU for AI at Hot Chips 2026 – ServeTheHome

https://www.servethehome.com/sambanovas-sn50-rdu-for-ai-at-hot-chips-2026/
1•rbanffy•3m ago•0 comments

Show HN: Repobeats – self-hostable GitHub activity cards in Rust

https://repobeats.com/
1•AprilNEA•3m ago•0 comments

Nvidia's DLSS 5 has leaked, and modders are creating uncanny nightmares

https://www.xda-developers.com/nvidia-dlss-5-has-leaked-modders-are-already-creating-uncanny-vall...
2•kuuuzya•6m ago•0 comments

Show HN: The Million Dollar Homepage, but it gets printed on an iPhone skin

https://www.skinoftheyear.lol/
1•codemersdev•6m ago•1 comments

The cheapest accommodation in Paris is disappearing: Here's why

https://www.cnn.com/travel/paris-chambre-de-bonnes-heat-climate
2•mooreds•6m ago•0 comments

Verner's Law (Linguistics)

https://en.wikipedia.org/wiki/Verner%27s_law
1•ogogmad•6m ago•0 comments

MeDB is a JSON database for Go

https://github.com/antonmedv/medb
1•medv•6m ago•0 comments

Nvidia turns Hugging Face checkpoints into C++ inference

https://forgeeks.net/nvidia-tensorrt-model-connect-preview/
1•kuuuzya•7m ago•0 comments

Benchmarking – Frontier models go out of their way to cheat

https://tuneloop.io/blog/frontier-models-cheat
1•behat•8m ago•0 comments

How to run Qwen3.8-27B on a single 16GB card

https://www.autodidacts.io/how-to-fit-qwen3-8-27b-into-16gb-vram-run-with-llama-cpp-rtx-3080-flag...
1•Curiositry•8m ago•0 comments

You'll Learn to Love the Cage

https://frameros.substack.com/p/how-youll-learn-to-love-the-cage
1•CircuitSeuss•9m ago•0 comments

EFF and Allies: Privacy Protections Are Crucial to Electoral Integrity

https://www.eff.org/deeplinks/2026/08/eff-and-allies-brazils-elections-privacy-protections-are-cr...
1•hn_acker•11m ago•1 comments

Udeler-Reborn: An open-source, zero-trust course archiver

https://github.com/M3rcena/Udeler-Reborn
1•m3rcena•11m ago•0 comments

Does the Rise of AI Mean the End of the IT Era?

https://www.longfinance.net/news/pamphleteers/does-the-rise-of-ai-mean-the-end-of-the-it-era/
2•happy-go-lucky•12m ago•0 comments

America's safety net isn't ready for the age of AI

https://blog.csaip.org/p/americas-safety-net-isnt-ready-for
1•m-hodges•13m ago•0 comments

Tesla Full Self-Driving likes trains a bit too much

https://electrek.co/2026/08/27/tesla-fsd-likes-trains-too-much/
1•Veserv•14m ago•1 comments

Starship is coming home SpaceX loads floating spacecraft onto ship in the

https://www.space.com/space-exploration/launches-spacecraft/starship-is-coming-home-spacex-loads-...
1•bookmtn•14m ago•0 comments

Micron: HBM requires around three times as much wafer area as DDR5

https://www.igorslab.de/en/micron-hbm-requires-three-times-wafer-area-ddr5-gap-widens/
1•ermantrout•15m ago•0 comments

OpenSoundControl (OSC) Specification(s)

https://opensoundcontrol.stanford.edu/
1•Bluestein•15m 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.