frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Codex subscription in an Electron app and Chromium Browser

https://github.com/chillysbabybackribs/Goldenboy-YouTube-Reddit-Extractor
1•goldenboychrome•20s ago•1 comments

Termshot: Create screenshots based on terminal command output

https://github.com/homeport/termshot
1•sea-gold•2m ago•0 comments

KDE at 30

https://kde.org/anniversaries/30/
1•kristianp•4m ago•0 comments

Letter from van Gogh: "No, [ ], learn how to dance, or fall in love"

https://www.webexhibits.org/vangogh/letter/17/W01.htm
1•jdcampolargo•5m ago•0 comments

KDE Frameworks

https://invent.kde.org/frameworks
1•kristianp•5m ago•0 comments

OpenWarp

https://openwarp.zerx.dev
2•zero-lab•5m ago•0 comments

KV Cache Locality: The Hidden Variable in Your LLM Serving Cost

https://ranvier.systems/2026/04/30/kv-cache-locality-the-hidden-variable-in-your-llm-serving-cost...
1•mindsaspire•7m ago•0 comments

Brain scans reveal 3 ADHD subtypes

https://www.washingtonpost.com/health/2026/04/30/adhd-subtype-extreme-brain-scans/
1•brandonb•12m ago•0 comments

The Hearts of the Super Nintendo

https://fabiensanglard.net/snes_hearts/
3•droppedasbaby•14m ago•0 comments

What Is the Most Common Type of Planet in the Galaxy?

https://www.universetoday.com/articles/what-is-the-most-common-type-of-planet-in-the-galaxy
2•johnbarron•17m ago•0 comments

Samsung warns memory shortage will be worse next year

https://mashable.com/article/samsung-memory-shortage-ram-ai-worse-2027
2•ripe•17m ago•0 comments

Amazon Free Cash Flow drops 95%

https://ir.aboutamazon.com/news-release/news-release-details/2026/Amazon-com-Announces-First-Quar...
3•johnbarron•18m ago•0 comments

When you save money, you buy freedom

https://herbertlui.net/when-you-save-money-you-buy-freedom/
1•littlexsparkee•22m ago•2 comments

Veryl 0.20.0: logic synthesis and type inference are supported

https://veryl-lang.org/blog/announcing-veryl-0-20-0/
1•dalance•22m ago•0 comments

Garmin-health-data – Own your Garmin data analysis

https://github.com/diegoscarabelli/garmin-health-data
3•diegoscara•26m ago•1 comments

Text-to-CAD

https://github.com/earthtojake/text-to-cad
1•softservo•28m ago•0 comments

This photo has no color – how Lippmann Plates work

https://www.youtube.com/watch?v=-DyrBDsKA5s
1•freetime2•29m ago•0 comments

Fraude.Codes

https://fraude.codes/
2•dvdlrg•31m ago•0 comments

A Sum of Errors

https://lyonhe.art/a-sum-of-errors/
2•8organicbits•41m ago•1 comments

Psychology of How Dogs Feel Your Love [video]

https://www.youtube.com/watch?v=JaRB1wEUpIo
2•gmays•44m ago•0 comments

Enabling privacy-preserving AI training on everyday devices

https://news.mit.edu/2026/enabling-privacy-preserving-ai-training-everyday-devices-0429
2•gnabgib•44m ago•0 comments

Newbrew: TUI for discovering recent Homebrew formula additions

https://github.com/matt-riley/newbrew
1•sea-gold•46m ago•0 comments

State of the AI Frontier, April 2026

https://gertlabs.com/blog/state-of-frontier-april-2026
6•gertlabs•46m ago•1 comments

Cardboard Hinge Masterclass [video]

https://www.youtube.com/watch?v=TOm8APHrVas
1•vpribish•47m ago•0 comments

Bringing Fusion onto Claude for Creative Work

https://aps.autodesk.com/blog/bringing-fusion-claude-creative-work
2•nsoonhui•49m ago•0 comments

CVE-2026-31431 (Copy Fail): Linux Kernel LPE

https://securityboulevard.com/2026/04/cve-2026-31431-copy-fail-linux-kernel-lpe/
2•dnemmers•51m ago•1 comments

What is Thundr? Omegle's replacement, warts and all

https://mashable.com/article/what-is-thundr-omegle-replacement-warts-and-all
1•gnabgib•57m ago•0 comments

Agentic Harness Engineering

https://arxiv.org/abs/2604.25850
4•Anon84•59m ago•0 comments

Israeli forces raid Global Sumud Flotilla boats in international waters

https://www.aljazeera.com/news/2026/4/29/israeli-military-speedboats-block-gaza-bound-aid-ship
5•0x54MUR41•1h ago•2 comments

Spite Apps: The Latte Larry's of Apps

https://sxp.studio/blog/spite-apps-the-latte-larrys-of-apps
1•tasoeur•1h 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•11mo ago

Comments

llm-exe•11mo 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•11mo 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.