frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OCaml Platform Roadmap (2023)

https://ocaml.org/tools/platform-roadmap
1•Bogdanp•58s ago•0 comments

The Great Friendship Flattening

https://www.theatlantic.com/family/2025/10/social-media-relationships-parasocial/684551/
1•petethomas•1m ago•0 comments

Where's the AI Design Renaissance?

https://www.learnui.design/blog/wheres-the-ai-design-renaissance.html
1•SLHamlet•2m ago•1 comments

Minecraft probably would not add the Creeper today, admits Mojang CEO

https://www.gamesradar.com/games/minecraft/minecraft-devs-probably-would-not-add-the-creeper-to-t...
1•Alupis•6m ago•0 comments

Show HN: The Legal Embedding Benchmark (MLEB)

https://huggingface.co/blog/isaacus/introducing-mleb
6•ubutler•8m ago•0 comments

Show HN: ChatGPT counts outloud to 140 – beat our record

https://www.youtube.com/watch?v=djZVWc1PkIo
4•bra1ndump•13m ago•0 comments

Diamonds Are Whatever

https://www.thefp.com/p/diamonds-are-whatever
1•mhb•15m ago•0 comments

Verizon Cellular Outage

https://www.phonearena.com/news/verizon-has-late-night-outage_id174945
2•nateb2022•15m ago•0 comments

Advanced Explain Mode: deeper, customizable word explanations in Readpoly

https://readpoly.com/blog/advanced-explain-mode
1•ahmetomer•21m ago•0 comments

LLM Pricing Calculator

https://www.llm-prices.com/
2•modinfo•26m ago•1 comments

The Evolution of the Oil Industry (1920)

https://gutenberg.org/cache/epub/77066/pg77066-images.html
1•petethomas•37m ago•0 comments

Open source 3B param model for documents better than Gemini 2.5

https://huggingface.co/nanonets/Nanonets-OCR2-3B
3•PixelPanda•43m ago•1 comments

Show HN: YTVidHub –Bulk YouTube Subtitle Downloader for Research and Data Prep

https://ytvidhub.com/
2•Franklinjobs617•43m ago•0 comments

Skype Retired on May 2025

https://support.microsoft.com/en-us/skype/skype-is-retiring-in-may-2025-what-you-need-to-know-2a7...
2•tumidpandora•46m ago•0 comments

Show HN: Forever Free AI Daily Planner – No Login, Syncs to Calendar

https://www.healup.me/energy-planner
1•neshwa35•46m ago•0 comments

Male 'Jolie gene' can triple aggressive prostate cancer risk

https://www.thetimes.com/uk/healthcare/article/jolie-gene-prostate-cancer-screening-l2z06twpc
1•petethomas•55m ago•0 comments

The AI Coach for Salary Negotiation

https://offercoach.ai/
2•z0s•55m ago•1 comments

Betty White's shoulder bag is a time capsule of World War II

https://americanhistory.si.edu/explore/stories/betty-white-world-war-ii
1•thunderbong•55m ago•0 comments

China Fans Patriotic Sentiment as Trade War with U.S. Heats Up

https://www.nytimes.com/2025/10/16/world/asia/china-nationalism-trade-war.html
3•zerosizedweasle•58m ago•1 comments

Show HN: Playbot – See lyrics and artist details without alt-tabbing

https://github.com/after-ephemera/playbot
1•iamjk•1h ago•0 comments

Did lead limit extinct hominid and Neanderthals?

1•floam•1h ago•2 comments

Free the Internet: The Tor Project's annual fundraiser

https://blog.torproject.org/2025-fundraiser-donations-matched/
62•pabs3•1h ago•4 comments

Bzfs for subsecond ZFS snapshot replication frequency at fleet scale

https://github.com/whoschek/bzfs
2•werwolf•1h ago•0 comments

Nano Banana AI

https://freeaigen.com/nano-banana
1•andylee2014•1h ago•2 comments

Top Codex Coder's Plan.md Template

https://github.com/ninjaa/openai-codex-exec-plan
2•ninjaa•1h ago•1 comments

A father is suing Roblox after his son was allegedly targeted by sex offender [video]

https://www.youtube.com/watch?v=wrk7KBVweGA
4•mgh2•1h ago•0 comments

Salesforce sued by authors over artificial intelligence software

https://www.reuters.com/sustainability/boards-policy-regulation/salesforce-sued-by-authors-over-a...
8•1vuio0pswjnm7•1h ago•0 comments

Show HN: AICrop – AI-powered local image resizer for social media

https://aicrop.app
1•runmix•1h ago•0 comments

Missed Connections and Markov Chains

https://nry.me/posts/2025-07-11/missed-connections-markov-chain/
1•dan-g•1h ago•1 comments

Why Being Delusional is a Superpower (2020) [video]

https://www.youtube.com/watch?v=3LopI4YeC4I
3•paulpauper•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•5mo ago

Comments

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