frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Netmnt 0.2.0

https://github.com/thongor77/netmnt
1•magetriste•30s ago•0 comments

What Luxury Housing Does to Homelessness [video]

https://www.youtube.com/watch?v=rQW4W1_SJmc
1•felineflock•8m ago•0 comments

SupererDuperer

https://www.shirtpocket.com/blog/supererduperer
1•zdw•9m ago•0 comments

Cursor removed cost information from the usage page and CSV export

https://forum.cursor.com/t/usage-page-to-token-amount-what/167153
1•EugeneOZ•10m ago•0 comments

Explorative modeling: Train on the best of K guesses

https://alexiglad.github.io/blog/2026/explorative_modeling/
1•DSemba•12m ago•0 comments

The fall and rise of the English country house

https://www.english-heritage.org.uk/visit/inspire-me/the-fall-and-rise-of-the-english-country-house/
1•EndXA•13m ago•0 comments

Anthropic brags that its models committing crimes without being told to do so

https://www.cnbc.com/2026/07/30/anthropic-says-claude-gained-unauthorized-access-to-others-system...
2•zapataband1•13m ago•1 comments

PoE2 devs convinced Nvidia to fix a driver bug by sending it a PC

https://www.pcgamer.com/games/rpg/after-a-year-and-a-half-of-rigorous-testing-path-of-exile-2-dev...
2•exec•13m ago•0 comments

Token Reduction Is Not Cost Reduction

https://arxiv.org/abs/2607.12161
2•umitkaanusta•16m ago•1 comments

How to Stop Procrastinating

https://www.economist.com/science-and-technology/2026/07/31/how-to-stop-procrastinating
1•bookofjoe•18m ago•1 comments

CJEU Judgment on Knowledge of Foreign Copyright Laws and Geoblocking Measures

https://blog.ericgoldman.org/archives/2026/07/cjeu-judgment-on-geoblocking-standards-for-knowledg...
1•hn_acker•19m ago•1 comments

Toast IDE Gets Markdown Spell Checking

https://github.com/paradise-runner/toast
1•dividedcomet•19m ago•0 comments

Ask HN: Any tips for a college freshman enrolled in computer science?

1•NotParth11•20m ago•0 comments

The NUMBER – trusted number infrastructure

https://rounded.lol/
1•thunderbong•21m ago•0 comments

Burn Their Money –> Humans and Freedom

https://github.com/peterlodri-sec/burn-em-bitches-money
1•pocok0xRE•21m ago•0 comments

Not just Neanderthals: Ghost lineage in Africa left its mark on our DNA

https://arstechnica.com/science/2026/07/not-just-neanderthals-ghost-lineage-in-africa-left-its-ma...
1•Brajeshwar•22m ago•0 comments

Playing Original Xbox Game Discs on a PC. Real Backward Compatibility

https://gdox.korze.org/wtf/
2•korze•24m ago•1 comments

Ls-guard: generate and audit Postgres/Supabase RLS from a spec

https://github.com/greyrow/rls-guard
2•greyrow•27m ago•0 comments

Show HN: DSCode – Coding Agent Powered by DeepSeek

https://dscode.ai/
1•qwikhost•28m ago•0 comments

Single-file Ada 83 LLVM compiler

https://github.com/AdaDoom3/Ada83/tree/main
1•roger23•28m ago•3 comments

Fidelity Is Not Safety: Compressed LLMs Pass Quality Guards yet Invent

https://arxiv.org/abs/2607.28196
1•sbulaev•28m ago•0 comments

A few simple tricks for building chatbots with nice UX

https://christopherkrapu.com/blog/2026/simple-things-ai-engineering/
2•ckrapu•31m ago•0 comments

What If We Can Never Trust A.I.?

https://www.newyorker.com/culture/open-questions/what-if-we-can-never-trust-ai
1•replatformradar•31m ago•0 comments

"Bettering Myself" by Ottessa Moshfegh

https://electricliterature.com/bettering-myself-ottessa-moshfegh/
2•js2•32m ago•1 comments

Reaping the Whirlwind – Inside the Potomac River Midair Collision

https://admiralcloudberg.medium.com/reaping-the-whirlwind-inside-the-potomac-river-midair-collisi...
2•sklargh•36m ago•0 comments

Libadwaita: Splitting GTK and Design Language

https://tesk.page/2024/06/03/libadwaita-splitting-gtk-and-design-language/
1•mariuz•38m ago•0 comments

Fuse Programming Language

https://fuselang.org
1•the_unproven•38m ago•0 comments

Archaeologists Find Ancient Glyphs in the Amazon

https://www.nytimes.com/2026/07/31/world/americas/amazon-archaeology-geoglyphs.html
1•wglb•40m ago•1 comments

The Age of Technology Companies

https://shxxxjin.substack.com/p/the-age-of-technology-companies
1•brainer•45m ago•0 comments

docs: Add AI Section to CONTRIBUTING.md

https://github.com/thelounge/thelounge/pull/5130/files
1•MaxLeiter•46m 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.