frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Any OSS models as good as GPT-4o-mini?

1•ra0x3•2m ago•0 comments

Mankato Unofficial Website

http://city-mankato.us/
1•limbicsystem•2m ago•0 comments

Why does kinetic energy increase quadratically, not linearly, with speed? (2011)

https://physics.stackexchange.com/questions/535/why-does-kinetic-energy-increase-quadratically-no...
1•ProxyTracer•3m ago•0 comments

I built a tiny free app to track money saved by skipping small purchases

https://skipd.coffee/
1•dariyam•6m ago•0 comments

Show HN: Imap2gmail – A self-contained mass-migrations orchestrator for Gmail

https://github.com/overflowy/imap2gmail
1•overflowy•8m ago•0 comments

Workbench: A TUI for parallel coding agents

https://github.com/erikqu/workbench-cli
2•erikqu•8m ago•1 comments

Assessing GPT-5.6 Sol Against Cybersecurity Benchmarks

https://www.irregular.com/research/assessing-gpt-5.6-sol
1•edanm•10m ago•0 comments

Show HN: Skillmaxxing – make every agent self-evolving

https://github.com/Bennyoooo/skillmaxxing
2•bennyjiang•10m ago•0 comments

AI in Mathematics Is Forcing Big Questions

https://spectrum.ieee.org/ai-in-mathematics
2•rbanffy•10m ago•0 comments

Inference Cards

https://cmart.blog/inference-cards/
1•zdw•11m ago•0 comments

Heavener: What happens when you can't afford EDR licenses

https://blog.otterpwn.com/projects/heavener
1•hexagr•14m ago•0 comments

GeoSpoof vs. Geoceptor – comparing two iOS location spoofing tools

https://geospoof.com/blog/geoceptor-vs-geospoof
1•sgro•17m ago•0 comments

Ask HN: Model access depends on citizenship. What should Non-US founders do?

1•recsv-heredoc•17m ago•0 comments

Structured Primary Keys

https://modern-sql.com/blog/2026-06/structured-primary-keys
1•birdculture•17m ago•0 comments

Tell Zillow: Fee-Simple vs. Leasehold Filter

2•HoldOnAMinute•21m ago•0 comments

How to Make the World's Best Black Shirt [video]

https://www.youtube.com/watch?v=u_BdsucFI9E
1•riknos314•26m ago•0 comments

Show HN: All-in-one memory for AI Agents

https://parcle.ai/second-brain
1•longtermop•26m ago•0 comments

iOS 27 Adds Mac-Like Recovery Mode for iPhone and iPad

https://www.macrumors.com/2026/06/22/ios-27-adds-mac-like-recovery-mode/
1•antfarm•27m ago•0 comments

Show HN: RAG Vector DB Cost Calculator

https://tools.superml.org/calculators/rag-vector-db-cost-calculator
1•bps1418•28m ago•0 comments

Academy Software Foundation Launches New Wayland for Artists Working Group

https://www.aswf.io/blog/academy-software-foundation-launches-new-wayland-for-artists-working-group/
2•agluszak•29m ago•0 comments

I've built an iOS app to spoof location, no PC needed

1•alienshello•35m ago•0 comments

Skill for generating cheatsheet PDF optimized for the reMarkable eink

https://github.com/Deca/remarkable-cheatsheet
1•Decag•36m ago•0 comments

How much compute does the world need?

https://www.ft.com/content/a5475746-510b-4b3f-8039-3fea1fb7c207
1•1vuio0pswjnm7•37m ago•0 comments

US strikes Iran in response to drone strike on commercial ship

https://www.aljazeera.com/news/2026/6/26/us-strikes-iran-in-response-to-drone-strike-on-commercia...
8•thisislife2•37m ago•5 comments

OpenTag: An open-source alternative to Claude in Slack

https://github.com/CopilotKit/OpenTag/
3•davidmckayv•38m ago•0 comments

Anthropic Moves Toward Deal with US to Lift Curbs on AI Models

https://www.bloomberg.com/news/articles/2026-06-26/anthropic-moves-toward-deal-with-us-to-lift-cu...
2•mfiguiere•47m ago•0 comments

The action is off-balance sheet

https://marginpoints.substack.com/p/the-action-is-off-balance-sheet
1•historian1066•49m ago•0 comments

The Long-Term Threat to the Memory Chip Boom Is Innovation

https://www.wsj.com/finance/the-long-term-threat-to-the-memory-chip-boom-is-innovation-bb289488
3•bookofjoe•51m ago•1 comments

The open source DOCX editor submitted to HN a few weeks ago has been deleted

18•gcanyon•52m ago•9 comments

AI audio translator with speech-to-text, LLM translation, and text-to-speech

https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-content-translator-python
2•sona-coffee11•56m 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.