frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Sillage a 4 MB memory that lets a frozen language>model remember

https://github.com/riscoss63/sillage
1•riscoss•1m ago•0 comments

Suspected CoinDesk Podcast Impersonation Involving TheForms Ventures

https://github.com/FrantzGS/theforms-coindesk-impersonation-report
1•FrantzGS•2m ago•0 comments

Rhine Group

https://www.rhinegroup.eu/
1•bkfh•2m ago•0 comments

Safe Signal Idioms

https://iafisher.com/2026/08/safe-signals
1•gregsadetsky•3m ago•0 comments

Show HN: MiniMax H3 – Turn text and images into AI video clips

https://minimax3.com/
1•littlepp•4m ago•0 comments

DuckDB Table Functions in Java

https://duckdb.org/2026/08/25/table-functions-in-java
2•theanonymousone•4m ago•0 comments

OpenAI Jalapeño

https://openai.com/index/the-full-stack-behind-abundant-intelligence/
2•algoth1•4m ago•1 comments

Perplexity Portable Computer

https://www.perplexity.ai/hub/blog/introducing-portable-computer-for-local-first-ai
2•kristianpaul•7m ago•0 comments

ThinkRail – A Web-Based GUI for Pi Coding Agent

https://thinkrail.ai/blog/introducing-thinkrail/
1•CommanderTvis•10m ago•0 comments

C2PA Cameras Do Not Survive Contact with Reality

https://www.da.vidbuchanan.co.uk/blog/android-c2pa.html
1•Retr0id•11m ago•0 comments

Is Linux the perfect operating system? – Omarchy interview with DHH [video]

https://www.youtube.com/watch?v=_CuibYl_Fh0
1•schnebbau•11m ago•0 comments

OpenAI's Head of Data Centers Has Left the Company

https://www.wsj.com/tech/ai/openais-head-of-data-centers-has-left-company-6d24fd83
4•root-parent•11m ago•0 comments

WorkOS from Agentic Software Development

https://www.theburmese.xyz/
2•dakshjainn•13m ago•0 comments

An Underrated Refactor Saved 90% Memory Usage

https://tanstack.com/blog/tanstack-table-v9-memory-performance
1•theanonymousone•13m ago•0 comments

Show HN: Oynix – Make your coding agent aware of your whole codebase, locally

https://oynix.dev
1•priyammm05•14m ago•1 comments

Designing Loops for Production-Grade Work

https://www.liquid.ai/blog/agent-loops
2•contextweaver•15m ago•0 comments

Using a shock collar to stop myself doomscrolling

https://011.sh/posts/pavlov/
2•mooncakes_ooohh•16m ago•0 comments

Show HN: Open sourcing MonsterWriter, piece by piece

https://www.monsterwriter.com/open-source.html
1•WolfOliver•17m ago•0 comments

Show HN: AI SEO Blog driven by deep competitor intelligence

https://www.rankspot.ai
1•wowinter15•19m ago•0 comments

Multi-agent workflows have an amnesia problem

https://empirical.gauzza.com/blog/multi-agent-amnesia-multi-agent-workflows-amnesia-problem
1•cheeseliz•23m ago•0 comments

A brief history of federal lift ticket regulation

https://zakpodmore.substack.com/p/a-brief-history-of-federal-lift-ticket
1•CGMthrowaway•23m ago•0 comments

Wordfence Argus Finds 6 Step Critical RCE in Avada Theme with 1M Sales

https://www.wordfence.com/blog/2026/08/wordfence-argus-finds-complex-6-step-critical-rce-in-avada...
1•mmaunder•24m ago•0 comments

I Tracked Down the Company Ruining Fruit [video]

https://www.youtube.com/watch?v=nyG-np0S0ZQ
4•akudha•24m ago•0 comments

Local Dictation app that just works cross platform an is dead cheap?

https://chirpgo.app
1•edihasaj•24m ago•0 comments

Serverless Game Servers/Back Ends on Proxylity

https://proxylity.com/articles/serverless-game-server-backend.html
1•mlhpdx•25m ago•0 comments

The Kill Switch for Harmful Genes

https://worksinprogress.co/issue/the-kill-switch-for-harmful-genes/
1•karakoram•26m ago•0 comments

Now Introducing Gemini Enterprise for Legal

https://cloud.google.com/blog/products/ai-machine-learning/introducing-gemini-enterprise-for-legal
4•amir•26m ago•1 comments

On Writing #3

https://thezvi.substack.com/p/on-writing-3
2•paulpauper•28m ago•0 comments

BSDnas – fork that continues TrueNAS CORE on current FreeBSD

https://bsdnas.com/
2•NexRebular•28m ago•0 comments

Show HN: MulmoTerminal – Run many Claude Code sessions, see which needs you

https://github.com/receptron/mulmoterminal
1•isamu138•28m 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.