frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Malaysia's Anwar warns any Israelis at Johor tech commune to be deported

https://www.msn.com/en-xl/news/news/malaysia-s-anwar-warns-any-israelis-at-johor-tech-commune-to-...
1•logcode•16s ago•0 comments

Show HN: A bidirectional visual React IDE (live guest playground)

https://studio.crossui.com/app/
1•linb•1m ago•0 comments

Files on Illegal Spying Show CIA Skeletons from Cold War (2007)

https://www.nytimes.com/2007/06/27/washington/27cia.html
1•robtherobber•1m ago•0 comments

Reclaiming a Decade of Podcast Listening History

https://www.uncommonapps.nyc/p/reclaiming-a-decade-of-podcast-listening
1•dabluck•2m ago•0 comments

Show HN: Plarza – A social network for personal websites

https://plarza.com/
2•sidny•3m ago•0 comments

Migrating off Webflow and the worst way to use Claude Code

https://www.sisyphus.bar/blog/migrating-off-webflow
1•itunpredictable•4m ago•0 comments

Show HN: Real-Time Microphone Quality Scoring Using Web Audio API

https://howdousound.com/
1•tdhopper•4m ago•0 comments

Ask HN: As LLMs progress, how do you stay sharp and productive?

1•spiresofagartha•4m ago•0 comments

Confused Deputy: Google IdP Account Takeover via Device Code Flow Hijacking

https://weirdmachine64.github.io/research/google-oauth-device-code-hijacking.html
1•zerodaysbroker•4m ago•0 comments

DNA sequence alignment and Delannoy numbers

https://www.johndcook.com/blog/2026/06/30/dna-sequence-alignment-and-kings/
1•ibobev•5m ago•0 comments

Show HN: Marigold – Get more done with your agent

https://marigold.page
1•fachonrenpure•5m ago•0 comments

Does additional data always reduce posterior variance?

https://www.johndcook.com/blog/2026/07/03/does-additional-data-always-reduce-posterior-variance/
1•ibobev•5m ago•0 comments

Using Local Coding Agents

https://magazine.sebastianraschka.com/p/using-local-coding-agents
1•ibobev•5m ago•0 comments

Warden – a drop-in security proxy for MCP (audit, policy, injection defense)

https://github.com/AlwaysReadyAllies/warden
1•croftadams11•5m ago•0 comments

Redditor makes a cartridge system for their Steam library out of SSDs

https://old.reddit.com/r/pcmasterrace/comments/1ux13ui/steam_game_cartridges/
1•HelloUsername•7m ago•0 comments

I Built an LLM from Scratch [video]

https://www.youtube.com/watch?v=YmLp8qe87A0
1•itsjzt•7m ago•0 comments

Show HN: I've built a words game based on binary search

https://hilogame.cc/
1•ludovicianul•8m ago•0 comments

Google DeepMind and Isomorphic Labs approach to bioresilience [pdf]

https://storage.googleapis.com/deepmind-media/DeepMind.com/Blog/our-approach-to-bioresilience/iso...
1•ilreb•8m ago•0 comments

An Infinitely Large Napkin [pdf]

https://venhance.github.io/napkin/Napkin.pdf
1•Eridanus2•9m ago•0 comments

StepFun Unveils StepX Neo, the "First Agentic AI Phone"

https://www.etvbharat.com/en/technology/stepfun-unveils-stepx-neo-calling-it-worlds-first-agentic...
1•AlanAzarkin•9m ago•0 comments

Google required to open up to AI, search engine rivals under EU-mandated changes

https://www.reuters.com/world/google-required-open-up-ai-search-engine-rivals-under-eu-mandated-c...
2•atwrk•10m ago•0 comments

Google Ordered to Give A.I. Rivals More Access on Android Smartphones

https://www.nytimes.com/2026/07/16/technology/google-ordered-to-give-ai-rivals-more-access-on-and...
1•donohoe•10m ago•0 comments

Generative AI Is an Engineering Disaster

https://www.theatlantic.com/technology/2026/07/generative-ai-engineering-disaster/687901/
2•latexr•11m ago•1 comments

Brain Economy Will Come Next After the Internet Economy

https://paragraph.com/@lisaakselrod/my-thesis-about-the-future-tl%3Bdr-this-is-the-end
1•sthwnd•13m ago•0 comments

FBI Considers Using AI Tech to Review Signatures on Seized Mail-In Ballots

https://www.propublica.org/article/trump-2020-election-georgia-fulton-artificial-intelligence-fbi
2•hn_acker•13m ago•1 comments

PostgreSQL 19 Beta 2 Released

https://www.postgresql.org/about/news/postgresql-19-beta-2-released-3350/
2•pella•15m ago•1 comments

Tesseract Core: Universal components for differentiable scientific computing

https://github.com/pasteurlabs/tesseract-core
1•dionhaefner•15m ago•0 comments

Why the hardest part of proactive agents isn't finding problems

https://www.serval.com/serval-news/raising-the-automation-ceiling
1•emot•16m ago•0 comments

Claude can now securely use your Passwords with 1Password

https://www.wsj.com/tech/ai/1password-for-claude-ai-agents-password-manager-111a7a8a
1•flxfxp•16m ago•0 comments

Microsoft's July 2026 Patch Tuesday fixes 622 CVEs, 2 exploited zero-days

https://orca.security/resources/blog/microsoft-july-2026-patch-tuesday-sharepoint-zero-day/
1•nyku•18m 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.