frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SOLAR: AI-Powered Speed-of-Light Performance Analysis

https://arxiv.org/abs/2606.26383
1•matt_d•3m ago•0 comments

Taphonomic analysis reveals behavioral & tech capabilities of Homo floresiensis

https://www.science.org/doi/10.1126/sciadv.aeb7219
1•bushwart•5m ago•0 comments

Show HN: Goldseam – heal broken Cypress selectors with a local LLM

https://github.com/adam-s/goldseam
1•dataviz1000•5m ago•0 comments

WSL Keeps Getting Better

https://www.xda-developers.com/wsl-keeps-getting-better-and-its-because-microsoft-is-finally-admi...
1•porridgeraisin•6m ago•1 comments

Show HN: Detecting AI slop with regex and Stephen King

https://github.com/guy-lifshitz/tacheles
1•shtofadhor•6m ago•0 comments

Why High-Earning Families Are Leaving Traditional Schools for AI

https://allk12.com/blog/why-high-earning-families-are-leaving-traditional-schools-for-ai
1•misterinfo•7m ago•0 comments

How Bending Spoons built a $23B tech empire from struggling brands

https://www.ft.com/content/040aac86-f458-400b-a353-7ff2ee5aa34f
1•chuckus•7m ago•1 comments

Dead Man's Switch and USB Kill Switch for Linux, Security Project

https://github.com/qxnode/luks-deadman
1•qxnode•9m ago•0 comments

Neoengineers

https://elijahpotter.dev/articles/neoengineers
1•chilipepperhott•11m ago•0 comments

Show HN: EdgeRunner – run GGUF models with Swift and Metal

https://github.com/christopherkarani/EdgeRunner
1•karc14•11m ago•0 comments

Plastic Free July Is Nonsense

https://bekopcho.substack.com/p/plastic-free-july-is-nonsense
1•clemesha•12m ago•0 comments

Handoff – a verified context bridge between Claude Code sessions

https://github.com/ostikwhy-blip/claude-code-handoff-skill
1•ostik•14m ago•0 comments

The Verification Horizon: No Silver Bullet for Coding Agent Rewards

https://arxiv.org/abs/2606.26300
1•matt_d•15m ago•0 comments

Nutrition Science's Most Preposterous Result

https://www.theatlantic.com/magazine/archive/2023/05/ice-cream-bad-for-you-health-study/673487/
1•paulpauper•15m ago•0 comments

Falling fertility on the left as key driver of US birth decline

https://www.nature.com/articles/s41598-026-57582-3
1•paulpauper•17m ago•0 comments

Is America Moving Left Economically?

https://hereticalinsights.substack.com/p/is-america-moving-left-economically
1•paulpauper•17m ago•1 comments

Show HN: I hated how much my 12-year-old played Roblox, so we built our own FPS

https://cooked.house
2•davitb•18m ago•0 comments

Orchestra Locks Horns with Copyright Cops over Works by Long-Dead Composers

https://www.wsj.com/arts-culture/music/orchestra-locks-horns-with-copyright-cops-over-works-by-lo...
2•impish9208•19m ago•1 comments

Combustion Engine Web-Based Simulator

https://combustionlab.net
1•mytuny•21m ago•0 comments

"These cameras are just like the Eye of Sauron"

https://arxiv.org/abs/2602.09239
3•dijksterhuis•27m ago•0 comments

Mark Zuckerberg tells staff that AI agents haven't progressed enough

https://techcrunch.com/2026/07/02/mark-zuckerberg-tells-staff-that-ai-agents-havent-progressed-as...
8•msolujic•27m ago•5 comments

Rust Service Isn't Leaking – It Could Be the Allocator

https://pranitha.dev/posts/rust-and-memory-allocators/
4•abhirag•28m ago•0 comments

From Socrates to Expert Systems

https://lafavephilosophy.x10host.com/dreyfus.html
1•cratermoon•29m ago•0 comments

ABI vs. API (2004)

https://lists.debian.org/debian-user/2004/02/msg00648.html
2•signa11•29m ago•0 comments

Zero-defects code: the prescient Microsoft memo from 1989

https://digitalseams.com/blog/zero-defects-code-the-prescient-microsoft-memo-from-1989
3•bobbiechen•30m ago•0 comments

Probing the loss-band sparsity assumption in Scientist AI

https://www.lesswrong.com/posts/zJGGZQdtfoNye5ywe/probing-the-loss-band-sparsity-assumption-in-sc...
1•joozio•30m ago•0 comments

The Expert as Tourist

https://lareviewofbooks.org/article/this-land-is-your-land-beverly-gage-history/
1•samclemens•31m ago•0 comments

Sometimes never compete on price (2025)

https://longform.asmartbear.com/never-compete-on-price/
2•mooreds•33m ago•0 comments

DNA Break Repair by Homologous Recombination [video]

https://www.wehi.edu.au/wehi-tv/dna-break-repair-by-homologous-recombination/
3•jwgarber•34m ago•0 comments

Freud's Mind Model Within a Predictive Processing Neuroscientific Paradigm

https://www.mdpi.com/1099-4300/28/3/318
2•bookofjoe•37m 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.