frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The AI industrial revolution: why US faces a historic tech reckoning from China

https://www.scmp.com/tech/article/3358925/great-ai-reckoning-how-china-flipping-script-us-new-ind...
1•outrunner•59s ago•0 comments

If you had to use a email platform what will you look for mainly?

1•mvsingh•1m ago•0 comments

Kling AI nears US$3B round at US$18B valuation: sources

https://www.scmp.com/tech/big-tech/article/3359059/chinas-kling-ai-nears-us3-billion-round-us18-b...
1•merlioncity•2m ago•0 comments

LibreCAD in the Browser

https://magik.net/librecad/
1•devttyeu•2m ago•0 comments

Palantir CEO Alex Karp says 'something has gone wrong' with how AI is sold

https://www.youtube.com/watch?v=0A3sGymV6kY
1•king_zee•2m ago•0 comments

T-Mobile moving tens of thousands of virtual machines off VMware amid lawsuit

https://arstechnica.com/information-technology/2026/07/t-mobile-moving-tens-of-thousands-of-virtu...
1•naturalmovement•6m ago•0 comments

Building an Open-Source Robot Vacuum – Meet Oomwoo

https://makerspet.com/blog/building-an-open-source-robot-vacuum-meet-oomwoo/
2•devicelimit•14m ago•0 comments

Centrosome Cycle

https://en.wikipedia.org/wiki/Centrosome_cycle
1•rolph•17m ago•0 comments

Eddrit – A lightweight alternative front end for Reddit

https://github.com/corenting/eddrit
1•peterus•20m ago•1 comments

Billions of doses later: Global review confirms mRNA vaccines safe and effective

https://news.ubc.ca/2026/06/mrna-vaccines-are-safe-effective-and-full-of-promise/
12•coloneltcb•22m ago•5 comments

I have a theory about AI fake news site The Editorial

https://werd.io/i-have-a-theory-about-ai-fake-news-site-the-editorial/
1•benwerd•28m ago•0 comments

Australia sues Amazon for making allegedly unfair contracts with subscribers

https://www.bbc.com/news/articles/c20yz9rzwy0o
1•firecall•29m ago•0 comments

AOL and Eventbrite owner Bending Spoons soars 40% on Nasdaq debut

https://www.ft.com/content/aebe2dbb-6d8b-4b3d-82c8-e64aebd4ef70
1•petethomas•32m ago•0 comments

Claude Fable 5 was banned for 18 days – what happened

https://freemalta.com/hub/library/claude-fable-5-was-banned-for-18-days-heres-what-actually-happe...
3•ilhaniremyuce•39m ago•1 comments

Useful Outsourcing is Hard (2024)

https://gwern.net/blog/2024/outsourcing
2•dvrp•42m ago•0 comments

Lddey1

https://blog.cloudflare.com/es-es/welcome-to-connectivity-cloud/
1•Eldeysitodxw•50m ago•0 comments

Show HN: Agent Sessions – A model agnostic Claude managed agents alternative

https://www.agentsessions.dev/
2•iacguy•53m ago•1 comments

AMilliSol

http://www.pumpfun.com
1•AMILLI_AI_CORP•54m ago•0 comments

Nearest Pint, Pub Density Map

https://knowwhereconsulting.co.uk/blog/nearest-pint-pub-density-map/
1•ohjeez•54m ago•0 comments

Partial Evaluation

https://en.wikipedia.org/wiki/Partial_evaluation
1•tristenharr•55m ago•0 comments

Loops in Hatetris

https://qntm.org/loops
1•pavel_lishin•55m ago•0 comments

Making Optimization Work When Labels Are Scarce

https://www.gnosyslabs.com:443/case-studies/safety-classifier-sparse-labels
1•imkodying•56m ago•0 comments

GDstudio: A reimagined editor for Godot projects

https://gdstudio.dev/
2•ilreb•57m ago•0 comments

Show HN: I built a photography weather alert system

https://photosignal.app/
1•ameon•1h ago•0 comments

Supabase experiencing platform issues: Existing DB's cant be restarted, created

https://status.supabase.com/incidents/3tx3nnmbwyh9
1•reassess_blind•1h ago•1 comments

Meta Caps Internal AI Token Spending After Costs Approach Billions in 2026

https://mlq.ai/news/meta-caps-internal-ai-token-spending-after-costs-approach-billions-in-2026/
13•typeofhuman•1h ago•3 comments

Basic Email

https://www.columbia.edu/~njn2118/journal/2026/7/1.html
2•njn•1h ago•0 comments

The <Usermedia> HTML Element

https://developer.chrome.com/blog/usermedia-html-element
15•twapi•1h ago•8 comments

Agents Are Aging Too: Agent Lifespan Engineering for Deployed Systems

https://arxiv.org/abs/2605.26302
1•yubblegum•1h ago•0 comments

Layer_shell.dart – Write a Wayland Shell in Flutter

https://github.com/mattkae/layer_shell.dart
1•matthewkosarek•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.