frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft's new DocumentDB rethinks NoSQL on PostgreSQL

https://www.infoworld.com/article/3812630/microsofts-new-documentdb-rethinks-nosql-on-postgresql....
1•amai•32s ago•0 comments

CoreWeave ARIA: AI Research and Iteration Agent

https://wandb.ai/wandb/aria/reports/Introducing-CoreWeave-ARIA-AI-Research-and-Iteration-Agent--V...
1•OnlineInference•38s ago•0 comments

Show HN: Wealtii – Digital Asset index funds with on-chain 1:1 backed vaults

https://wealtii.com/funds
2•zayd7861•3m ago•0 comments

macOS California Camino

https://basicappleguy.com/basicappleblog/macos-california-adventure
1•herbertl•3m ago•0 comments

PostgreSQL Jsonb vs. MongoDB BSON: The Real Architectural Tradeoffs

https://visualeaf.com/blog/postgresql-jsonb-vs-mongodb-bson-architectural-tradeoffs/
1•amai•5m ago•0 comments

Show HN: I built Exfault, agentic mobile app pentesting tool

https://www.exfault.com/
2•shubh_sidhu•7m ago•0 comments

Swarm intelligence without degradation using two Qwen models

1•kofdai•7m ago•0 comments

Creating a Personalised Bin Calendar

https://alexwlchan.net/2026/bin-calendar/
1•surprisetalk•9m ago•0 comments

Toto: From Toilets to E-Chucks [video]

https://www.youtube.com/watch?v=CIB49e_r1OI
1•lyall•10m ago•0 comments

Show HN: Interactive Calculators Hub

2•StizzurpXDD•12m ago•0 comments

SteamOS now offered with new gaming prebuilt PCs

https://videocardz.com/newz/steamos-now-offered-with-new-gaming-prebuilt-pcs
2•LorenDB•13m ago•0 comments

Browser CLI for Agents

https://github.com/detrin/brow
3•kekqqq•15m ago•0 comments

A playbook to rank #1 of the day on ProductHunt

https://m-ric.com/blog/how-to-get-number-1-on-producthunt/
1•aubanel•15m ago•0 comments

Teaching AI how people work is fraught with problems

https://www.economist.com/business/2026/06/25/teaching-ai-how-people-work-is-fraught-with-problems
1•andsoitis•15m ago•1 comments

MD5 Implemented in Bash

https://www.youtube.com/watch?v=VDQmu6KzDvU
2•HeadlessChild•17m ago•2 comments

Show HN: ZUSE – 69x causal compression of a period-15 CA oscillator

https://github.com/conchaestradamiguelangel-droid/zuse-automat-agent
2•conchaestrada•17m ago•0 comments

Metis Learning – Personal Education Platform

https://metis-learn.io/
2•0xfinney•20m ago•0 comments

DRAM Crisis Until 2028

https://www.techpowerup.com/350343/micron-predicts-dram-crisis-until-at-least-2028
3•mr_fantastic•20m ago•0 comments

CaseHero – their call is recorded, yours isn't

https://apps.apple.com/us/app/casehero/id6757936177
1•root_theory•21m ago•0 comments

Did an experienced alpinist leave his girlfriend to die atop a mountain?

https://www.newyorker.com/magazine/2026/07/06/did-a-climber-leave-his-girlfriend-to-die-at-the-to...
2•bookofjoe•21m ago•2 comments

Is closed source even a moat anymore?

https://www.makerchecker.ai/insights/open-source-is-in-again/
1•smashini•22m ago•0 comments

Atrial Fibrillation

https://en.wikipedia.org/wiki/Atrial_fibrillation
1•efavdb•23m ago•0 comments

Zig and the Zig Guy

https://rosswintle.uk/2026/06/zig-and-the-zig-guy/
2•surprisetalk•24m ago•0 comments

GameBoy Emulator on ESP32 and eInk (M5Stack PaperS3) [video]

https://www.youtube.com/watch?v=oPbOK90aJEo
2•HelloUsername•25m ago•0 comments

Instagram is incorporating users' photos in ads for Mera Glasses

https://twitter.com/i/status/2071277885646868536
17•notRobot•28m ago•0 comments

Universal NT Installer: A Lightweight Linux-Based Installer for Windows NT

https://github.com/ages2001/Universal-NT-Installer
1•LorenDB•28m ago•0 comments

Why Spreading Yourself Thin Feels Like Winning

https://alifeengineered.substack.com/p/why-spreading-yourself-thin-feels
2•speckx•29m ago•0 comments

Reflections on 1,000 Days of Math

https://twitter.com/gabemays/status/2071441859709145563
2•gmays•29m ago•0 comments

Show HN: Create agents that grow to fulfill their purpose

https://github.com/opsyhq/wolli
3•saba-ch•29m ago•0 comments

France records around 1k excess deaths in heatwave

https://www.lemonde.fr/en/france/article/2026/06/28/france-records-around-1-000-excess-deaths-in-...
3•rawgabbit•30m 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.