frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Models Spent Hours on Hack That Usually Takes Weeks

https://www.bloomberg.com/news/articles/2026-07-23/openai-models-lurked-in-hugging-face-system-fo...
1•sbulaev•1m ago•0 comments

Apache SeaTunnel CDC: How the System Works

https://medium.com/codex/inside-apache-seatunnel-cdc-how-the-system-really-works-f5b224d22a4c
1•SeaTunnel•4m ago•0 comments

Automated Discovery Has No Universally Superior Harness

https://arxiv.org/abs/2607.18235
1•matt_d•6m ago•0 comments

Robotaxi law could ban Tesla in N.J

https://www.nj.com/news/2026/07/robotaxi-law-could-ban-tesla-in-nj.html
1•helsinkiandrew•6m ago•0 comments

The White House Is Trying to Figure Out What to Do About Chinese AI

https://www.wired.com/story/the-white-house-is-trying-to-figure-out-what-to-do-about-chinese-ai/
1•joozio•6m ago•0 comments

Show HN: Ours.network – give your AI agents a direct line to each other

https://ours.network
2•shakhvit•7m ago•0 comments

The world’s first hands-free touchpad

https://www.augmental.tech/
1•dsr12•7m ago•0 comments

RFC 9457 Problem Details for HTTP APIs

https://httpstatuses.net/guides/rfc-9457-problem-details/
1•hboon•8m ago•0 comments

Show HN: Hanesu – An experimental workflow layer for AI coding agents

https://github.com/jezmn/hanesu
1•jezmn•10m ago•0 comments

Weight loss drugs 'linked to hair loss' – study

https://www.rte.ie/news/2026/0723/1584712-health-mounjaro-hair-loss/
1•austinallegro•12m ago•0 comments

I audited Stanford's CS336 and built an LLM from scratch for $353

https://andytimm.github.io/posts/cs336/cs336_review.html
1•kurinikku•13m ago•0 comments

Why Did Christopher Nolan's the Odyssey Divide the Internet?

https://medium.com/theentertainmentbreakdown/why-did-christopher-nolans-the-odyssey-divide-the-in...
1•raynchad•20m ago•0 comments

Wenfeng Liang: Four-Hour Investor Meeting Transcript

https://elsewhere.news/en/elsewhere/wenfeng-liangs-four-hour-investor-meeting-full-transcript
3•mefengl•23m ago•0 comments

Why copper still rules the motherboard trace

https://psyll.com/articles/technology/why-copper-still-rules-the-motherboard-trace
2•lucasfletcher•24m ago•1 comments

Show HN: Agentmux – iOS terminal and workspace built for CLI AI agents

https://agentmux.saxcave.cc/
1•saxlamen•26m ago•0 comments

The U.S. wants to contain China's AI. Silicon Valley keeps using it

https://restofworld.org/2026/china-siliconvalley-ai-moonshot-kimi/
6•devonnull•28m ago•0 comments

Show HN: DocBrain, turns merged PRs and Slack threads into documentation

https://github.com/docbrain-ai/docbrain
2•bhanuhai2•28m ago•0 comments

European Commission: 'Guidance to Google for AI Interoperability'

https://daringfireball.net/2026/07/ec_google_guidance_android_ai_and_search_sharing
1•rgovostes•31m ago•0 comments

Earth-Like LHS 1140B May Feature the First Atmosphere Found on Exoplanet

https://hackaday.com/2026/07/20/earth-like-lhs-1140b-may-feature-the-first-atmosphere-found-on-ex...
1•jamesblonde•37m ago•0 comments

MemoHood and MemoBase – local memory and knowledge base for AI agents

https://github.com/mxskorohood-cmd/memobase
1•maxskorohood•37m ago•0 comments

Four-hour fundraising meeting with DeepSeek founder Liang Wenfeng

https://old.reddit.com/r/DeepSeek/comments/1v41q73/fourhour_fundraising_meeting_with_deepseek/
1•chewz•40m ago•1 comments

Missing required arguments in shell scripts? Use the colon

https://refp.se/articles/your-shell-and-the-magic-colon
1•ingve•44m ago•0 comments

Extreme SIMD: Optimized Collision Detection in Titanfall (2018) [video]

https://www.youtube.com/watch?v=6BIfqfC1i7U
1•xeonmc•46m ago•0 comments

How macOS Summarize Works (Reverse-Engineered with Kimi K3)

https://github.com/fenxer/macos-summarize-internals
1•haxfenx•46m ago•0 comments

Show HN: AI agents that go from naming your startup to running its marketing

https://www.brandbrahma.com/
1•BrandB•47m ago•0 comments

Gerrymandle

https://gerrymandle.com/
1•enjoyyourlife•48m ago•0 comments

AI Is the Ultimate Leaky Abstraction

https://www.jonathanbeard.io/blog/2026/06/20/ai-the-ultimate-leaky-abstraction.html
2•nalinidash•50m ago•0 comments

Review of my Open AI build week feedback please

https://devpost.com/software/grantscout-app
1•OOvsuOO•56m ago•1 comments

I solved 6 open Erdős problems in 5 days, using OpenAI GPT-5.6 Sol

https://twitter.com/Qiaoqiao2001/status/2080003441821163958
4•akalin•59m ago•1 comments

Postgres in Rust: three dead ends before we passed 100% of the regression suite

https://malisper.me/postgres-in-rust-regression-suite/
2•michaelssilver•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.