frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NIST RFI for modernizing the NVD in the wake of AI

https://www.federalregister.gov/documents/2026/08/12/2026-16371/request-for-information-rfi-on-mo...
1•MattSayar•1m ago•0 comments

Show HN: /show-me: agent skill for compact visual representations

https://www.humanlayer.com/blog/show-me-skill
1•dhorthy•1m ago•0 comments

Local LLM Hardware Calc

https://dubir.net/tools/local-llm-hardware-calculator/
1•delneg•1m ago•0 comments

QuestDB 10.0

https://questdb.com/blog/questdb-10-release/
1•tosh•2m ago•0 comments

Water Groups Push Washington for Cyber Rules After Hacking Spree

https://www.wsj.com/pro/cybersecurity/water-groups-push-washington-for-cyber-rules-after-hacking-...
1•toomuchtodo•3m ago•1 comments

SpaceXAI: Grok 4.6

https://openrouter.ai/x-ai/grok-4.6
2•theanonymousone•4m ago•0 comments

Samsung with Claude: "Design and verification shortened to 2 days from a month"

https://biz.chosun.com/it-science/ict/2026/08/12/XIEQWWZCDRFH7BJV5Z3DOY2RLQ/
1•TMWNN•6m ago•1 comments

Introducing Grok 4.6

https://cursor.com/blog/grok-4-6
3•stevefan1999•7m ago•0 comments

Hacker News TUI

https://github.com/alin9661/hnx
2•aaronlin098•7m ago•1 comments

Run OpenClaw with Muse Glimmer Locally on Mac

https://holaclaw.ai/docs/tutorials/use-muse-glimmer-with-openclaw
1•angelmm•7m ago•0 comments

How do payments work in the US, China, and Brazil?

https://andrewacomb.substack.com/p/a-tale-of-three-refunds
1•acombandrew•9m ago•0 comments

Apple Caps Bug Bounty Submissions After AI Surge

https://www.pcmag.com/news/apple-limits-bug-bounty-submissions-after-a-barrage-of-ai-entries
3•mempko•9m ago•0 comments

Researchers have successfully used AI to create brand new viruses

https://www.npr.org/2026/08/11/nx-s1-5927074/researchers-have-successfully-used-ai-to-create-bran...
2•Brajeshwar•10m ago•0 comments

Bounded Chaos

https://coldtake.dev/blog/bounded-chaos
1•AlarQ•11m ago•0 comments

Most of your tech debt is free

https://piechowski.io/post/most-of-your-tech-debt-is-free/
1•speckx•12m ago•0 comments

Show HN: GitHub Actions self-hosted runners on Modal Sandboxes

https://github.com/modal-projects/runner-modal
1•botirk•13m ago•1 comments

Show HN: Toposonico, a Music Map and Recommender

https://toposonico.com/#lon=9.9318&lat=-4.6522&z=14.00&entity=track&rowid=8714
1•deppep•17m ago•1 comments

Igalia and Bocoup: Cooperatives Unite

https://www.igalia.com/2026/JoiningForces.html
1•bkardell•18m ago•0 comments

Show HN: Learn to become a Rave Developer for the airline industry

https://olect.github.io/become-rave-developer/
1•olect•18m ago•1 comments

The security program that only works when everyone is at their desk

https://andreafortuna.org/2026/08/12/summer-cybersecurity-stress-test-nis2-dora/
1•speckx•20m ago•0 comments

Show HN: Seisin – a desktop app that turns your job search into analytics

https://getseisin.com
2•LudbaSH•20m ago•0 comments

Sharding a 70B model across 39 Intel laptops

https://github.com/labscommunity/cascadia
3•tatef•21m ago•1 comments

Apache Fory JSON: Fastest Java JSON Serialization, 10x Faster Than Jackson/Gson

https://fory.apache.org/blog/fory_json_fastest_java_json_framework/
1•chaokunyang•21m ago•1 comments

Grok 4.6

https://twitter.com/SpaceXAI/status/2087562800982077492
3•qingcharles•21m ago•1 comments

New Microsoft Defender 'ShieldBreak' zero-day grants SYSTEM privileges

https://www.bleepingcomputer.com/news/security/new-microsoft-defender-shieldbreak-zero-day-grants...
2•Brajeshwar•23m ago•1 comments

Europe's Water

https://riverdata.org/en
2•yread•23m ago•0 comments

Study: Widespread Contaminants, Mislabeling in Personal Care,Cleaning Products

https://pubs.acs.org/ehnea2/article/doi/10.1021/envhealth.6c00181/5252510/Hidden-Hazards-Nontarge...
1•Jimmc414•23m ago•0 comments

Using content-defined chunking to save space on PostgreSQL backups

https://www.plakar.io/posts/2026-07-17/portable-backups-for-managed-postgres-with-pgdump-and-plakar/
1•vcoisne•24m ago•0 comments

Ask HN: What do you think of this new kind of slider puzzle? [full rules, beta]

1•amichail•24m ago•0 comments

Ask HN: How's Everyone Feeling Today?

3•arm32•26m ago•5 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.