frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MPs and Lords call for new law to address AI threat to human rights

https://www.bbc.co.uk/news/articles/cwyzvgj70y4o
1•chrisjj•7m ago•0 comments

OpenArch – PyTorch implementations of modern LLM architectures

https://github.com/anuj0456/OpenArch
2•anuj0456•7m ago•1 comments

Tesla owners to get insurance discount if they use self-driving

https://www.afr.com/companies/transport/tesla-owners-to-get-insurance-discount-if-they-use-self-d...
1•Alien1Being•10m ago•0 comments

1.8x faster than GitHub Actions

https://ogirardot.writizzy.blog/p/rickub-1-8-faster-then-github-actions
1•ssaboum•10m ago•1 comments

Would you like to be a helpful idiot to our AI overlords? [video]

https://www.youtube.com/watch?v=CZB7wlYbknM
1•gilfoyle_7•15m ago•0 comments

An open-source diagram skill for designer

https://github.com/cathrynlavery/diagram-design
1•Nina_antalpha•17m ago•0 comments

Is PDF a Problem for AI?

https://pdf4wcag.com/blog-news/is-pdf-a-problem-for-ai
1•JilBill•24m ago•1 comments

Finding All Solutions to LinkedIn-Queens Puzzle

https://wyounas.github.io/model-checking/puzzles/2026/06/06/finding-all-solutions-to-linkedin-que...
1•simplegeek•27m ago•0 comments

SpaceX sues to block release of tax-break records for its Texas Terafab project

https://www.businessinsider.com/spacex-terafab-tax-break-records-ai-transparency-texas-2026-9
2•snikolaev•27m ago•0 comments

Show HN: 1080p is 920px tall – 1k real browser viewports

https://screensize.net/reports/viewport-stats
3•zenpe•27m ago•0 comments

Language Makes Power Feel Like Common Sense

https://linguistically.substack.com/p/antonio-gramsci-how-language-makes
1•akbarnama•28m ago•0 comments

Australian insurer offers discount to self-driving car owners

https://www.smh.com.au/business/consumer-affairs/humans-make-mistakes-insurer-offers-discount-to-...
2•Alien1Being•29m ago•0 comments

Human bottleneck will not let AI replace any jobs

2•jatindavis05•31m ago•0 comments

Open-source project: Use ChatGPT Web models directly in Codex

https://github.com/miuuyy/codex-chatgpt-web
1•Moon_Y•35m ago•0 comments

Confessions of an Unrepentant Slop Snob

https://charity.wtf/p/confessions-of-an-unrepentant-slop
2•BerislavLopac•37m ago•0 comments

Show HN: Descles, response level LLM message control with HITL approval flows

https://www.descles.com/
1•chiatzen•41m ago•0 comments

If Astra was trained on 100k Blackwell GPUs, what happens with 1M Rubin?

https://twitter.com/JensenHuang/status/2096700264569090384
2•aurareturn•41m ago•1 comments

South Africa's weigh-and-pay shops are tackling 'poverty tax' head on

https://www.theguardian.com/global-development/2026/sep/14/south-africa-weigh-and-pay-shops-food-...
1•ljf•43m ago•0 comments

Three Reasons Europe learned to distrust Big Tech before America did

https://thebulletin.org/premium/2026-09/three-reasons-europe-learned-to-distrust-big-tech-before-...
1•vrganj•44m ago•0 comments

My experience of September 11, 2001, from across the Hudson

https://medium.com/freedomofthought/if-nobody-loved-me-the-city-did-27ad19dbcb8a
2•raynchad•44m ago•0 comments

Ansto nuclear reactor marks 20 years of health and technology innovation

https://www.abc.net.au/news/2026-09-14/ansto-opal-nuclear-reactor-celebrates-20-years/107132928
2•ggm•45m ago•0 comments

Teaching a fruit fly to play chess

https://flychess-hq.vercel.app
1•qsort•45m ago•0 comments

The Cost of Omelas – 10 centuries of total people killed by nation states

https://omelas-dj1.pages.dev
1•epsteingpt•54m ago•1 comments

War over robotaxis in NYC heats up with retracted Waymo report, 'Autokill' novel

https://gothamist.com/news/war-over-robotaxis-in-nyc-heats-up-after-retracted-waymo-report-and-au...
2•tape_measure•55m ago•0 comments

What an ERC-4626 price test shows

https://medium.com/@giladha/what-an-erc-4626-price-test-actually-shows-9fce352c5bde
1•giladha•55m ago•0 comments

Show HN: I made an unlimited TikTok video generator to get views on the internet

https://cloney.app
1•phanahm•56m ago•0 comments

Ask HN: Why are HDMI connectors hard to reach in 2026?

1•final_moss•57m ago•1 comments

No cities on the Moon – there isn't enough water, scientists say

https://www.frontiersin.org/news/2026/09/14/no-cities-on-the-moon-there-isnt-enough-water-frontie...
3•geox•59m ago•0 comments

Another Slice of Swiss Cheese for Untrusted Monitoring

https://www.lesswrong.com/posts/zJWgfsad8o9Y8E9sb/another-slice-of-swiss-cheese-for-untrusted-mon...
2•joozio•1h ago•0 comments

Every tool you need, right in the browser

https://footrue.com/
2•rajeshrajappan•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.