frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How the Peter Thiel-Linked Dialog Club Ranks Its Members

https://www.wired.com/story/how-peter-thiels-private-dialog-club-secretly-ranks-its-members/
1•mukmuk•40s ago•0 comments

NASA brought the monstrous F-1 "moon rocket" engine back to life (2013)

https://arstechnica.com/science/2013/04/how-nasa-brought-the-monstrous-f-1-moon-rocket-back-to-life/
1•Eridanus2•1m ago•0 comments

Selling My House with a Chatbot

https://www.nytimes.com/2026/05/28/technology/sell-house-with-ai-no-realtor.html
1•lispybanana•2m ago•0 comments

Newgrange

https://en.wikipedia.org/wiki/Newgrange
2•Amorymeltzer•3m ago•0 comments

Show HN: MCP tools in one server – pay-as-you-go, no subscription

https://smithery.ai/servers/scotia1973/api-hub2
1•scotty73•3m ago•0 comments

Show HN: Press and Hold

https://pressandhold.vercel.app/
1•leonagano•4m ago•0 comments

Ask HN: How much do you trust LLMs with your health questions?

1•thedreammachine•4m ago•0 comments

NASA picks Eric Schmidt's rocket company for Mars mission, sets up race w SpaceX

https://techcrunch.com/2026/06/17/nasa-picks-eric-schmidts-rocket-company-for-mars-mission-settin...
2•bookofjoe•6m ago•0 comments

Unifying Embodied World Modeling Through Language-Conditioned Video Gen

https://arxiv.org/abs/2606.17030
1•gmays•6m ago•0 comments

Get user requests directly on your website and have an agent build

https://amendor.site/
1•osaeld•9m ago•0 comments

Eve

https://vercel.com/blog/introducing-eve
1•gmays•11m ago•0 comments

FlipCTL – our GUI framework for embedded Linux systems

https://blog.flipper.net/flipctl-our-gui-framework-for-embedded-linux-systems/
1•avrong•13m ago•0 comments

Brainux: Linux for "Sharp Brain" electronic dictionaries (Japanese)

https://brainux.org/about/
1•tslmy•15m ago•0 comments

How to Build the Future of AI in the Free World (Carnegie Endowment)

https://carnegieendowment.org/research/2026/06/the-compute-coalition-how-to-build-the-future-of-a...
1•indynz•17m ago•0 comments

The Line Vibe Coding Can't Cross

https://blog.r-lopes.com/newsletter/2026-06-18
2•dovelome•17m ago•0 comments

Show HN: Hermzner – Provisioning an Hardened Hermes Agent on Hetzner VPS

https://github.com/scicco/hermzner
1•_zendar_•19m ago•0 comments

Unsloth: Easily run and train models locally

https://unsloth.ai/
1•doener•19m ago•0 comments

Genomic Foundation Models in 2026: What Survives a Held-Out Test Set

https://rewire.it/blog/genomic-foundation-models-in-2026/
1•epistasis•22m ago•0 comments

Hacker News Analyzer

https://hackernewsanalyzer.com/
1•dgellow•24m ago•0 comments

Ask HN: Unflag my Show HN post

2•Osoraku•24m ago•0 comments

A macOS virtual camera (CMIO system extension) that loops a clip of you

https://camloop.app/
1•tarikbc•25m ago•0 comments

OpenMontage the first open-source, agentic video production system

https://github.com/calesthio/OpenMontage
2•rmason•26m ago•0 comments

The AirPods Effect

https://www.theescapenewsletter.com/p/the-airpods-effect
8•herbertl•26m ago•0 comments

Twerkless: Real Builders Don't Twerk

https://twerkless.com/
1•javierluraschi•26m ago•0 comments

HN: WebScore.now – Website scan for SEO, performance, security and more

https://webscore.now
1•eduardpantazi•27m ago•0 comments

Intelica – competitive intelligence API that charges AI agents $0.05 via x402

https://api.intelica.dev
2•Teocrispin•27m ago•0 comments

DOE explains symmetry in physics

https://www.energy.gov/science/doe-explainssymmetry-physics
1•hhs•30m ago•0 comments

Vacation With An Artist: Book mini-apprenticeships with master artists

https://vawaa.com/
1•herbertl•35m ago•0 comments

Running GLM-5.2 5x faster at 500tps with limitation

https://abhishek.it/blog/glm-5.2-tilert-8xb200-benchmark
2•darkbatman•36m ago•0 comments

OpenAI joins the Rust foundation as a Platinum member

https://rustfoundation.org/media/on-openais-support-for-rust/
2•wofo•36m 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.