frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SmolSharp – small standalone C# executables using NativeAOT

https://github.com/ascpixi/smolsharp
1•breve•30s ago•0 comments

DeepSWE Benchmark updated with GLM 5.2 and updated results for other models

https://deepswe.datacurve.ai/
1•theanonymousone•2m ago•0 comments

A controlled hypothermia cure for Lyme disease [video]

https://www.youtube.com/watch?v=jwtPtlcNXEs
1•cromka•3m ago•0 comments

Show HN: Built this tool to solve my marketing content problem

https://www.clickcast.tech/
1•modulusme•3m ago•0 comments

CAD vs. CAD Tournament

https://www.tootalltoby.com/Tournaments/
1•dgellow•10m ago•0 comments

[$29.99 Lifetime → Free – The App Blocker That Makes You

https://old.reddit.com/r/AppHookup/comments/1u8yrff/ios_offkit_2999_lifetime_free_the_app_blocker/
1•nickfthedev•14m ago•0 comments

Ethereum's biggest 'sandwich' bot drained of $7.5M in ironic exploit

https://www.techsentiments.com/article/2026/06/21/ethereums-biggest-sandwich-bot-drained-of-75-mi...
2•rajsuper123•15m ago•0 comments

Can someone try to get my websites admin panel?

https://gag.gg/
1•nottakens•15m ago•1 comments

A neuro-adaptive OS concept for energy efficiency and execution-path attestation

https://github.com/Jtr85/paper-os-neurale
1•JTR85•17m ago•0 comments

Form Before Data: The Real Bottleneck for Physical AI

https://adlrocha.substack.com/p/adlrocha-form-before-data-the-real
1•adlrocha•18m ago•0 comments

Steve Gull's Challenge

https://gill1109.com/2021/01/14/steve-gulls-challenge-an-impossible-monte-carlo-simulation-projec...
2•jruohonen•23m ago•0 comments

Scrutari – forensic statistical analyzer for opaque firmware blobs

https://codeberg.org/xvilka/scrutari
1•xvilka•24m ago•0 comments

The AI Definition of Done: Human in the Loop Is Not a Quality Standard

https://age-of-product.com/ai-definition-of-done/
1•swolpers•27m ago•0 comments

Morale is so bad at Meta even CTO admits: "probably the worst it's ever been"

https://finance.yahoo.com/technology/articles/morale-bad-mark-zuckerbergs-meta-130000803.html
4•theanonymousone•28m ago•0 comments

Nothing's co-founder says CMF can't build a phone 'at a price that makes sense'

https://www.theverge.com/gadgets/953066/nothing-cmf-phone-delayed-ram-prices
2•syx•29m ago•0 comments

Horcrux – Distributed, Zero-Trust Secret Manager

https://github.com/44za12/horcrux
2•44za12•32m ago•1 comments

Pentestr – Automated Web Security Audit

https://pentestr.up.railway.app
1•nikitafaesch•36m ago•0 comments

Fix All the Orphan Pages

https://rectoapp.com/
1•Eikiyo•39m ago•0 comments

Futarchy is insecure without a trusted gatekeeper

https://www.lesswrong.com/posts/oAKsuX5XpPxFSEoHM/futarchy-is-insecure-without-a-trusted-gatekeeper
1•distbit•40m ago•0 comments

I am dreading our LLM-written incident report future

https://surfingcomplexity.blog/2026/06/19/i-am-dreading-our-llm-written-incident-report-future/
2•birdculture•45m ago•0 comments

FreeDom free and open-source minimal web browser – Zero Trust and Zero Knowledge

https://github.com/grisuno/FreeDom
1•grisun0•48m ago•0 comments

The Serpent in the Grove

https://granta.com/the-serpent-in-the-grove/
2•tobr•52m ago•0 comments

The "I don't know, Claude wrote this" pandemic

https://newsletter.manager.dev/p/the-i-don-t-know-claude-wrote-this-pandemic
5•theanonymousone•54m ago•0 comments

Ideas for Startups

https://www.paulgraham.com/ideas.html
1•guiltyf•57m ago•1 comments

Anthropic Faces Questions over AI Export Ban Influence

https://fivetakes.news/did-anthropic-talk-its-way-into-an-ai-export-ban
1•mmeirovich•59m ago•0 comments

Maco – Let your agent rg a filesystem of MCP tools and run them as code

https://github.com/jingkaihe/maco
1•jingkai_he•1h ago•0 comments

Open Ralph Wiggum – Autonomous Agentic Loop

https://github.com/Th0rgal/open-ralph-wiggum
1•tomaskafka•1h ago•0 comments

Agentic Systems Course: Learn AI Agents with an AI Coding Agent

https://github.com/bryanyzhu/agentic-ai-system-course
1•lum1104•1h ago•0 comments

I built a real-time trading platform with an AI; then the clock started lying

https://faridsaid.com/en/blog/event-loop-starvation-trading.html
1•fawraw•1h ago•0 comments

AI Finance Advice Comes with a Warning Label

https://fivetakes.news/using-ai-for-financial-advice-proceed-with-caution
1•mmeirovich•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.