frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PeopleSoft 0-day affecting organizations steals gigabytes of data

https://arstechnica.com/security/2026/06/peoplesoft-0-day-affecting-hundreds-of-organizations-ste...
1•geoffbp•2m ago•0 comments

Track tokens usage and AI Subscriptions across major AI platforms

https://www.tokens4breakfast.app
1•1Kapish•7m ago•1 comments

Software Architecture Guide

https://martinfowler.com/architecture/
2•laxmena•9m ago•0 comments

Show HN: Winamp's Geiss and Milkdrop ported to WebGL

https://milkbar.fm/
2•vlbeta•20m ago•0 comments

OmniCloud is a full-stack cloud drive aggregation platform

https://github.com/dimartarmizi/OmniCloud
1•tonyhart7•24m ago•0 comments

Free SQL→ER diagram tool, runs in the browser, nothing uploaded

https://sqltoerdiagram.com/
2•robhati•33m ago•0 comments

Show HN: I created a simple searchable list of abandoned WordPress Plugins

https://vimsy.io/plugin-graveyard
2•arximughal•34m ago•0 comments

Running Out of Context? No More

https://github.com/shrey1110-dotcom/CLAUDE_API_SAVER
1•otto_api•34m ago•0 comments

AAD-50: multi-cycle NVMe sanitize with per-cycle hardware verification

https://github.com/yonasabeselom/aad50
1•yonasabeselom•45m ago•0 comments

UK announces $1.5B AI infrastructure plan

https://www.reuters.com/world/uk/uk-sets-out-15-billion-ai-hardware-plan-with-supercomputer-chip-...
3•Soumya_Max•52m ago•2 comments

What old technology do you still use regularly?

2•Soumya_Max•54m ago•4 comments

What happens if you click the first link on every Wikipedia article? [video]

https://www.youtube.com/watch?v=dpLG3DpfSlM
1•wilsonhobbs•55m ago•0 comments

Zero-knowledge SAT validation engine

https://ptsf-engine.vercel.app/
1•curio_Pol_curio•1h ago•0 comments

Type Theory Forall #62 – Dependent Haskell – Vladislav Zavialov [video]

https://www.youtube.com/watch?v=COBZZb6Iu2Q
4•matt_d•1h ago•0 comments

Automating my job away

https://austinhenley.com/blog/automatingmyjob.html
2•azhenley•1h ago•0 comments

The Redistribution of Housing Wealth Caused by Rent Control [pdf]

https://www.rhawa.org/file/secure/shs-the-impact-of-rent-control-in-st-paul.pdf
40•luu•1h ago•30 comments

Half-Life able to run on ReactOS

https://xcancel.com/reactos/status/2064839936059011207
3•zdw•1h ago•1 comments

Making Claude a Chemist

https://www.anthropic.com/research/making-claude-a-chemist
5•gmays•1h ago•0 comments

Life Evolved

https://github.com/harrisjerico30-dotcom/G4-construct-
4•jericoharris•1h ago•0 comments

Weave: Merging based on language structure and not lines

https://ataraxy-labs.github.io/weave/
5•rohanat•1h ago•1 comments

Show HN: Tabby – sleeps tabs based on RAM pressure, not fixed timers

https://meettabby.netlify.app/
2•justbuilding•1h ago•0 comments

Show HN: Bastion – isolated Linux VMs for background coding agents

https://bastion.computer/
3•almostlit•1h ago•0 comments

Thirty Years My Open Source Project: The ApeSDK/Noble Ape

https://apesdk.com/
1•barbalet•1h ago•1 comments

The Rise of Housing Nationalism in Canada and Transnational Ownership Patterns

https://open.library.ubc.ca/media/stream/pdf/52383/1.0438798/5
3•luu•1h ago•0 comments

I will put a talking persona on your website

https://www.usegoblin.xyz
2•Obi-•1h ago•3 comments

AUR Malware Attack: Do Not Update [video]

https://www.youtube.com/watch?v=WoxR7fGl4CI
1•kshri24•1h ago•3 comments

Building a serial and VGA "everything console"

http://oldvcr.blogspot.com/2026/06/building-serial-and-vga-everything.html
7•classichasclass•1h ago•0 comments

Quadratic funding democratizes allocation by rewarding projects w/ broad support

https://internetfreedom.torproject.org/funding-distribution/
3•Cider9986•1h ago•0 comments

If your sex life is dead, you can blame Steve Jobs

https://www.theregister.com/personal-tech/2026/06/09/study-links-iphone-rollout-to-decline-in-us-...
6•fallinditch•1h ago•2 comments

Make stolen phones unusable, Met Police urges tech giants

https://www.bbc.com/news/articles/ckg4dey905yo
4•gnabgib•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•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.