frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Run coding agents on your own machine, steer them from anywhere

https://github.com/phyra-research/roamux
1•mwiki•1m ago•0 comments

Diablo 5 Announced

https://sea.ign.com/diablo-iv/248747/diablo-5-announced
1•nsoonhui•2m ago•0 comments

Ask HN: Should we start airgapping our personal devices?

1•emerongi•2m ago•0 comments

Android – Morphe patch app list

https://morphe-patches.software/#apps
1•dockerd•3m ago•0 comments

Deepfakes are wrecking influencers' credibility, one fake ad at a time

https://www.theguardian.com/technology/2026/sep/12/deepfakes-wrecking-influencers-credibility
1•andsoitis•6m ago•0 comments

Genuine curiosity will always beat performative intellectualism

https://hasifcore.substack.com/p/genuine-curiosity-will-always-beat
1•the-mitr•7m ago•0 comments

Rawtree – A ClickHouse Fork by Tinybird

https://rawtree.com/
1•knuckleheads•7m ago•0 comments

Matt Berry is now a sentient IKEA shelf in Skyrim

https://www.pcworld.com/article/3233287/matt-berry-is-now-a-sentient-ikea-shelf-in-skyrim.html
1•jubayer9906•11m ago•0 comments

Ask HN: What if anyone could sell AI tokens from their idle GPU?

1•edurights-team•11m ago•1 comments

Show HN: How LLMs work, explained through music, football or cricket analogies

https://understand-ai.dev/
1•understandaidev•11m ago•0 comments

Persimmon v0.1 Model Card

https://persimmon.humansand.ai/blog/persimmon-model-card.html
1•pr337h4m•11m ago•0 comments

Little Tikes iconic children's toys go colorless for 'contemporary feel'

https://www.wafb.com/2026/09/10/little-tikes-iconic-childrens-toys-go-colorless-contemporary-feel/
2•Danhale93•13m ago•0 comments

Dramatic insider warnings over AI fall flat with some in Silicon Valley

https://www.bbc.co.uk/news/articles/cq635037g18o
6•chrisjj•14m ago•0 comments

Texts Reveal Kash Patel Ordering Staff to Fight "Ifindretards" Account

https://newrepublic.com/post/215320/texts-kash-patel-order-staff-mean-social-media-posts-ifindret...
3•girish_r•15m ago•0 comments

Massing

https://en.wikipedia.org/wiki/Massing
1•tosh•24m ago•0 comments

This website runs on a Raspberry Pi 4B with only 1 GB of RAM

https://pi.deepakness.com/
2•7777777phil•26m ago•0 comments

Pace the frontier but stop pretending you need anyone else's permission

https://twitter.com/DavidSacks/status/2098973625252708460
1•caaqil•28m ago•0 comments

Software Engineer: I'm Tired of Pretending [video]

https://www.youtube.com/watch?v=H0HwFqBG9KE
1•conferza•30m ago•0 comments

OpenAI built a text generator so good, it's considered too dangerous (2019)

https://techcrunch.com/2019/02/17/openai-text-generator-dangerous/
6•olalonde•31m ago•0 comments

Keep calm and regulate on: Inside the EU's response to AI extinction warnings

https://www.politico.eu/article/eu-response-ai-extinction-warnings/
3•vrganj•31m ago•1 comments

Monitoring Mint with Microcontrollers Running TinyGo

https://www.mrnice.dev/posts/monitoring-mint-part-1/
1•ShayNehmad•31m ago•1 comments

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
15•taubek•32m ago•6 comments

A rant about phishing: It's not the user's fault (and not DNS either)

https://maurycyz.com/misc/domains/
3•birdculture•37m ago•0 comments

Show HN: Fly or Tesla – Compare the cost, time, and stress of flights vs. FSD

https://flyortesla.com/
3•optimizethis•39m ago•3 comments

How are you using a Desktop or Browser AI agent daily?

2•Qhloi•41m ago•0 comments

American Medical Association backs classification of nearsightedness as disease

https://www.aao.org/newsroom/news-releases/detail/ama-backs-formal-classification-nearsightedness
14•plun9•46m ago•6 comments

A remote island, these GPS hackers are preparing for an invisible war

https://www.bbc.com/future/article/20260908-inside-the-fight-to-protect-the-worlds-satellite-signals
4•rayhaanj•48m ago•0 comments

AI staff 'genuinely frightened' for humanity's future

https://www.bbc.com/news/articles/c1kx0gyje9wo
2•dabinat•48m ago•0 comments

Africa's Airliner Fleet May More Than Double by 2045

https://humanprogress.org/africas-commercial-fleet-to-more-than-double-by-2045/
1•andsoitis•52m ago•0 comments

Generating running routes with GPT-6 Astra and ChatGPT Work

https://simonwillison.net/2026/Sep/12/astra-running-routes/
1•tosh•53m 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.