frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We need an accounting system for cognitive debt

https://raw.githubusercontent.com/MikaeI/cognizance/refs/heads/main/we_need_an_accounting_system_...
1•theanonymousone•1m ago•0 comments

Say No to Online Age Verification

https://reclaimthenet.org/age-verification
1•bilsbie•1m ago•0 comments

Relationships make us happy – and healthy

https://news.harvard.edu/gazette/story/2023/02/work-out-daily-ok-but-how-socially-fit-are-you/
1•Anon84•2m ago•0 comments

Show HN: A tool to help people in social situations

https://spotthecue.com/
1•scamdrill•8m ago•0 comments

Show HN: Quick anonymous text and file sharing over the internet

https://9.1-1-1.de
1•y42•8m ago•0 comments

Build You Own Model

https://runinfra.ai
1•OsamaJaber•11m ago•0 comments

Interactive: Resource for Theories of Consciousness

https://loc.closertotruth.com/interactive
1•weatherlight•13m ago•0 comments

Show HN: Brume – Postgres pseudonymization that preserves FKs across tables

https://brumeorg.github.io/
1•Calgaryp•17m ago•0 comments

AI-powered car rental automation and fleet management software platform.

https://airentosoft.com
1•John_David•20m ago•0 comments

Social Media Recalibrates How the Brain Values Mental Effort

https://neurosciencenews.com/effort-recalibration-digital-media-cognition-30985/
1•w23j•20m ago•0 comments

Gun Mistakes in Fiction Writing: Handgun Edition

https://www.swiftsilentdeadly.com/blog/gun-mistakes-in-fiction-writing-handgun-edition
10•bushwart•28m ago•3 comments

Neural stem cells as potential mediators of epigenetic prenatal stress

https://www.cell.com/stem-cell-reports/fulltext/S2213-6711(26)00207-9?_returnURL=https%3A%2F%2Fli...
1•bookofjoe•29m ago•0 comments

"Existential threat" to optical astronomy: warning about satellite plans

https://www.heise.de/en/news/Existential-threat-to-optical-astronomy-warning-about-satellite-plan...
1•johnbarron•31m ago•0 comments

NASA launches robot to save Swift telescope falling to Earth

https://www.bbc.co.uk/news/articles/c0ry4xx7rk8o
2•ColinWright•35m ago•3 comments

Show HN: Turn boring flat screenshots into angled tilt-shift images

https://www.screenstab.com/
1•mikaelaast•37m ago•0 comments

The UK's generational tobacco ban might not work. I'm supporting it anyway

https://www.technologyreview.com/2026/07/03/1140036/uk-tobacco-ban-might-not-work-children-smoking/
1•joozio•38m ago•2 comments

Ed Zitron on CNBC: GenAI Doesn't Work, and Big Tech Is Out of Hypergrowth Ideas

https://www.youtube.com/watch?v=TtmPccUTDP8
9•johnbarron•39m ago•2 comments

Landscape Grid: Consciousness Categories and Theories

https://loc.closertotruth.com/consciousness-theories
3•weatherlight•41m ago•0 comments

CalyxOS Is Back

https://calyxos.org/news/2026/07/01/calyxos-official-release-is-back/
1•keithoffer•42m ago•1 comments

Show HN: mtg-crucible, an NPM package to render custom Magic the Gathering cards

https://www.npmjs.com/package/mtg-crucible
2•CarlsJrMints•42m ago•1 comments

Bending Spoons just went public: Italy won the World Cup

https://www.theliquidfactory.com/news-detail/bending-spoons-just-went-public:-we-won-the-world-cup
3•ReDeiPirati•44m ago•0 comments

How the great wealth transfer is rattling Wall Street

https://www.ft.com/content/c914cbf5-4ede-4342-a4ac-9f1289c47dc9
3•bushwart•44m ago•1 comments

Ds.css: A CSS framework recreating the DS / DS Lite's UI

https://github.com/spiritov/ds.css
2•birdculture•48m ago•0 comments

Show HN: I make a human-edited, AI-assisted retro magazine reviewing YouTube

https://ctrl-watch.xyz/
1•deimos459•49m ago•0 comments

Show HN: MothRAG - Graph-free multi-hop RAG without the rebuild bill

https://github.com/juliangeymonat-jpg/mothrag
3•NYCHMPAI•50m ago•0 comments

Stock market boom runs on a 'large deficit model'

https://www.reuters.com/commentary/breakingviews/stock-market-boom-runs-large-deficit-model-2026-...
1•latentframe•50m ago•0 comments

Zero Blind Spots for Linux: Sovereign Automation Meets Identity Security

https://orcharhino.com/en/resources/event/webinars/sovereign-linux-zero-blind-spots/
1•LinuxGuard•50m ago•0 comments

Quantum Systems lands a €1B round, IQM becomes Europe’s first public quantum…

https://scalingeurope.substack.com/p/scaling-europe-daily-37
1•rbanffy•53m ago•0 comments

Internet latency in Venezuela is still higher after the earthquake

https://twitter.com/emot/status/2072992770789138529
1•emot•54m ago•0 comments

Show HN: Lips Up – Preview lip filler on your own face

https://lipsup.app/
1•debeast•55m ago•1 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.