frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Unintentional information disclosure in LaTex Files submitted to arXiv

https://ieeexplore.ieee.org/document/11573440/
1•whym•1m ago•0 comments

Mouse cursor disappears when my refrigerator turns off

https://old.reddit.com/r/archlinux/comments/55pbqp/mouse_cursor_disappears_when_my_refrigerator/
1•polivier•3m ago•0 comments

Advertise in ChatGPT – OpenAI Ads

https://ads.openai.com/
2•hboon•5m ago•0 comments

Life among the garbage mountains of the biggest city

https://www.theguardian.com/world/ng-interactive/2026/jul/13/jakarta-trash-garbage-rubbish-bantar...
1•prawn•6m ago•0 comments

China, Russia and Others Seek to Inflame Debate over A.I. Data Centers

https://www.nytimes.com/2026/07/09/business/china-russia-ai-data-centers.html
2•lxm•7m ago•0 comments

Maps, Smaps and Memory Stats

https://jameshunt.us/writings/smaps/
1•snihalani•9m ago•0 comments

Show HN: Self-hosted voice AI agent for Asterisk/FreePBX

https://github.com/hkjarral/AVA-AI-Voice-Agent-for-Asterisk
1•hkjarral•10m ago•0 comments

Chinese voice actor forced to prove he's human against AI clones

https://www.sixthtone.com/news/1018753/TheChineseVoiceActorForcedtoProveHe’sHuman
1•whiteblossom•12m ago•1 comments

Live2D Body for Hermes Agent

https://github.com/Soundpulse/hermes-live2d
1•totallyscout•15m ago•1 comments

Japanese payment processor's collapse hits banks and restaurants

https://www.japantimes.co.jp/business/2026/07/08/companies/zentoshin-impact-restaurants/
2•mikhael•16m ago•0 comments

Thoughts on AI

https://jackpeplinski.bearblog.dev/thoughts-on-ai/
1•jackpep•18m ago•0 comments

CO2: Language backward compatible with C, with access to the Rust ecosystem

https://github.com/hkalbasi/co2/tree/main
1•Georgelemental•22m ago•0 comments

Six months daily driving Linux

https://interestingstuff.xyz/reviews/six-months-daily-driving-linux/
1•interestingstuf•22m ago•0 comments

Show HN: Baton - Know which of your AI coding agents needs you

https://github.com/neilkpatel/baton
1•nkp007•25m ago•0 comments

Show HN: Web App Uses RTL-SDR to Align HDTV Antenna

https://tunerscope.com/
1•robotastic•27m ago•0 comments

I tried 5 free image-to-ASCII converters so you don't have to

https://image-to-ascii.com/
1•LumisYY•34m ago•0 comments

That Is Load-Bearing

https://old.reddit.com/r/ClaudeAI/comments/1tob6q5/that_is_loadbearing/
1•varun_chopra•35m ago•0 comments

Frank Lloyd Wright's First Home

https://www.architecturaldigest.com/story/frank-lloyd-wright-home-and-studio-everything-you-need-...
1•NaOH•38m ago•0 comments

The cloud begins with coal (2013)

https://www.cepi.org/the-cloud-begins-with-coal-an-overview-of-the-electricity-used-by-the-global...
1•thelastgallon•44m ago•0 comments

What most histories get wrong about MUMPS's first standard

https://github.com/rochus-keller/MUMPS/blob/main/docs/First_MUMPS_Standard_Article.md
1•Rochus•47m ago•0 comments

Self-Improving Agent Systems: A Unified View

https://yigengjiang.github.io/posts/self_improving_agent_systems/
1•ygx•48m ago•0 comments

PC Emulator PCem Makes It to WebAssembly

https://github.com/va3jfl/PCem-WebAssembly
2•JoelLagace•1h ago•0 comments

mRNA vaccine targeting tick proteins induces tick resistance in guinea pigs

https://medicine.yale.edu/news-article/yale-researchers-advance-work-in-diagnosing-and-preventing...
2•DogOfTheGaps•1h ago•0 comments

Pg_re2: 9x faster regular expressions in Postgres

1•saisrirampur•1h ago•1 comments

Australian Consumer advocate calls for mandatory domestic mobile roaming

https://www.abc.net.au/news/2026-07-13/calls-for-mandatory-domestic-mobile-roaming-intensify/1068...
4•ggm•1h ago•0 comments

The Battle of Carrhae (53B.C.E.) [video[

https://www.youtube.com/watch?v=bR7VDPUj5AE
1•JumpCrisscross•1h ago•0 comments

Is It Safe to Eat Pink Pork? Here's What You Need to Know

https://www.southernliving.com/is-it-ok-to-eat-pink-pork-11777418
1•mooreds•1h ago•0 comments

DeployKit: Agent-native deployment tooling for FDEs

https://cephos.substack.com/p/deploykit-agent-native-deployment
3•ism-cep•1h ago•0 comments

Is China's High-Quality Investment Output Economically Viable?

https://carnegieendowment.org/china-financial-markets/2026/04/is-chinas-high-quality-investment-o...
2•mooreds•1h ago•0 comments

Modernizing Property Tax Assessments in Allegheny County

https://www.prohousingpgh.org/blog/new-report-modernizing-property-tax-assessments-in-allegheny-c...
17•mooreds•1h 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.