frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Brief History of Computing

https://jasoneckert.github.io/myblog/a-brief-history-of-computing/
1•jasoneckert•31s ago•0 comments

Who's responsible for bug reports on old software versions?

https://pointieststick.com/2026/07/19/whos-responsible-for-bug-reports-on-old-software-versions/
1•zdw•2m ago•0 comments

What Bad Bases Are Good For

https://mathenchant.wordpress.com/2026/07/19/what-bad-bases-are-good-for/
1•jamespropp•3m ago•0 comments

FileVault on versus Off on Apple Silicon Macs

https://derflounder.wordpress.com/2026/07/18/filevault-on-versus-off-on-apple-silicon-macs/
1•zdw•3m ago•0 comments

Deploy AI agent in 5 lines of code

https://www.custodianlabs.io
1•sherryf123•6m ago•0 comments

Trump to fund MAGA-aligned projects in Europe as he reorders US aid

https://www.ft.com/content/1cb986a4-2428-4e64-a559-7867cfa1a3e3
1•petethomas•7m ago•0 comments

Haunt 0.4.0 Released

https://git.dthompson.us/haunt/commit/?id=100da093a804f04d3b10c9db49da663f2246c446
1•birdculture•8m ago•0 comments

AI should have senior lawyers sharpening their hunting spears

https://www.ft.com/content/905e18e6-f054-4995-b5a7-0ff52a65ae57
1•petethomas•12m ago•0 comments

MSI Slyly Shows Off an Upcoming DLC AMD EPYC Venice Platform

https://www.servethehome.com/msi-slyly-shows-off-an-upcoming-dlc-amd-epyc-venice-platform-with-cd...
1•ksec•14m ago•1 comments

Pastors Using AI to Help Write Sermons Grapple with Where to Draw the Line

https://www.wsj.com/tech/ai/pastors-using-ai-to-help-write-sermons-grapple-with-where-to-draw-the...
1•bookofjoe•16m ago•2 comments

Show HN: Promptdna.org- a community library of composable prompt blocks with MCP

https://promptdna.org
1•impendingchange•17m ago•0 comments

I Read the Bonsai 27B Paper. What You Gain–and Lose–With 1-Bit Compression

https://medium.com/@deshpandetanmay/a-27b-ai-model-ran-on-an-iphone-heres-what-survived-compressi...
2•tanmaydesh5189•23m ago•0 comments

Show HN: A self-hosted AI that turns Hacker News into a daily briefing

https://github.com/RecNes/hn-ai-summarizer
1•SencerH•23m ago•0 comments

Self-evolving repo for team and coding agent collaboration

https://www.sepo.sh/
3•liangqiyao99•24m ago•0 comments

Ancient Roman farm women made wine, oil and profits

https://phys.org/news/2026-07-ancient-roman-farm-women-wine.html
1•1659447091•24m ago•0 comments

Show HN: Rate A Human – AI agents review the humans they work for

https://rateahuman.xyz/
1•ziadhussein•25m ago•0 comments

A real SAT solution. P is not always hard

https://zenodo.org/records/21445865
1•GeometryKernel•26m ago•0 comments

Tripplet AI – a new era of smarter AI

https://www.getsonoma.lol/
1•htmghrceceg•30m ago•0 comments

Godot Benchmark: Sol > K3 > Fable

https://ziva.sh/blogs/godot-ai-benchmark
1•OsrsNeedsf2P•30m ago•0 comments

Ask HN: Run Kimi in Claude Code?

1•Exorust•31m ago•0 comments

We built an open-source static AI risk analyzer in 5 days using AI coding agents

https://github.com/ikaruscareer/SafeAI
1•ikaruscareer•31m ago•0 comments

Meet The Companies Shelling Out for Top AI Models

https://www.wsj.com/cio-journal/meet-the-companies-shelling-out-for-top-ai-models-e1fe3375
1•pixelcort•31m ago•1 comments

Boeing says it will be ready to fund new plane programme by 2030

https://www.ft.com/content/c688ea11-c066-44a3-9372-2e2293e9e6f9
3•JumpCrisscross•40m ago•1 comments

Principia Artificialis – Mathematical Foundations of Artificial Thought

https://github.com/holland202/Principia-Artificialis
3•badatchess•42m ago•0 comments

Gaia Skill Tree: a registry where every agent skill ships with an evidence chain

https://github.com/gaia-research/gaia-skill-tree
1•nova-gaia•46m ago•0 comments

Show HN: Ticker-line.com – embeddable market sparkline SVGs

https://ticker-line.com/
1•kahtaf•47m ago•0 comments

Scientists are regrowing human teeth

https://www.bbc.com/future/article/20260717-goodbye-implants-scientists-are-regrowing-teeth
2•dabinat•49m ago•1 comments

Is it a slop if it's not sloppy?

https://mkagenius.substack.com/p/is-it-a-slop-if-its-not-sloppy
3•mkagenius•52m ago•4 comments

Jurassic Park packed $4M of legit 1993 computer hardware

https://www.tomshardware.com/desktops/jurassic-park-packed-usd4-million-of-legit-1993-computer-ha...
7•sbulaev•57m ago•2 comments

xAI's first lawsuit against a user tests who is responsible for what Grok makes

https://thenextweb.com/news/xai-sues-grok-user-csam-terms-of-service
7•nyku•58m 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.