frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•affixio•7s ago

ST-RS: A suckless-like ST terminal in Rust

https://codeberg.org/ideasman42/st-rs
1•ideasman42•1m ago•1 comments

Owning vs. Renting AI

https://twitter.com/lqiao/status/2066403957824688462
1•bilsbie•1m ago•0 comments

Surf's Up

https://visakanv.substack.com/p/surfs-up
1•herbertl•2m ago•0 comments

Clawdcursor vs. Computer Use

https://clawdcursor.com
1•AmrDabb•3m ago•0 comments

Hundreds of AUR packages compromised

https://lwn.net/Articles/1077718/
1•prakashqwerty•3m ago•0 comments

Websites for Government Contractors

https://www.nasa.gov/organizations/osbp/websites-for-government-contractors/
1•ilreb•4m ago•0 comments

Pyinfra – agentless infrastructure automation, in plain Python

https://pyinfra.com
1•gregnavis•4m ago•0 comments

Deconstructing Datalog

https://www.rntz.net/post/my-thesis.html
1•rbanffy•5m ago•0 comments

E.W.Dijkstra Archive: The notational conventions I adopted, and why (EWD 1300)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD13xx/EWD1300.html
1•tosh•5m ago•0 comments

Show HN: Jk – Pipeline-Native Jenkins CLI

https://github.com/addozhang/jk
1•addozhang•6m ago•0 comments

Drinks breaks are the World Cup's biggest scandal

https://inews.co.uk/sport/football/world-cup-drinks-breaks-scandal-4476132
2•jjgreen•6m ago•1 comments

SpaceX and the Sentient Sun

https://www.a16z.news/p/spacex-and-the-sentient-sun
1•7777777phil•7m ago•0 comments

Show HN: LingoBattle, PVP Language Learning

https://lingobattle.com
1•rahilb•7m ago•0 comments

Removing my Nix flakes vs. guix post

https://coopi.neocities.org/posts/taking-down-nix-flakes-vs-guix
1•birdculture•9m ago•0 comments

SemiAnalysis teardown reveals SMIC's N+3 process matches TSMC's N6 density

https://www.kucoin.com/news/flash/semianalysis-teardown-reveals-smic-n-3-process-matches-tsmc-n6-...
1•_____k•11m ago•0 comments

Perfect universal protections against LLM jailbreaks are impossible [pdf]

https://github.com/brandoncarl/llm-jailbreaking/blob/main/On%20the%20Impossibility%20of%20Perfect...
1•brandoncarl•11m ago•1 comments

Building Time-Series Machine Learning Models with Sktime in Python

https://www.kdnuggets.com/building-time-series-machine-learning-models-with-sktime-in-python
1•eigenBasis•11m ago•0 comments

About KSUT

https://www.ksut.org/about-ksut
2•mooreds•12m ago•0 comments

Stolen fries are spicier than justice: How covert larceny enhances taste

https://www.sciencedirect.com/science/article/abs/pii/S0950329326001126
1•tom2026hn•13m ago•0 comments

Bitlocker Bypass by Nightmare Eclipse

https://git.churchofmalware.org/Nightmare_Eclipse/GreatXML
1•_tk_•13m ago•0 comments

Intent-Driven Delivery

https://blog.tacoda.dev/intent-driven-delivery-3c20e402c1bd
1•tacoda•14m ago•0 comments

Meta Tested Pentagon Contractor's Face Recognition Tech

https://www.techbuzz.ai/articles/meta-secretly-tested-pentagon-contractor-s-face-recognition-tech
1•_____k•15m ago•0 comments

Ask HN: Is Pinboard.in Down/Dead?

2•dotcoma•16m ago•1 comments

Analogy as the Core of Cognition [video]

https://www.youtube.com/watch?v=n8m7lFQ3njk
1•tosh•16m ago•0 comments

Pizza Hut franchisee revives classic dine-in decor decades later

https://www.usatoday.com/story/money/food/2026/05/22/pizza-hut-brings-back-nostalgic-90s-restaura...
1•mooreds•17m ago•0 comments

Extreme temperatures affect medium-term inflation (2021) [pdf]

https://www.ecb.europa.eu/pub/pdf/scpwps/ecb.wp2626~e86e2be2b4.en.pdf
1•simonpure•17m ago•0 comments

Show HN: ThreadPage – Discord Alternative, but Forums

https://threadpage.com
1•jklmnopqrstuvw•18m ago•0 comments

The catalogue of prompt injection attacks

https://archestra.ai/blog/10-basic-prompt-injections
6•ildari•19m ago•2 comments

Leverage Points: Places to Intervene in a System

https://donellameadows.org/archives/leverage-points-places-to-intervene-in-a-system/
1•tosh•19m 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.