frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is it possible to live without killing?(2024)

https://worldbuilding.stackexchange.com/questions/254210/is-it-possible-to-live-without-killing
1•num42•42s ago•0 comments

A plan for Europe's tech fightback

https://www.economist.com/by-invitation/2026/04/09/a-plan-for-europes-tech-fightback
1•andsoitis•1m ago•0 comments

Book Summary: Learn Python the Hard Way

https://fagnerbrack.com/book-summary-learn-python-the-hard-way-c2da8a30bbe9
1•fagnerbrack•5m ago•0 comments

Meta boots law firm ads seeking clients to sue over alleged FB, IG addiction

https://nypost.com/2026/04/09/business/meta-boots-law-firm-ads-looking-for-clients-to-sue-over-al...
1•1vuio0pswjnm7•6m ago•1 comments

We Only Learn from Error

https://nathanclonts.com/we-only-learn-from-error/
1•kokopelli•9m ago•1 comments

Musk faces fresh opposition after landing permit for Mississippi power plant

https://www.cnbc.com/2026/04/10/musks-xai-draws-more-opposition-over-mississippi-power-plant-perm...
1•1vuio0pswjnm7•13m ago•0 comments

Show HN: HyperFlow – A self-improving agent framework built on LangGraph

2•lablnet•13m ago•0 comments

ESP32-P4 SIMD Explained

https://bitbanksoftware.blogspot.com/2026/04/esp32-p4-simd-explained.html
1•bitbank•16m ago•1 comments

Quien – A better WHOIS lookup tool

https://github.com/retlehs/quien/
3•bretthopper•43m ago•0 comments

The AI-Assisted Breach of Mexico's Government Infrastructure [pdf]

https://cdn.prod.website-files.com/69944dd945f20ca4a27a7c47/69d8bb5aea59e31efb3b8a7f_Tech_Report_...
1•kerng•44m ago•0 comments

How to Land the Space Shuttle from Space (2016) [video]

https://www.youtube.com/watch?v=Jb4prVsXkZU
1•iquatemb•46m ago•0 comments

Show HN: Vibescore – Grade your vibe-coded project A+ to F (one command)

https://github.com/stef41/vibescore
2•zach22•51m ago•0 comments

Show HN: Lmscan – Detect AI text and fingerprint which LLM wrote it (zero deps)

https://github.com/stef41/lmscan
1•zach22•52m ago•0 comments

IBM to pay $17M in anti-DEI settlement

https://www.cnn.com/2026/04/10/business/ibm-settlement-dei-lawsuit
4•empressplay•54m ago•2 comments

The Agents at USV: Arthur, Ellie, Sally, and Friends

https://blog.usv.com/meet-the-agents
2•wslh•56m ago•0 comments

Madadh – deterministic fail-closed control system for protected runtimes

https://madadh.systems
1•MADADAHSYSTEMS•1h ago•0 comments

Artemis II crew splashes down in Pacific Ocean, ending moon fly-by

https://www.theguardian.com/science/2026/apr/10/artemis-ii-landing-return-moon-mission
3•hkhn•1h ago•0 comments

Bring Back Buddy

https://github.com/anthropics/claude-code/issues/45596
1•agiacalone•1h ago•1 comments

SBTI Personality Test – The Funniest Personality Quiz You'll Ever Take

https://sbti.guru/en/
1•luosix•1h ago•0 comments

Enforcing new limits and retiring Opus 4.6 Fast from Copilot Pro+

https://github.blog/changelog/2026-04-10-enforcing-new-limits-and-retiring-opus-4-6-fast-from-cop...
3•ValentineC•1h ago•0 comments

An Agent That Grows with You – Hermes Agent

https://hermesagent.best/
2•luosix•1h ago•0 comments

To Fill Air Traffic Controller Shortage, FAA Turns to Gamers

https://www.nytimes.com/2026/04/10/us/politics/air-traffic-controller-gamer.html
2•bookofjoe•1h ago•1 comments

Is VC the new PMF strategy?

2•networkOne•1h ago•0 comments

AMD GPU LLM Performance Testing

https://github.com/alainnothere/AmdPerformanceTesting
4•xlayn•1h ago•1 comments

Bringing Rust to the Pixel Baseband

https://security.googleblog.com/2026/04/bringing-rust-to-pixel-baseband.html
4•el_duderino•1h ago•0 comments

Jonathan Ive, Designer, Apple – "A computer can be sexy."

https://www.slate.com/articles/technology/top_right/2011/08/jonathan_ive_designer_apple.html
2•goekjclo•1h ago•1 comments

Sam Altman speaks out after alleged attack on SF home,links to rising AI anxiety

https://www.msn.com/en-us/news/crime/sam-altman-speaks-out-after-alleged-attack-on-sf-home-links-...
2•rmason•1h ago•2 comments

Show HN: Palmier – Dispatch and schedule AI agents from your phone

https://www.palmier.me
2•caihongxu•1h ago•0 comments

Latest Episode of Apple's "For All Mankind" Erases Taiwan

https://old.reddit.com/r/taiwan/comments/1sho71p/latest_episode_of_apples_for_all_mankind_erases/
1•GeoPolAlt•1h ago•0 comments

We open sourced KubeezCut, a free browser based editor integrated with Kubeez

https://github.com/MeepCastana/KubeezCut
1•Meeeeeep•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•11mo ago

Comments

llm-exe•11mo 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•11mo 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.