frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Dimitri Fontaine: Ten years of Postgres logical replication

https://tapoueh.org/blog/2026/09/ten-years-of-postgres-logical-replication/
1•hnp9j9qtda•32s ago•0 comments

NASA Modernizes Commercial Airline Systems

https://www.nasa.gov/directorates/armd/aosp/nasa-modernizes-commercial-airline-systems/
1•geox•34s ago•0 comments

Ink and Switch Interactive Homepage

https://www.inkandswitch.com/
1•iFreilicht•8m ago•0 comments

New York State Sue Polymarket for Running Illegal Gambling Operation

https://www.governor.ny.gov/news/governor-hochul-and-attorney-general-james-announce-lawsuit-agai...
1•DeepLogin•11m ago•0 comments

The Appocalypse

https://chrysalisbyauke.substack.com/p/the-appocalypse
1•Poefke•14m ago•1 comments

Study reveals evolutionary history of bats, dating back 65M years

https://www.reuters.com/science/study-reveals-evolutionary-history-bats-dating-back-65-million-ye...
2•1659447091•20m ago•0 comments

Show HN: AtlasBurn – Know what your AI costs and stop runaway agents

https://atlasburn.com/
2•Akhil__Anand•21m ago•0 comments

Netanyahu calls Israel's war in Gaza 'opposite of genocide' in UN speech

https://www.theguardian.com/us-news/2026/sep/24/netanyahu-un-speech-mahmoud-abbas
4•hebelehubele•24m ago•0 comments

The Purpose Isn't What It Does

https://www.tbray.org/ongoing/When/202x/2026/09/24/The-Purpose-Isnt-What-It-Does
1•robin_reala•26m ago•0 comments

Tech Needs Humanists More

https://passo.uno/tech-needs-humanists-more-than-ever/
14•eigenBasis•27m ago•1 comments

Privacy.com does KYC using Peter Thiel's Persona [video]

https://www.youtube.com/watch?v=1P1y5YhMHXs
1•basilikum•28m ago•0 comments

Show HN: LabLoop – isolated infrastructure for LLM-driven scientific experiments

https://github.com/cloudcell/labloop
1•cloudcell•32m ago•0 comments

Dutch Hackers Collective Hacked

https://csirt.divd.nl/2026/09/24/when-not-if/
2•HelloUsername•32m ago•0 comments

Boards of Casio

https://www.ambionix.com/blog/boards-of-casio/
2•fidotron•33m ago•0 comments

AI as a Tool in Taste Research: decoding the taste of bitterness

https://www.leibniz-lsb.de/en/press-public-relations/pm-20260922-press-release-ai-as-a-tool-in-ta...
1•giuliomagnifico•34m ago•0 comments

Show HN: Selfime, a cassette-style recorder for meditations in your own voice

https://selfime.com/
1•loopfor•34m ago•0 comments

Show HN: Proxima Forma – Designs that my AI agents understand

https://proximaforma.com/
1•Modecir•36m ago•0 comments

Bootstrap Chain for NixOS: Building the System from a Hand-Auditable Binary Seed

https://chaos.social/@nzbr/115973847897716839
1•birdculture•39m ago•0 comments

What is the future for soace science missions after all this?

https://www.scientificamerican.com/article/nasa-goddards-shrinking-workforce-could-stifle-future-...
1•quasistasis•41m ago•1 comments

In Support of Agent Led Software Engineering

https://promptogether.com/posts/In_Support_of_Agent_Led_Software_Engineering/
1•brainless•43m ago•1 comments

NHS bodies in England impose 2-year minimum wait for ADHD and autism assessments

https://www.theguardian.com/society/2026/sep/24/nhs-integrated-care-boards-england-two-year-waiti...
1•chrisjj•43m ago•1 comments

Show HN: Apowerb, the open-source AI agent runtime (RAG, Text-to-SQL, webhooks)

https://github.com/apowerb/apowerb
1•Anis_FA•46m ago•0 comments

The last day of the dinosaurs, as an interactive painting

https://www.echohive.ai/experiments/dinosaurs
11•echohive42•1h ago•11 comments

Special Projects (2016)

https://openai.com/index/special-projects/
15•vinhnx•1h ago•1 comments

Colibri: CERN VHDL Common Library Released for Everyone to Use

https://ep-news.web.cern.ch/colibri-cern-vhdl-common-library-released-for-everyone-to-use/
1•nhatcher•1h ago•1 comments

Running local LLMs on your Mac: what fits, what's free, and what's overkill

https://typetab.app/blog/local-llms-on-your-mac
3•donk8r•1h ago•0 comments

Ex-Microsoft dev builds a new task manager for Linux

https://www.omgubuntu.co.uk/2026/09/tmog-task-manager-linux-beta
2•theanonymousone•1h ago•0 comments

A master class in decorators, patching and tracing

https://grahamdumpleton.me/posts/2026/09/a-master-class-in-decorators-patching-and-tracing/
1•lumpa•1h ago•0 comments

Who Is Open Source About?

https://blog.glyph.im/2026/09/who-is-open-source-about.html
3•lumpa•1h ago•1 comments

The Orient Cables IPO Explained

https://finshots.in/markets/orient-cables-ipo-explained/
1•vismit2000•1h 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.