frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Using large language models for research in the natural sciences

https://github.com/Open-Science-Ledger/how-to-train-your-slop-cannon
1•mathgenius•7m ago•0 comments

Show HN: SharpLineup: fantasy football projections priced from betting markets

https://sharplineup.com
1•autoap•9m ago•0 comments

Israeli ministers keep telling everyone their brutal plans, why are they ignored

https://www.theguardian.com/commentisfree/2026/sep/07/israeli-ministers-brutal-plans-palestinians...
3•hebelehubele•9m ago•1 comments

Making software hurts now

https://notes.erlend.sh/3muwdtclths2d
1•erlend_sh•10m ago•0 comments

Where every AI coding tool keeps its config

https://github.com/moneytool/agentmeld/blob/main/docs/where-ai-coding-tools-keep-their-config.md
1•moneytool•11m ago•0 comments

Stockfish 19

https://stockfishchess.org/blog/2026/stockfish-19/
1•atiedebee•13m ago•0 comments

Benchmarks show scores. Dashboards show usage. What ships?

https://pragmatikos.ai/
1•judsd•13m ago•0 comments

Show HN: LLM Council: survival-of-the-fittest multi-modal deliberation

https://github.com/Moiz-I/council-of-claude
1•moiz-i•14m ago•0 comments

Show HN: Evidence-linked forensic financial investigation

https://exitprotocols.com/
1•cd_mkdir•16m ago•1 comments

Phairplay – AirPlay and Miracast for Android TV

https://github.com/mazer666/PhairPlay
1•theturtletalks•17m ago•0 comments

Do We Still Need Burp Suite for Web Security Testing?

https://medium.com/@Koukyosyumei/do-we-still-need-burp-suite-for-web-security-testing-00f068851d30
1•syumei•19m ago•0 comments

The New US Dollar, the One Epstein Built

https://theleahfiles.substack.com/p/the-new-us-dollar-the-one-epstein
2•xrd•20m ago•0 comments

I'm going Founder Mode on my cancer

https://sijbrandij.substack.com/p/im-going-founder-mode-on-my-cancer
1•tosh•22m ago•0 comments

Mod runs DLSS 5 neural rendering on a second GPU via ReShade, boosts FPS 127%

https://www.tomshardware.com/pc-components/gpus/astonishing-mod-runs-nvidia-dlss-5-on-a-second-gp...
1•sbulaev•23m ago•0 comments

Company does not have processes. It has habits

https://ai.levelbrook.com/playbook/you-do-not-have-processes/
1•entaroadun123•24m ago•0 comments

Show HN: Benzi – Code Intelligence Infrastructure for Frontier AI Models

https://github.com/oooscoos/Benzi
3•tweedler290•24m ago•0 comments

An unofficial Muse Code extension for VS Code

https://marketplace.visualstudio.com/items?itemName=corona10.muse-code-unofficial
1•dongheena•26m ago•0 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
2•tosh•27m ago•0 comments

Reverse Engineering an ASIC

https://kjartanvandriel.github.io/asic/
2•burekqueen•28m ago•0 comments

Oura-bun: Oura client for Bun with automatic OAuth token rotation

https://github.com/jcpsimmons/oura-bun
1•joshcsimmons•29m ago•0 comments

Riding Technology Waves

https://staysaasy.com/strategy/2026/06/22/riding-technology-waves.html
1•fagnerbrack•29m ago•0 comments

UN rights chief calls for international red lines on AI

https://thenextweb.com/news/un-rights-chief-ai-red-lines-existential-risk
1•geox•32m ago•0 comments

Heterodox C++

https://meridional.xyz/blog/heterodox-manifesto
1•rfgplk•33m ago•0 comments

Nördlinger Ries Impact Crater

https://en.wikipedia.org/wiki/Nördlinger_Ries
3•cromulent•34m ago•0 comments

OpenAI and the Wiki Incident

https://thezvi.substack.com/p/openai-and-the-wiki-incident
1•paulpauper•38m ago•0 comments

How to Make More Prodigies

https://unpublishablepapers.substack.com/p/how-to-make-more-prodigies
1•paulpauper•39m ago•0 comments

Bing Wallpaper showing Ad for Harry Potter and Fantastic beasts box set

https://www.thurrott.com/forums/microsoft/windows/thread/bing-wallpaper-showing-ad-for-harry-pott...
23•neogodless•39m ago•12 comments

The Last Thing Teenagers Will Let You Teach Them

https://www.theatlantic.com/family/2026/09/teen-driving-lessons/688534/
1•paulpauper•40m ago•0 comments

How to find out if a website looks vibe coded

https://wasitvibed.com/
2•brambleworks•41m ago•0 comments

DPP-Flash – Automated Digital Product Passports (DPP) for EU Compliance

https://dppflash.de/
1•bergstreiser•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.