frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Space JUNK Mysterious 'space balls' that washed up on Australian beach spark pro

https://www.thesun.co.uk/news/39654579/mysterious-space-balls-australian-beach-toxic/
1•bookmtn•1m ago•0 comments

Verbalizable Representations Form a Global Workspace in Language Models

https://transformer-circuits.pub/2026/workspace/index.html
2•yurivish•2m ago•0 comments

Hacking from the Backcountry

https://suthakamal.substack.com/p/hacking-from-the-backcounty
1•suthakamal•3m ago•1 comments

France to Stop Certifying Non-Quantum-Safe Encryption

https://www.schneier.com/blog/archives/2026/07/france-to-stop-certifying-non-quantum-safe-encrypt...
1•enz•3m ago•0 comments

Girls Just Wanna Have Fast MPMC Queues with Bounded Waiting

https://nahla.dev/blog/waitfree_queue/
1•EvgeniyZh•4m ago•0 comments

Price per 1M tokens is meaningless

https://janilowski.pl/en/blog/2026/price-per-m-tokens/
2•janilowski•7m ago•0 comments

Show HN: I Created a CRM System in Obsidian

https://www.scottrlarson.com/blog/article-crm-obsidian/
1•trinsic2•8m ago•0 comments

The Sweet Lesson

https://joshycodes.substack.com/p/the-sweet-lesson
1•vuciv•8m ago•0 comments

Biohacker Bryan Johnson reveals he has incurable disease

https://nypost.com/2026/07/05/health/biohacker-bryan-johnson-reveals-he-has-incurable-disease/
2•doener•10m ago•1 comments

Archaeologists uncover ancient Byzantine city in Egypt's western desert

https://www.theguardian.com/world/2026/jul/04/archaeologists-uncover-ancient-byzantine-city-in-eg...
1•gmays•10m ago•0 comments

Python 3.14 compiled to metal – no interpreter

https://github.com/can1357/pon
2•hamza_q_•10m ago•0 comments

Bing Bong Your Discord Bot Is Pwned

https://rosswheeler.dev/blog/discord-bot-pwn/
1•tossw•12m ago•0 comments

Multiplayer Simulation of F1 Energy Deployment and Recovery

https://override-silverstone-production.up.railway.app/
1•lucaserb•13m ago•0 comments

Baby Busts and Growth Booms: Demographic Change and the Macroeconomy

https://www.nber.org/papers/w35401
1•littlexsparkee•13m ago•0 comments

Gartner saw AI 2017 on the peak of its hype

https://www.researchgate.net/figure/Gartner-Hype-Cycle-2017-11_fig1_322215706
1•doener•15m ago•0 comments

I replaced 10 years of Keyboard Maestro with one Luau script

https://www.rebind.gg/blog/replacing-keyboard-maestro-with-one-rebind-script
1•genesishash•18m ago•0 comments

Redistributing Billions in the Neopets Economy

https://danielmay.co.uk/posts/redistributing-billions-neopets/
1•danielrmay•20m ago•1 comments

Win11 identifier used to track perp after MSFT shared info with FBI

https://www.msn.com/en-us/news/technology/windows-11-identifier-used-to-track-scattered-spider-pe...
2•tarpitt•21m ago•1 comments

I Bought a Sony Walkman

https://82mhz.net/posts/2026/07/i-bought-a-sony-walkman/
2•speckx•21m ago•0 comments

Groundtruth – checks your AI coding agent's claims against the Git diff

https://github.com/akahkhanna/groundtruth
1•erapin_game•21m ago•0 comments

I Need Space

https://whattotelltherobot.com/p/i-need-space
4•stefie10•21m ago•0 comments

We taught a small LLM to throw away 68% of our RAG context

https://www.kapa.ai/blog/how-we-prune-rag-context
2•emil_sorensen•22m ago•0 comments

Microsoft – The latest in our company transformation

https://blogs.microsoft.com/blog/2026/07/06/the-latest-in-our-company-transformation/
1•DemiGuru•24m ago•0 comments

Bad Epoll Flaw Gives Attackers Root Access on Linux and Android

https://securityaffairs.com/194795/hacking/bad-epoll-flaw-gives-attackers-root-access-on-linux-an...
2•curmudgeon22•25m ago•0 comments

Show HN: HN-client – A fast, minimalist Hacker News terminal client in Go

https://github.com/aeon022/hn-client
1•aeon022•28m ago•0 comments

Code Is No Longer a Constraint

https://ldstn.substack.com/p/code-is-no-longer-a-constraint
2•imaginaryunit01•29m ago•0 comments

Roosevelt Pursues the Boat Thieves (2015)

https://www.nps.gov/thro/learn/historyculture/roosevelt-pursues-boat-thieves.htm
1•Tomte•29m ago•0 comments

UVS Nirmana (A Game by Zach Barth)

https://store.steampowered.com/app/2536720/UVS_Nirmana/
2•azhenley•30m ago•0 comments

Show HN: orzma – a terminal emulator that renders webviews inside the terminal

https://github.com/not-elm/orzma
2•notelm•30m ago•0 comments

Show HN: RagPack – Lightweight self-hosted RAG infra for startups

https://github.com/eozsahin1993/ragpack
1•emrecodes•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.