frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: RUUN – Tor Browser with a second, non-Tor mode in the same app

https://gitlab.com/varad_7/ruun
1•opentestudox07•33s ago•0 comments

Ask HN: Which is cheaper: ChatGPT tokens or a 2nd Max 20x subscription?

1•yesitcan•1m ago•0 comments

Untangling Lifetimes – Arena Allocators in C

https://www.dgtlgrove.com/p/untangling-lifetimes-the-arena-allocator
1•eliasebner•1m ago•0 comments

Nano Banana 2.5: Faster, Better AI Images

https://nanobanana25ai.net
1•yoxi1•2m ago•0 comments

Fast-CLI: CLI tool written in Zig for testing internet speed

https://github.com/mikkelam/fast-cli
1•hoyd•2m ago•0 comments

Sauna Jungle Expansion

https://www.saunajungle.com/
1•hubears•3m ago•0 comments

GPT-6 Sol and Luna

https://openai.com/index/introducing-gpt-6-sol-and-luna/
51•OfficialTurkey•6m ago•12 comments

Cookie started its life as a plastic bottle

https://www.acs.org/pressroom/presspacs/2026/august/this-cookie-started-its-life-as-a-plastic-bot...
1•dustfinger•7m ago•0 comments

GPT-6 Sol

https://developers.openai.com/api/docs/models/gpt-6-sol
6•sfkgtbor•8m ago•1 comments

Arguing about Arguments

https://steveklabnik.com/writing/arguing-about-arguments/
1•birdculture•8m ago•0 comments

Delaying all JavaScript doesn't make your site faster

https://michalek.blog/blog/delay-all-javascript
1•absolutmachal•8m ago•1 comments

It's Hard to Learn from Machines

https://carlkolon.com/2026/09/22/learning-from-machines/
1•cckolon•12m ago•0 comments

U.S. Climate Collection

https://usclimatecollection.org
2•Tomte•13m ago•0 comments

Prominent art therapist quoted by Vice, Forbes and others is AI-generated

https://pressgazette.co.uk/news/prominent-art-therapist-quoted-by-vice-forbes-and-others-is-ai-ge...
1•ilamont•13m ago•0 comments

Vibe code what prints money

https://buildradar.leapd.ai
2•javeedshah•13m ago•0 comments

OpenCode removed usage transparency after a billing bug was reported

https://github.com/anomalyco/opencode/issues/39822
2•bigprof•14m ago•0 comments

Reviewing Your Blog Post with an LLM

https://writethatblog.substack.com/p/reviewing-your-blog-post-llm
1•cyndunlop•16m ago•0 comments

My Weird New Hobby: Wandering Around Tokyo on Google Maps

https://ahmedhossamdev.com/writing/my-weird-new-hobby-wandering-around-tokyo/
3•ahmedhossamdev•17m ago•0 comments

U.S. Site Blocking Bill Adds VPNs to the List of Blocking Intermediaries

https://torrentfreak.com/u-s-site-blocking-bill-adds-vpns-to-the-list-of-blocking/
3•Cider9986•17m ago•0 comments

PyTauri – Tauri Bindings for Python

https://pytauri.github.io/pytauri/0.8/
1•amai•18m ago•0 comments

How Healthy Are Sardines?

https://www.nytimes.com/2026/09/14/well/eat/sardines-health-benefits-recipes.html
3•mooreds•18m ago•0 comments

Graduating into Disruption: Labor Market Outcomes for AI-Exposed College Majors

https://www.census.gov/library/working-papers/2026/adrm/CES-WP-26-56.html
1•mooreds•19m ago•0 comments

Goolsbee's Remarks at Monetary and Financial Institutions Forum Event [pdf]

https://www.chicagofed.org/-/media/publications/speeches/2026/9-21-26-omfif.pdf?sc_lang=en&hash=9...
2•mooreds•19m ago•0 comments

Porsche CEO assures staff no further job cuts planned, according to memo

https://www.reuters.com/business/world-at-work/porsche-ceo-assures-staff-no-further-job-cuts-plan...
2•frank_clover•20m ago•1 comments

Sentience, create your digital self

https://sentience.com/
2•tomaitagaki•21m ago•1 comments

'We Hacked the FBI:' Hackers Say They Have Data on All FBI Employees

https://www.404media.co/we-hacked-the-fbi-hackers-say-they-have-data-on-all-fbi-employees/
2•spenvo•21m ago•1 comments

AI design tool from GitLab founder

https://pixelcrew.ai/
3•rajivayyangar•22m ago•1 comments

Shopify CEO: employees' 'slop grenades' are making more work for everyone else

https://fortune.com/2026/09/17/shopify-tobias-lutke-ai-slop-grenades/
3•cratermoon•23m ago•0 comments

Encoding transparent videos that work in Safari, Chrome and Firefox

https://ben.terhech.de/posts/2025-02-02-transparent-video-safari.html
1•figbert•24m ago•0 comments

ConferenceRank – conference and journal deadlines for 980 CS venues

https://rabimba.github.io/ConferenceRank/
1•rabimba•25m 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.