frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What is best thing to do if you are gonna rebuilt your website

1•anitroves•13m ago•2 comments

Forcing Fable to Generate Disinformation

https://blog.j11y.io/2026-07-18_Jailbreaking-Fable-disinformation/
1•padolsey•17m ago•0 comments

Pascal Prediction Market

https://blog.usv.com/pascal
1•wslh•23m ago•0 comments

AI Bubble vs. Dot Com Crash. History Is Repeating

https://www.youtube.com/watch?v=zWJ-g5u9Rqs
11•cable2600•25m ago•3 comments

DanFootball

https://danfootball.com
1•declaj•25m ago•1 comments

They Call Her 'The Assassin' on Wall Street–and She Has a New Target

https://www.wsj.com/finance/fahmi-quadir-industry-assassin-3d6ccd82
1•tortilla•25m ago•1 comments

Anthropic's newest ad is creeping people out

https://techcrunch.com/2026/07/14/anthropics-newest-ad-is-creeping-people-out/
2•gnabgib•29m ago•0 comments

Show HN: Tailguard – A tested CVaR-based optimizer for stochastic reshoring

https://github.com/dismissed8582/tailguard
1•dismissed181•37m ago•0 comments

Microsoft's "Digital Escorts" Left DoD Vulnerable to Chinese Hackers

https://www.propublica.org/podcast/microsoft-digital-escorts-china-defense-department
7•jnord•41m ago•1 comments

Popular sugar substitutes linked to faster brain aging

https://www.sciencedaily.com/releases/2026/07/260717033213.htm
10•toomuchtodo•51m ago•1 comments

Harness Engineering

https://github.com/lopopolo/harness-engineering
3•handfuloflight•51m ago•1 comments

Open-Source Communism

https://continuouswritting.substack.com/p/open-source-communism
3•operator_nil•54m ago•0 comments

Codex Resets

https://codex-resets.com/
50•denysvitali•54m ago•37 comments

Why 'admin nights' are the new book club for busy adults

https://www.cnn.com/2026/01/26/health/admin-night-adults-productivity-trend-wellness
2•akman•1h ago•0 comments

European Court Confirms Ethical Veganism Is a Protected Philosophical Belief

https://veganfta.com/articles/2026/07/17/european-court-confirms-ethical-veganism-is-a-protected-...
4•salutis•1h ago•1 comments

Godecompose: Go decompiler that uses pattern matchers

https://github.com/cookiengineer/godecompose
2•cookiengineer•1h ago•1 comments

Prepaid Cellphone Plans – Comparison Site

https://prepaidcompare.net
2•WarOnPrivacy•1h ago•1 comments

CannonSmash Web

https://github.com/jgbrwn/cannonsmash-web
1•indigodaddy•1h ago•0 comments

Show HN: Ilya Sutskever's AI reading list into a learning RPG – using kimi k3

https://ilya-papers-quest.naigap.com/#/
2•praveer13•1h ago•0 comments

A free PTE Core practice platform with instant AI scoring

https://ptecorepractice.com
1•justinzhou01•1h ago•1 comments

Retrotvs – Channel-surf the past now by choosing any of the TV sets

https://70s.myretrotvs.com/
1•modinfo•1h ago•0 comments

On Ethics and Usefulness

https://manuelmoreale.com/thoughts/on-ethics-and-usefulness
2•HotGarbage•1h ago•0 comments

New hybrid positioning system promises reliable tracking where GPS fails

https://www.qmul.ac.uk/news/latest-news/2026/science-and-engineering/se/new-hybrid-positioning-sy...
2•hhs•1h ago•0 comments

Multi-Agent LLMs Fail to Explore Each Other

https://arxiv.org/abs/2607.11250
1•Anon84•1h ago•1 comments

Statistical test helps judge the value of personalization

https://news.stanford.edu/stories/2026/07/statistical-test-personalization-k-fold
2•hhs•1h ago•0 comments

Java was a three-day hotfix away from dying horribly on stage

https://www.theregister.com/devops/2026/07/18/java-was-a-three-day-hotfix-away-from-dying-horribl...
1•jnord•1h ago•0 comments

The headache of hospital pricing

https://lawliberty.org/the-headache-of-hospital-pricing/
2•hhs•1h ago•0 comments

The 3:47 Am Wake‑Up Call That Changed Everything

https://hackenewhome.blogspot.com/p/code-optimise-pour-blogger-suppression.html
1•AllForAll•1h ago•0 comments

Juggling for Blind People

https://www.jugglingforblindpeople.com/
3•pipnonsense•1h ago•0 comments

Even Microsoft couldn't make Windows 11 work well on 8GB of RAM

https://www.theverge.com/tech/966937/microsoft-surface-laptop-13-inch-8gb-ram-2026-review
10•GeekyBear•1h ago•5 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.