frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

California State Government Launches AI Job Loss Tracker as Layoff Fears Grow

https://www.bloomberg.com/news/articles/2026-06-25/california-state-government-launches-ai-job-lo...
1•thm•52s ago•0 comments

New EU rules: military age Ukrainian men to lose refugee visas Jun 27 2027

https://www.reuters.com/world/eu-proposes-extending-ukrainian-protection-2028-limit-men-fighting-...
2•spwa4•6m ago•1 comments

The Naibbe cipher: a cipher that produces Voynich Manuscript-like ciphertext

https://www.tandfonline.com/doi/full/10.1080/01611194.2025.2566408#d1e6668
2•wise_blood•12m ago•0 comments

I created a new open-source project

2•danielsyauqi•13m ago•0 comments

AI 2027 Tracker

https://ai2027-tracker.com/
2•merksittich•22m ago•0 comments

Alan Greenspan Has Died

https://businessdesk.co.nz/article/economy/remembering-alan-greenspan
3•vismit2000•27m ago•0 comments

How much? The hidden costs of restaurant dishes

https://www.theguardian.com/food/2026/jun/26/how-much-the-hidden-costs-of-restaurant-dishes
3•helsinkiandrew•28m ago•0 comments

Midwit Cleanse – midwits wipe themselves off the gene pool

https://demiculus.com/midwit-cleanse/
2•demiculus•29m ago•0 comments

Translating Pandas to Polars using LLMs

https://pola.rs/posts/llm-polars-patterns/
6•jeroenjanssens•32m ago•0 comments

Paris to ban drinking alcohol in public as hospitals hit heatwave breaking point

https://www.theguardian.com/world/2026/jun/26/paris-heatwave-drinking-ban-drinking-alcohol-public
3•teleforce•32m ago•1 comments

Paying for LLM inference by the kilowatt-hour instead of per token

https://www.coinerella.com/energy-based-llm-billing-cut-my-bill-to-a-sixth/
2•willy__•33m ago•0 comments

How your team can save 100's of hours of work

https://www.dcaulfield.com/save-your-team-100s-of-hours
2•cauliflower99•42m ago•0 comments

Google Vids: AI-Powered Video Creator and Editor

https://workspace.google.com/products/vids/
2•tilt•43m ago•0 comments

GuixPkgs: Every Guix package, as a Nix flake

https://fzakaria.com/2026/06/25/guixpkgs-every-guix-package-as-a-nix-flake
2•ingve•45m ago•0 comments

Micron blames Apple and customers for the lack of memory capacity

https://www.wsj.com/tech/apple-raises-prices-on-macs-ipads-by-200-or-more-on-some-models-a7463f99
2•alecco•46m ago•1 comments

Patent-CR: A Dataset for Patent Claim Revision

https://aclanthology.org/2025.naacl-long.116/
1•teleforce•51m ago•0 comments

Building effective pen-testing agents

https://cecuro.ai/blog/building-effective-pen-testing-agents
2•GustavHartz•54m ago•1 comments

The Age of the Solopreneur

https://www.stripeeconomics.com/p/the-age-of-the-solopreneur
2•jv_dh•55m ago•0 comments

CasaOS: An open-source home server OS for Docker apps

https://github.com/IceWhaleTech/CasaOS
2•chandler93•56m ago•0 comments

The Human Agentic Gap

https://zenodo.org/records/20920098
1•tas101•57m ago•0 comments

Show HN: Helios – Business OS for Freelancers

https://www.helios.today/
1•Koran37•1h ago•0 comments

What if plants could talk? (OpenAI YouTube) [video]

https://www.youtube.com/watch?v=q_diWy3xdrw
1•frabcus•1h ago•0 comments

Snap's Evan Spiegel, Miranda Kerr help erase $550M in med debt for Californians

https://www.latimes.com/business/story/2026-06-25/snaps-evan-spiegel-miranda-kerr-help-erase-550-...
2•thunderbong•1h ago•0 comments

Show HN: A Transformer Is All You Need

https://zenodo.org/records/20906443
1•KnoxProtocol•1h ago•0 comments

Chinese cybersecurity company claims it's built a better-than-Mythos bug finder

https://www.theregister.com/security/2026/06/26/chinese-cybersecurity-company-claims-its-built-a-...
2•lukewarm707•1h ago•0 comments

Why software GPS spoofing can't beat Pokémon Go's anti-cheat on iOS 17

https://zenodo.org/records/20917374
2•KKSwift•1h ago•0 comments

Reward hacking is swamping model intelligence gains

https://cursor.com/blog/reward-hacking-coding-benchmarks
1•DR_MING•1h ago•0 comments

Evaluating performance and efficiency of the GitHub Copilot agentic harness

https://github.blog/ai-and-ml/github-copilot/evaluating-performance-and-efficiency-of-the-github-...
1•mariuz•1h ago•0 comments

See who stars a GitHub repo, on a map

https://starmapper.bruniaux.com
1•t3r•1h ago•1 comments

Pandas-ta-classic 0.6.52: SMC liquidity sweep detector, Ichimoku fixes

https://github.com/xgboosted/pandas-ta-classic
1•xgboosted•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.