frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Automating FPGA-Based Network Switches with Protocol Adaptive Customization

https://arxiv.org/abs/2604.21881
1•PaulHoule•1m ago•0 comments

SQLite Code of Ethics

https://sqlite.org/codeofethics.html
2•zdgeier•3m ago•0 comments

Project Wycheproof tests crypto libraries against known attacks

https://github.com/C2SP/wycheproof
1•PaulHoule•7m ago•0 comments

Show HN: AirScore – Daily air-quality emails tailored to household conditions

https://getairscore.com
1•JHARDIMAN•8m ago•1 comments

Show HN: Claude-pee: use Claude -p without the programmatic usage credit pool

https://github.com/sbhattap/claude-pee/tree/main
2•subarnab•11m ago•0 comments

Microbial Dark Matter and the Search for Life on Earth

https://mceglowski.substack.com/p/microbial-dark-matter-and-the-search
1•idlewords•12m ago•0 comments

Mystery Microsoft bug leaker keeps the zero-days coming

https://www.theregister.com/security/2026/05/13/disgruntled-researcher-releases-two-more-microsof...
4•e12e•15m ago•0 comments

Show HN: Grabbit: Search secondhand marketplaces in one place

https://grabbit.app
1•RedMustard•16m ago•0 comments

Short-Term Dietary Intervention Alters Physiological Profiles Relevant to Ageing

https://onlinelibrary.wiley.com/doi/10.1111/acel.70507
3•bookofjoe•19m ago•0 comments

Claude -p headless mode cannot use Max limits, will fall under API plan

4•forgingahead•20m ago•2 comments

Israeli Tech Exposes Users of Musk's Starlink Satellite-Based Internet

https://www.haaretz.com/israel-news/security-aviation/2026-05-12/ty-article-magazine/.premium/sta...
4•bhouston•21m ago•0 comments

Show HN: Abliteration – made-to-order training data for classifiers and evals

https://abliteration.ai/use-cases/synthetic-data
1•thomadev0•21m ago•1 comments

I spent months fighting VS Code webviews, so I built a universal protocol

https://oxp.sh/
1•aldgar•26m ago•0 comments

Scorched Earth 2000 is back

http://www.scorch2000.com/web/
3•meshko•28m ago•1 comments

PSF Welcomes Hudson River Trading (HRT) as a Visionary Sponsor

https://pyfound.blogspot.com/2026/05/psf-welcomes-hudson-river-trading-hrt.html
1•lumpa•29m ago•0 comments

126 Chrome extensions collected WhatsApp data through undisclosed servers

https://malext.io/reports/WaSteal/
1•p_stuart82•30m ago•0 comments

Trump's Disappearing China Hawks

https://www.politico.com/news/2026/05/13/trump-disappearing-china-hawks-00919051
2•petethomas•31m ago•0 comments

Taking Control of the SQLite WAL

https://philipotoole.com/taking-control-of-the-sqlite-wal/
1•otoolep•31m ago•0 comments

What Is Code?

https://martinfowler.com/articles/what-is-code.html
2•nahimn•36m ago•0 comments

Toyota built a $10B private utopia–what's going on in there?

https://arstechnica.com/cars/2026/05/inside-toyotas-10b-private-utopia-big-ideas-few-people-camer...
1•PaulHoule•38m ago•0 comments

Who Trusts Sam Altman?

https://techcrunch.com/2026/05/13/who-trusts-sam-altman/
31•evo_9•38m ago•18 comments

Fame! A Misunderstanding: A new translation of Albert Camus's complete notebooks

https://lareviewofbooks.org/article/albert-camus-complete-notebooks-ryan-bloom-existentialism-abs...
1•Caiero•38m ago•0 comments

Anthropic carves all non-interactive use out of monthly subscriptions

https://venturebeat.com/technology/anthropic-reinstates-openclaw-and-third-party-agent-usage-on-c...
4•larryrubin•39m ago•1 comments

Use whatever brace style you prefer. But not this. Don't do this

https://twitter.com/akramcodez/status/2054099010571645430
1•stalfosknight•39m ago•0 comments

The Other Half of AI Safety

https://personalaisafety.com/p/the-other-half-of-ai-safety
17•sofiaqt•42m ago•8 comments

Proton's password manager passes audit by top security firm – Proton

https://proton.me/business/blog/proton-pass-audit-2026
3•abdelhousni•42m ago•1 comments

Nature's Harmonic Simultaneous 4-Day Time Cube

https://www.timecube.net
2•neko_ranger•44m ago•0 comments

End-to-end encrypted RCS messaging begins rolling out today in beta

https://www.apple.com/newsroom/2026/05/end-to-end-encrypted-rcs-messaging-begins-rolling-out-toda...
3•e12e•55m ago•1 comments

After Hours Line – Never miss another after-hours emergency call

https://afterhoursline.com/
1•joshuamaddux•1h ago•0 comments

Step.parts, 12,000 open source STEP parts

https://www.step.parts
3•softservo•1h ago•1 comments
Open in hackernews

LLM functions in TypeScript: a composable pattern for prompt/LLM/parse/execute

https://medium.com/llm-exe
5•llm-exe•12mo ago

Comments

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