frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A macOS bell that rings when your Codex CLI session needs input

https://github.com/foxtrotdev/codex-butler-bell
1•zeetyy404•1m ago•0 comments

Of Course Meta Platforms Is Going to Be a Cloud

https://www.nextplatform.com/cloud/2026/07/01/of-course-meta-platforms-is-going-to-be-a-cloud/526...
1•rbanffy•5m ago•0 comments

Floor plan area micro-eval

https://kerrickstaley.com/2026/07/01/floor-plan-area-micro-eval
1•KerrickStaley•7m ago•0 comments

Who wins the World Cup if *not football* decides?

https://dataguessr.com/world-cup-2026/
1•davidbauer•14m ago•0 comments

Built a cell from scratch for the first time

https://www.cnn.com/2026/07/01/science/synthetic-cell-research
1•vinnyglennon•15m ago•0 comments

Show HN: Get a structured knowledge base instantly from conversations

https://sofie.wiki
1•tapeo•15m ago•0 comments

Turning Roads into Power Plants

https://www.reps.energy/
1•doener•16m ago•0 comments

How much onboarding friction is acceptable in healthcare software?

https://geekyants.com/case-studies/dentify-40-percent-onboarding-time-reduction
3•Krishnaswaroop•16m ago•0 comments

Show HN: I trained a 1B LLM from scratch for $315 and open-sourced weights+data

https://huggingface.co/AIIT-Threshold/Tessera-1B
2•Aiit-threshold•18m ago•0 comments

Show HN: Azure DevOps/GitHub TUI

https://github.com/Elpulgo/azdo/releases/tag/v0.7.1-beta
1•elpulgo•18m ago•0 comments

Context Graphs vs. Vector RAG vs. Raw Context

https://nanonets.com/blog/context-graphs-vs-vector-rag-vs-raw-context/
1•OceanBreez•19m ago•0 comments

Samsung to Charge Users $5 per Month for API Access – Ha Integration Affected

https://old.reddit.com/r/homeassistant/comments/1ug9897/samsung_to_charge_users_5_per_month_for_api/
1•edward•19m ago•0 comments

Wordgard – new rich-text editor by the creator of ProseMirror

https://marijnhaverbeke.nl/blog/wordgard-0.1.html
1•jarek-foksa•21m ago•0 comments

Google: The Court of Justice upholds fine of €4'100'000'000 [pdf]

https://curia.europa.eu/site/upload/docs/application/pdf/2026-07/cp260093en.pdf
1•dude250711•22m ago•0 comments

CloudsLinker: Move and sync files across 50 cloud services

https://app.cloudslinker.com/login
1•janandonly•25m ago•0 comments

Google loses fight over record $4.7B EU antitrust fine

https://www.cnbc.com/2026/07/02/alphabet-google-android-eu-antitrust-fine-4-1-billion-euro-appeal...
6•boshomi•27m ago•0 comments

Mailbox Suite for Individuals and Businesses

https://mailbox.org/en/
1•janandonly•28m ago•0 comments

The Harvard astronomer dubbed Trump's chief alien hunter

https://www.theguardian.com/world/2026/jul/01/trump-alien-hunter-avi-loeb
2•rbanffy•30m ago•0 comments

We Don't Have to Be This Bad at Improving Society

https://kasperjunge.com/blog/we-dont-have-to-be-this-bad-at-improving-society/
15•juunge•35m ago•6 comments

Zero Terminal

https://github.com/gitlawb/zero
1•handfuloflight•37m ago•0 comments

"Shouty"

https://notoneoffbritishisms.com/2026/07/01/shouty/
1•jjgreen•40m ago•0 comments

The First Nuclear Powered Website

https://nuclearwebsite.com/
2•mpweiher•41m ago•1 comments

Uruky – The Paid European Search Engine

https://robheghan.prose.sh/26_06_30_uruky
1•birdculture•42m ago•0 comments

Kim Dotcom Loses Court of Appeal Bid to Block Extradition to the U.S.

https://torrentfreak.com/kim-dotcom-loses-court-of-appeal-bid-to-block-extradition-to-the-u-s/
4•bushwart•42m ago•1 comments

LLM as a Web Server

https://jin.codes/writings/llm-as-a-web-server/
2•jinthagerman•49m ago•2 comments

Build Your First 3D Editor – Create a 3D Space on an Infinite Grid

https://aibodh.com/posts/bevy-tutorial-build-your-first-3d-editor-in-rust/
2•febin•50m ago•0 comments

Serial Dekhne Wala App – Elo TV

https://play.google.com/store/apps/details?id=com.eloelo&hl=en_US
1•Chirag12boss•54m ago•1 comments

Russia buys gasoline from India to tackle shortages

https://www.reuters.com/business/energy/russia-buys-gasoline-india-tackle-shortages-sources-say-2...
5•vrganj•56m ago•1 comments

China tells its ethnic minorities to integrate or face consequences

https://www.cnn.com/2026/07/01/china/china-ethnic-unity-law-intl-hnk
4•breve•56m ago•0 comments

Watch a Steam Controller Skitter Itself to Its Charge Puck

https://hackaday.com/2026/07/01/watch-a-steam-controller-skitter-itself-to-its-charge-puck/
3•StingyJelly•57m ago•2 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.