frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The impact of self-affirmation interventions on well-being: A meta-analysis

https://psycnet.apa.org/doiLanding?doi=10.1037%2Famp0001591
1•RickJWagner•1m ago•1 comments

Native Color Lidar

https://www.businesswire.com/news/home/20260504718668/en/Ouster-Releases-The-REV8-OS-Family-The-W...
1•pis7aller•2m ago•0 comments

Agentic RAG Explained in 3 Levels of Difficulty

https://machinelearningmastery.com/agentic-rag-explained-in-3-levels-of-difficulty/
1•eigenBasis•5m ago•0 comments

New Orleans relocation must start now due to sea level

https://www.theguardian.com/us-news/2026/may/04/new-orleans-sea-levels-relocation-climate-crisis
1•vr46•5m ago•1 comments

Adding a feature to a closed-source app

https://www.stavros.io/posts/adding-a-feature-to-a-closed-source-app/
1•stavros•7m ago•0 comments

The New Rule of Writing in the AI Age: Don't Be Too Good

https://aidanking.blog/the-new-rule-of-writing-in-the-ai-age-dont-be-too-good/
1•NiloCK•7m ago•0 comments

Microsoft Defender wrongly flags DigiCert certs as Trojan:Win32/Cerdigent.A dha

https://www.bleepingcomputer.com/news/security/microsoft-defender-wrongly-flags-digicert-certs-as...
2•BitPirate•9m ago•0 comments

Next-generation AI for visually occult pancreatic cancer detection

https://gut.bmj.com/content/early/2026/04/22/gutjnl-2025-337266
1•stefap2•10m ago•0 comments

Show HN: memory.fm – revisit your life through your music listening history

1•shsiddhant•10m ago•0 comments

Amazon opens up its logistics network to other businesses

https://www.reuters.com/business/retail-consumer/amazon-opens-up-its-logistics-network-other-busi...
2•0xedb•12m ago•0 comments

California braces for uncertainty as last tanker of Persian Gulf Oil arrives

https://www.latimes.com/environment/story/2026-05-03/californias-last-oil-shipment
1•OgsyedIE•12m ago•0 comments

Cybersecurity's 2026 Wild Ride

https://pressuretested.substack.com/p/cybersecuritys-2026-wild-ride
1•bgmd•15m ago•1 comments

Asolaria ASI Has Arrived

https://github.com/JesseBrown1980/asolaria-behcs-256
1•jessedaniel•17m ago•1 comments

Roblox Loses 12M Daily Users After Age ID Check Rollout

https://reclaimthenet.org/roblox-loses-12m-daily-users-after-age-id-check-rollout
1•bilsbie•20m ago•0 comments

Senate Advances Guard Act Targeting AI Chatbots and Minors – Let's Data Science

https://letsdatascience.com/news/senate-advances-guard-act-targeting-ai-chatbots-and-minors-4e69679f
1•bilsbie•21m ago•0 comments

'Everyone's a Line on a Spreadsheet:' Inside Oracle's Mass Layoffs

https://time.com/article/2026/04/30/oracle-layoffs-ai-tech-jobs/
1•akyuu•22m ago•0 comments

Computer Science Achievement and Writing Skills Predict Vibe Coding Proficiency

https://dl.acm.org/doi/10.1145/3772318.3791666
1•thomasweiser•24m ago•0 comments

Last Universal Common Ancestor

https://en.wikipedia.org/wiki/Last_universal_common_ancestor
1•thunderbong•24m ago•0 comments

Show HN: Curated, non-slop articles on agentic coding

https://offautopilot.substack.com/about
1•sidkh•26m ago•0 comments

Do AI summaries hurt critical thinking?

https://medium.com/blueprint-for-disaster/ai-summaries-are-a-threat-to-our-cognitive-sovereignty-...
1•xngbuilds•26m ago•0 comments

Oh My OpenAgent

https://ohmyopenagent.com
2•this_was_posted•26m ago•0 comments

How a $1k AWS Bill Made Me Redesign My ECS Architecture

https://jch254.com/blog/lush-aural-treats-aws-cost-redesign/
3•slyall•29m ago•0 comments

Why Almost Everyone Loses–Except a Few Sharks–On Prediction Markets

https://www.wsj.com/finance/investing/polymarket-kalshi-betting-profits-prediction-markets-eb23ac11
3•JumpCrisscross•30m ago•0 comments

R – The Regenerative Dollar

https://paste.to/?cc6dbee108425678#68fgTvqyEAz94wuUX4jkuewbvJBJDf2n5j8T3JqJwpsq
2•ahgaghsbk•31m ago•0 comments

Vaccines were associated with an increased risk of dementia

https://pubmed.ncbi.nlm.nih.gov/36542511/
5•bilsbie•31m ago•2 comments

MatPlotLibNet – server-rendered charting for .NET, built for a trading system

https://github.com/xkqg/MatPlotLibNet
2•RikkieG•33m ago•0 comments

Esoteric Topics in Computer Programming (2002)

http://web.archive.org/web/20020609152409/www.catseye.mb.ca/esoteric/index.html
2•downbad_•34m ago•1 comments

The Quest for Equivalent Exchange – Supporting Exchange in Thunderbird

https://brendan.abolivier.bzh/exchange-pt-1/
2•babolivier•36m ago•0 comments

QuickHeap: A Fast Priority Queue

https://curiouscoding.nl/posts/quickheap/
2•fanf2•38m ago•0 comments

Show HN: Let THINK – Pure ideas from AI, no syco flattery

https://letthink.co
2•adamgonda•39m 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.