frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Netstate – US Business Data from Primary Sources

https://netstate.co
1•qitx•1m ago•0 comments

OpenAI announces slowing pace of development after hack by rogue agent

https://www.theguardian.com/technology/2026/aug/18/open-ai-pause-hack
1•pseudolus•3m ago•0 comments

Study Finds Outdated Ideas About Antibiotics Are Common

https://healthcare.utah.edu/newsroom/news/2026/08/always-finish-your-antibiotics-longer-better-ou...
1•gumby•3m ago•0 comments

China's LandSpace beats SpaceX with steel-booster recovery after orbital launch

https://www.scmp.com/news/china/science/article/3364492/chinas-landspace-beats-spacex-steel-boost...
2•decimalenough•5m ago•1 comments

Personetta – One YAML Persona for Cursor, Copilot, Claude, and Cline

https://github.com/EdwardAF-IT/Personetta
1•EdwardAF-IT•12m ago•0 comments

Follow-Up Thoughts on Watermarking Schemes for AI-Generated Text

https://daringfireball.net/2026/08/follow-up_thoughts_on_watermarking
1•pinkmuffinere•13m ago•0 comments

Tiny satellite will use the dark side of the Moon as a shield

https://www.cam.ac.uk/research/news/tiny-satellite-will-use-the-dark-side-of-the-moon-to-eavesdro...
2•NordStreamYacht•14m ago•0 comments

The Economics and Engineering of On-Premises LLMs

https://cacm.acm.org/blogcacm/the-economics-and-engineering-of-on-premises-llms/
1•pseudolus•14m ago•0 comments

Are there space filling curves for the Hilbert Cube? (2010)

https://mathoverflow.net/questions/34982/are-there-space-filling-curves-for-the-hilbert-cube
1•peter_d_sherman•18m ago•0 comments

Calling Python from Matlab

https://www.mathworks.com/campaigns/offers/calling-python-from-matlab-cheat-sheet.html
1•teleforce•19m ago•0 comments

Fideliya Pass: Loyalty Program and More

https://www.fideliyapass.com/
1•zakox•24m ago•0 comments

New paper shows that 37% of workers in US saw real wages decline from 2021-2024 [pdf]

https://bfi.uchicago.edu/wp-content/uploads/2026/08/BFI_WP_2026-108-1.pdf
3•jplusequalt•26m ago•3 comments

What's New with Monitoring in PostgreSQL 19

https://clickhouse.com/blog/postgres-19-monitoring-whats-new
1•saisrirampur•26m ago•0 comments

Bonds Are Getting Hammered, and Wall Street Says the Rout Won't End Anytime Soon

https://www.wsj.com/finance/investing/bonds-are-getting-hammered-and-wall-street-says-the-rout-wo...
1•petethomas•28m ago•0 comments

Scientists stunned by children's lung recovery in ultra low emission zone

https://www.bbc.com/news/articles/c1l1r1zne1ro
2•dabinat•31m ago•0 comments

The Secret Killer of Startups: Low Ambition [video]

https://www.youtube.com/watch?v=ozhRhElbVcI
2•stuartaxelowen•31m ago•0 comments

Trump's Broken Promises, in 11 Charts

https://www.nytimes.com/interactive/2026/08/18/opinion/trump-economy-campaign-promises.html
2•whack•33m ago•0 comments

Rent's Rule

https://en.wikipedia.org/wiki/Rent%27s_rule
3•peter_d_sherman•39m ago•0 comments

The quest to find the best Calvin and Hobbes panel

https://www.polygon.com/best-calvin-and-hobbes-panel-ever/
1•thunderbong•40m ago•0 comments

Kithly – a family social network with no ads and no algorithm

https://kithly.social/
1•jkagidesignsllc•51m ago•0 comments

The Defender's Window

https://openai.com/index/the-defenders-window/
1•nedruod•51m ago•0 comments

Show HN: Search inside podcast episodes and read transcript while listening

https://metapodcast.net
1•lamecoder•51m ago•0 comments

Cerebras CS4

https://www.cerebras.ai/cs4
6•sunils34•51m ago•0 comments

SecIT Bench A frontier benchmark for AI agents in IT and security workflows

https://secitbench.cribl.io/
1•ram_rar•52m ago•0 comments

Testing Claude-designed proteins in the wet lab

https://www.adaptyvbio.com/blog/anthropic-1
1•julian_englert•54m ago•1 comments

Nutritional benefits of sourdoughs: A systematic review (2022)

https://www.sciencedirect.com/science/article/pii/S2161831322013023
2•BiraIgnacio•55m ago•1 comments

Over 170k Nonprofits Lost All Their Data. Is Microsoft to Blame?

https://slate.com/technology/2026/08/microsoft-software-nonprofit-data-delete.html
4•croes•56m ago•1 comments

DFlash 2: Keep Drafting Parallel

https://inco.ai/blog/dflash2/
4•bhavnicksm•59m ago•0 comments

Arizona city sues over fire truck prices

https://www.themesatribune.com/news/mesa-to-sue-over-fire-truck-prices/article_5f8c1543-4f92-4181...
2•ilamont•1h ago•0 comments

Show HN: Monity.ai – Get notified when any website changes

https://apps.apple.com/pl/app/monity-ai/id6761957823
2•kamilmm21•1h 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.