frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DoorDash CLI

https://twitter.com/andyfang/status/2077516962515599799
1•whalesalad•2m ago•0 comments

Skills Asset Protocol

https://neverhandedover.com
1•aznatkoiny•5m ago•0 comments

Fusing a 27B ternary LLM's whole decode step into one CUDA kernel

https://twitter.com/Akashi203/status/2077552491567157733
1•Jr23_xd•7m ago•0 comments

IBM stock closes down more than 25% after preannounced earnings results

https://finance.yahoo.com/markets/stocks/article/ibm-stock-closes-down-more-than-25-after-preanno...
1•kaycebasques•7m ago•1 comments

AI Data Center Companies for Sale – Owners Liquidating Assets Before Crash [video]

https://www.youtube.com/watch?v=iVkgD4phOHQ
1•xbmcuser•15m ago•0 comments

What makes soccer so enjoyable to watch?

https://thomasdhughes.com/the-beautiful-game/
1•thomasdhughes2•16m ago•0 comments

Shapeshifting

https://www.guidavid.com/writing/shapeshifting
2•gdss•17m ago•0 comments

Arbitration Information

https://arbitrationinformation.org
1•mtlynch•18m ago•0 comments

Free Remote Desktop Without Servers

https://github.com/Teylersf/freeremotedesk
2•pruufsocial•21m ago•1 comments

Tahr Security Skills

https://www.skills.sh/tahr-security/tahr-security-skills
2•zilbon•21m ago•0 comments

SQLite: The Advantages of Flexible Typing

https://sqlite.org/flextypegood.html
1•notRobot•21m ago•1 comments

Photo of Lionel Messi with Lamine Yamal as a Baby (2024)

https://apnews.com/article/messi-yamal-euro-photo-59f929c17bc0994134e7b63facd0ea0e
1•nither•22m ago•1 comments

Hamilton council votes down bylaw – No ban against data centre development

https://www.cbc.ca/news/canada/hamilton/data-centre-ban-voted-down-9.7271641
1•ChrisArchitect•26m ago•0 comments

The New Private Asset

https://chamath.substack.com/p/privacy-tokens
1•gmays•26m ago•0 comments

Show HN: Resultant Engineering Student Tools Site

https://resultant.tools/
2•will2092347•29m ago•0 comments

Show HN: MasterVault: Stop your LLM's context file from growing stale

https://github.com/JustMichael-80/MasterVault
1•ChronoDyneSys•31m ago•0 comments

AIcss: UI Components for AI Agents

https://www.aicss.dev
1•handfuloflight•32m ago•0 comments

Show HN: Throttle – Local Claude Cockpit for macOS, now with remote control

https://lorislab.fr/throttle/
1•lorislab•33m ago•0 comments

Asymmetric Apologies

https://sajarin.com/blog/asymmetric-apologies/
1•Sajarin•34m ago•0 comments

OpenAI is everything it promised not to be: closed-Source and for-profit (2023)

https://www.vice.com/en/article/openai-is-now-everything-it-promised-not-to-be-corporate-closed-s...
4•maxloh•34m ago•1 comments

Test-time training 3D reconstruction

https://github.com/Inception3D/TTT3R
1•soupspaces•34m ago•0 comments

Launching cdbx.ai with 50% off Pro Plans

https://cdbx.ai/
1•chbutler•35m ago•1 comments

I created S8sskills.com, an open source repo for serverless agent skills

https://s8sskills.com
1•jasonsmithio•36m ago•1 comments

End-to-end encrypted secret sharing with the Web Crypto API

https://notnotp.com/notes/end-to-end-encrypted-secret-sharing-with-the-web-crypto-api/
2•birdculture•37m ago•0 comments

Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers

https://arxiv.org/abs/2606.31779
1•simonpure•39m ago•0 comments

B.Y.O.A. – Bring Your Own Agent [video]

https://www.youtube.com/watch?v=4ISj9sxKDAQ
1•JohnBerryman•46m ago•0 comments

IDPFlare – Identity Provider Built for Cloudflare

https://idpflare.com/
2•jimmcslim•52m ago•0 comments

Hedge Fund Giants Have a New Profit Engine: Their Smaller Rivals

https://www.bloomberg.com/news/articles/2026-07-15/hedge-funds-turn-to-smaller-independent-firms-...
2•petethomas•53m ago•1 comments

Aval: New open-source format for interactive video on the web

https://github.com/pixel-point/aval
2•handfuloflight•53m ago•1 comments

Rusefi – GPL internal combustion engine ECU

https://github.com/rusefi/rusefi
2•bilegeek•55m ago•3 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.