frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Turn a €5 ESP32-S3 Board into a Browser-Based Workbench for Hardware Hacking

https://www.hackster.io/geo-tp/turn-a-5-esp32-s3-board-into-a-browser-based-workbench-b528dd
1•geotp•43s ago•0 comments

OpenAI to unveil GPT-5.6 on Thursday after delaying launch

https://www.reuters.com/technology/openai-gets-us-approval-broad-gpt-56-rollout-axios-reports-202...
1•adithyaharish•1m ago•0 comments

B2B Payment Platforms for Global Businesses in 2026: A Comparative Guide

https://www.xtransfer.com/blog/b2b-payment-platforms-global-business
1•pingx•2m ago•0 comments

Omp

https://omp.sh/
1•217•2m ago•1 comments

Nextdocs.io – AI Slide Generation

https://www.nextdocs.io
1•galacticdessert•3m ago•0 comments

My Name Is SiMON

https://github.com/ProphetGang/formal_symbol_language
1•ProphetGang•9m ago•1 comments

Vagrant-tart: Vagrant plugin for Tart; run macOS VMs on M-series using Vagrant

https://github.com/letiemble/vagrant-tart
1•gurjeet•14m ago•0 comments

From Quantum Relative Entropy to the Semiclassical Einstein Equations

https://journals.aps.org/prl/pdf/10.1103/lmq8-nsty
1•sonicrocketman•15m ago•0 comments

Notes and reading materials on finite topological spaces

https://math.uchicago.edu/~may/finite
2•gone35•19m ago•0 comments

I built a single endpoint that turns anything into LLM-ready data

https://ingesti.xyz
1•tenesedu•19m ago•0 comments

Boeing 737 cargo plane goes missing off Pakistan coast

https://www.theguardian.com/world/2026/jul/08/boeing-737-cargo-plane-missing-near-karachi
1•tosh•19m ago•0 comments

Fable Advisor

https://github.com/dannymac180/fable-advisor
2•handfuloflight•22m ago•0 comments

Show HN: Relis – Extract Bubble.io app architecture into migration-ready docs

https://relis.dev
2•bubblerme•27m ago•0 comments

Show HN: Codex-profiles – isolated Codex CLI/Desktop profiles

https://ducksss.github.io/codex-profiles/
3•chaipinzheng•27m ago•0 comments

How We Scale PgBouncer

https://clickhouse.com/blog/pgbouncer-clickhouse-managed-postgres
1•samaysharma•34m ago•0 comments

The math that makes senior engineers look like a bad deal

https://blog.grandimam.com/posts/distorted-reality/
1•grandimam•37m ago•0 comments

Meta's Submission Re: State AGs Disgorgement Charts and Supporting Materials [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.cand.419868/gov.uscourts.cand.419868.455.0_1...
1•1vuio0pswjnm7•37m ago•0 comments

Metis by Arm: open-source agentic security harness

https://github.com/arm/metis
1•handfuloflight•41m ago•0 comments

Arthur Clarke in 1940s predicted satellites and the internet of 2000s [video]

https://www.youtube.com/watch?v=D1vQ_cB0f4w
1•simonebrunozzi•42m ago•0 comments

ProductSpec: Open standard for software intent before implementation

https://github.com/gokulrajaram/ProductSpec
1•handfuloflight•45m ago•0 comments

Can We Understand How Large Language Models Reason?

https://cacm.acm.org/news/can-we-understand-how-large-language-models-reason/
2•visha1v•46m ago•0 comments

Show HN: FlareDB – Apache Beam native streaming database for realtime analytics

3•ganeshsivakumar•48m ago•0 comments

The Atari Jaguar Runs Linux

https://hackaday.com/2026/07/07/the-atari-jaguar-runs-linux/
4•methuselah_in•51m ago•0 comments

Shotgun – Opensource Cofounder Framework for Claudecode

https://github.com/Krishnatejavepa/Shotgun
2•krishnatejavepa•58m ago•0 comments

Generative AI might end up being worthless

https://theconversation.com/generative-ai-might-end-up-being-worthless-and-that-could-be-a-good-t...
3•wannabeetle•1h ago•1 comments

The Toyota Prius Is the Best Apocalypse Vehicle (2020)

https://www.roadandtrack.com/car-culture/entertainment/a31820423/the-toyota-prius-is-the-best-apo...
3•TMWNN•1h ago•1 comments

Oregon approves PGE's 29.7% rate hike for data centers under landmark law

https://www.opb.org/article/2026/07/07/oregon-data-center-general-electric-rate-hikes/
3•Exoristos•1h ago•1 comments

Researchers Reveal the Power of 'Quantum Proofs'

https://www.quantamagazine.org/researchers-reveal-the-power-of-quantum-proofs-20260706/
2•anujbans•1h ago•0 comments

Review Board: Between Then and Now

https://chipx86.blog/2024/04/04/review-board-between-then-and-now/
3•ankitg12•1h ago•0 comments

Skill Retriever semantic skill discovery for AI agents via 10K-category taxonomy

https://github.com/ChonSong/skill-retriever
1•chonsong•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.