frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Built an AI Dating Assistant Because Swiping Is Statistically Inefficient

https://medium.com/@mgcblee/i-built-an-ai-dating-assistant-because-swiping-is-statistically-ineff...
1•am_lee•50s ago•0 comments

LibreOffice dev explains why it cannot display some Microsoft Office charts

https://www.neowin.net/news/libreoffice-developer-explains-why-it-cannot-display-some-microsoft-o...
1•bundie•12m ago•0 comments

Infinite Mac: Snow and a/UX

https://blog.persistent.info/2026/09/infinite-mac-snow-and-aux.html
1•zdw•14m ago•0 comments

Pronouncing Things with Amazon's Polly (2018)

https://cuttlesoft.com/blog/2018/09/13/pronouncing-things-with-amazons-polly/
1•gnyeki•17m ago•0 comments

Mac Screen Recorder – 30 bucks. no subscription

https://toads.io
1•jimmyshoez•23m ago•1 comments

ArtifactBench: Evaluating AI Music Detectors Under Distribution Shift

https://arxiv.org/abs/2609.23550
1•unohee•25m ago•0 comments

I_am_done_with_this_shit

https://www.reddit.com/r/ClaudeAI/comments/1wm5c21/i_am_done_with_this_shit/
2•dkga•29m ago•1 comments

Cunningham's Law

https://meta.wikimedia.org/wiki/Cunningham%27s_Law
1•vismit2000•34m ago•1 comments

Smart Software

https://twitter.com/JAS0Nduncan/status/2101759688769454422
1•pdlabs•34m ago•0 comments

Edit HTML Directly in the Browser

https://github.com/kenxle/live-agentic-html-editor
2•kenxle•35m ago•0 comments

The Rise of A.I. Is Raising Threats from Drones, Police Group Warns

https://www.nytimes.com/2026/09/19/nyregion/artificial-intelligence-drones-police.html
2•lxm•37m ago•1 comments

Show HN: ghfs – A read-only FUSE filesystem that keeps GitHub issues on disk

https://ghfs.dev/
2•ghfs_dev•39m ago•0 comments

What California Is Learning from Solar Panels Built over Irrigation Canals

https://www.kqed.org/science/2002033/heres-what-california-is-learning-from-solar-panels-built-ov...
2•Jtsummers•41m ago•0 comments

The "Windows XP Box" (2003)

https://www.mini-itx.com/projects/windowsxpbox/
1•doubletwoyou•42m ago•0 comments

Why Apple Succeeded in Japan [video]

https://www.youtube.com/watch?v=vkJU1nmI55I
1•mgh2•42m ago•0 comments

The Home Depot

https://www.acquired.fm/episodes/home-depot
2•vismit2000•45m ago•1 comments

Amazon blocks Meta's Muse AI assistant

https://www.geekwire.com/2026/amazon-blocks-metas-muse-ai-assistant-in-new-standoff-over-agentic-...
1•colinprince•47m ago•0 comments

China's AI Realism Is Not Conspiracy

https://www.fredgao.com/p/chinas-ai-realism-is-not-conspiracy
1•xpin•49m ago•0 comments

How we use dopamine to get you to spend less time on your phone

https://getisland.app/blog/fire-with-fire/
2•Intragalactic•52m ago•0 comments

New CA laws let community colleges offer up to 12 bachelor's degrees

https://calmatters.org/education/higher-education/2026/09/new-california-laws-community-college-d...
1•lxm•55m ago•0 comments

Francis Fukuyama: Why I Changed My Mind About AI Risk

https://www.persuasion.community/p/why-i-changed-my-mind-about-ai-risk
2•mellosouls•56m ago•0 comments

Smart Ring Maker Oura, Backers Seek $2.2B in US IPO

https://www.bloomberg.com/news/articles/2026-09-21/smart-ring-maker-oura-backers-seek-2-2-billion...
8•elo2000•57m ago•0 comments

OpenAI president and MAGA Inc. donor to attend Trump-Xi state dinner

https://www.politico.com/news/2026/09/21/openai-maga-donor-trump-xi-dinner-01086456
1•Alien1Being•58m ago•1 comments

Put Tabs Away

https://chromewebstore.google.com/detail/leotabs-—-tab-manager-swi/heolckkdeandgagkiefggcneodni...
2•ringlochid•1h ago•0 comments

Ottawa to build sovereign AI ecosystem for Canadian defence operations

https://www.theglobeandmail.com/business/economy/article-ottawa-building-sovereign-ai-ecosystem-f...
1•Teever•1h ago•0 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
3•pvdebbe•1h ago•0 comments

Turn ad-hoc subagents into durable, accountable AI teams

https://github.com/ringlochid/oh-my-subagents
4•ringlochid•1h ago•0 comments

Cohere and Aleph Alpha sign business combination agreement

https://cohere.com/blog/cohere-and-aleph-alpha-sign-agreement
2•diegocstn•1h ago•1 comments

The Inference Gap

https://twitter.com/Lon/status/2101034933284417614
1•Jimega36•1h ago•1 comments

Ju Ju Tsu

https://arialdo.codeberg.page/ju-ju-tsu/
1•hn92726819•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•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.