frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Plans for Agents (and Humans)

https://hive.technology/lab-notes/plans-for-agents/
1•tylermhall•2m ago•0 comments

Australia says it could follow Canada in forging deeper ties with EU

https://www.independent.co.uk/news/world/australasia/canda-eu-membership-australia-us-trade-b3050...
2•doener•3m ago•0 comments

Fossil tooth analysis confirms Tyrannosaurus rex was warm-blooded

https://www.cnn.com/2026/09/16/science/tyrannosaurus-rex-body-temperature-warm-blooded
1•1659447091•3m ago•0 comments

The mascots, design and visual history of Wikipedia

https://www.itsnicethat.com/features/wikipedia-graphic-design-spotlight-150926
1•sohkamyung•4m ago•0 comments

60%+ of Japan firms with foreign workers would struggle without overseas hiring

https://www.japantimes.co.jp/news/2026/09/16/japan/foreign-labor-survey/
1•mikhael•7m ago•0 comments

Show HN: DroidPutter – Run Cardputer Apps on Android via USB OTG

https://github.com/fcavalcantirj/droidputter
1•fcavalcantirj•9m ago•0 comments

Why building a Rust LSP is hard

https://rust-glancer.github.io/blog/why-lsp-is-hard/
2•agluszak•9m ago•0 comments

Some things Veloren does differently

https://blog.jsbarretto.com/post/veloren
1•agluszak•9m ago•0 comments

New Potential Automatic Parallelizer

https://deshi.ch
1•d3shi•13m ago•1 comments

I Put My Startup Esdenera on Hold

https://web.archive.org/web/20210515020855/https://reykfloeter.com/posts/why-i-put-my-startup-esd...
1•lsofzz•15m ago•0 comments

Am I Cited by AI? See which AI assistants are reading your papers

https://www.amicitedby.ai/
1•jmnicholson•19m ago•0 comments

Quantifying Context Rot

https://www.boolean.ai/blog/context-rot-quantified
3•ssatia•20m ago•0 comments

A4list: Two weeks, folded small (A4 paper plan designer)

https://a4list.enzom.dev/
1•emadda•21m ago•1 comments

Signal Enables Phone Number-Less Registration in Beta

https://www.privacyguides.org/news/2026/09/16/signal-enables-phone-number-less-registration-in-beta/
2•Cider9986•21m ago•0 comments

Steve Wozniak launches merch store

https://daringfireball.net/linked/2026/09/16/woz
4•ffin•22m ago•2 comments

VideoRouter – OpenRouter for video and image generation APIs

https://videorouter.sh
1•franklin_yao•25m ago•1 comments

Perhaps I Got Lucky Never Learning Math

https://humanparadox.org/perhaps-i-got-lucky-never-learning-math/
2•colingauvin•25m ago•0 comments

Gentrification signals are a lagging indicator of home prices, not a leading one

https://www.petervijeh.com/projects/zip-forecast
1•p-s-v•26m ago•0 comments

GPS time from ATSC broadcast PoC

https://www.fabian.fyi/2026/09/time-for-atsc-time.html
1•optimiz•30m ago•0 comments

iTerm2 Buddy – iTerm2 Companion App

https://iterm2.com/companion-app.html
1•hmokiguess•30m ago•0 comments

Firefox 156 opens PDFs 45% faster, plus a few annoying bug fixes

https://www.pcworld.com/article/3235795/firefox-156-opens-pdfs-45-percent-faster-plus-a-few-annoy...
2•jnord•33m ago•0 comments

Ribbit: A Small Scheme VM, Compiler and REPL in 4K (2021) [video]

https://www.youtube.com/watch?v=A3r0cYRwrSs
2•so-cal-schemer•34m ago•1 comments

How well did LLMs for Mortals hold up 6 months after publishing

https://crimede-coder.com/blogposts/2026/LLMsForMortalsUpdate
1•apwheele•37m ago•0 comments

One9s – A Bubble Tea TUI for OpenNebula Cluster Management

https://one9s.scszero.com/
2•SergioZ3R0•40m ago•0 comments

Flock cameras are riddled with security vulnerabilities and hardcoded creds

https://micahflee.com/flock-cameras-are-riddled-with-security-vulnerabilities-and-hard-coded-cred...
36•micahflee•40m ago•5 comments

How electric cars took hold in Australia

https://www.nytimes.com/2026/09/15/world/australia/electric-cars-iran-war-gas-australia.html
1•bookofjoe•41m ago•1 comments

waterfall: Induction Proofs in Lean

https://samth.github.io/waterfall/
1•matt_d•43m ago•0 comments

Danish pharma giant Novo to use Anthropic's Claude to advance AI drug discovery

https://www.euronews.com/health/2026/09/16/danish-pharma-giant-novo-to-use-anthropics-claude-to-a...
4•billybuckwheat•44m ago•1 comments

Show HN: Learn Claude Code – Interactive Mindmap

https://mikenikles.com/blog/learn-claude-code
1•mikenikles•46m ago•0 comments

Show HN: Collected every single "What are you working on" project into a website

https://what-are-you-working-on-62u6b.reachpad.app/
2•sakuraiben•47m ago•2 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.