frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZLUDA – Drop-In Replacement for CUDA on Non-Nvidia GPUs

https://github.com/vosen/ZLUDA
1•peter_d_sherman•38s ago•0 comments

Audemars Piguet Neo Frame Jumping Hour

https://www.audemarspiguet.com/ch/en/watch-collection/neo-frame/15245OR.OO.A206VE.01
1•andsoitis•1m ago•0 comments

War has not halted the Gulf's data-centre boom

https://www.economist.com/business/2026/09/10/war-has-not-halted-the-gulfs-data-centre-boom
1•andsoitis•5m ago•0 comments

Better routing, probe fixes, plugin updates in Freenet/Hyphanet 0.7.5 build 1507

https://www.hyphanet.org/freenet-hyphanet-075-build-1507-fix-probe-routing-plugins-and-upkeep.html
1•ArneBab•6m ago•0 comments

Spectrogram – see your music as a moving 3D landscape

https://github.com/nijatburjiyev/spectral-relief
1•nijatburjiyev•6m ago•0 comments

US Military tests quantum sensors for flight navigation without GPS over Pacific

https://www.heise.de/en/news/US-military-tests-quantum-sensors-for-flight-navigation-without-GPS-...
1•marklit•7m ago•0 comments

Docket – Per-commit evidence records for agent-written code

https://github.com/Dillonsmart/docket
2•dillonsmartdev•12m ago•0 comments

How Modern Fascism Works – End Times Fascism – Naomi Klein and Astra Taylor

https://www.youtube.com/watch?v=aK2nLNiFEAQ
1•abathologist•13m ago•0 comments

The Case for Open-Weight Models and Why We Can't Trust Frontier Labs

https://www.provos.org/p/case-for-open-weight-models/
2•wslh•13m ago•0 comments

SecretGate – Hardened, self-hosted NGL alternative

https://github.com/sasiru-mindaka/Secret-Gate
1•sasiru-mindaka•16m ago•0 comments

Misleading Metaphors and Real Risks

https://aiguide.substack.com/p/misleading-metaphors-and-real-risks
2•lacunary•17m ago•0 comments

What's the smallest agent harness that is still architecturally complete?

https://github.com/earthwalker17/MiniDSH
1•earthwalker17•20m ago•0 comments

AI Tools Accelerates Coding, but Not Overall Software Delivery – GitLab Research

https://www.infoq.com/news/2026/06/ai-coding-outpaces-governance/
2•bucket2015•26m ago•0 comments

Dupster – A fast TUI for finding and removing duplicate files

https://github.com/karimz1/dupster
2•karimz1•26m ago•0 comments

Built a walkable 3D library of 200 public domain books

https://libraryafterdark.space/
3•theaijournalope•28m ago•1 comments

Show HN: MorphMove – a game where pieces change after moving

https://morphmove.com/
2•eropatori•30m ago•0 comments

Install iOS 27 today – there's no reason to wait

https://www.cultofmac.com/news/install-ios-27-today-how-to
3•bookofjoe•30m ago•0 comments

Research Paper: Sex, Politics, and Religion

https://nouswise.com/c/add2545d-a281-46a4-8d5c-3f186b85559b
2•kaven1234•30m ago•0 comments

Blockr – See what your Mac is talking to

https://twoplus11.com/blockr/
2•eustoria•31m ago•0 comments

If You Always Enjoy It, You're Not Pushing It Hard Enough–Benn Stancil

https://www.ssp.sh/blog/benn-stancil-on-deadlines-and-storytelling/
2•theanonymousone•32m ago•0 comments

Unwinding the Great Tech Power Grab

https://rebeccawilliams.info/unwinding-the-great-tech-power-grab/
1•eustoria•32m ago•0 comments

The Human Alliance

https://the-human-alliance.org
3•tcorcos•32m ago•1 comments

Ask HN: What if the step to control AI is to control the internet?

3•sourdecor•32m ago•0 comments

The EU wanted to kill the cookie banner, but then Google called

https://tuta.com/blog/why-eu-member-states-and-google-want-to-keep-cookie-banner
3•eustoria•33m ago•0 comments

Rate Your Agent's Memory

1•luvmakin•33m ago•0 comments

Show HN: USSR Unified Shell Script REPL

https://github.com/notlibrary/USSR
1•notlibrary•33m ago•0 comments

The next-generation framework for embedded applications

https://embassy.dev
1•Bluestein•35m ago•0 comments

Making Startups Powerful

https://www.paulgraham.com/powerful.html
2•aaraujo002•37m ago•0 comments

Show HN: Simpleboot and Easyboot

https://gitlab.com/bztsrc/easyboot
1•skrellm•41m ago•0 comments

Public DNS to evade Cloudflare blocking in Spain

https://github.com/Oihalitz/xdp-dns-evadeproxy
1•akyuu•42m 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.