HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ilikebits

no profile record

投稿

Show HN: Nudge – Enforcing guardrails for coding agents

github.com
4 ポイント·投稿者 ilikebits·6 か月前·0 コメント

Show HN: Hurry – Fast Rust build caching

hurry.build
11 ポイント·投稿者 ilikebits·7 か月前·4 コメント

コメント

ilikebits
·2 か月前·議論
LOC is useful here not because it's a metric for output but because it's a metric for _understandability_. Reviewing 200 lines is a very different workload than reviewing 2000.
ilikebits
·6 か月前·議論
sccache caches at the per-rustc invocation level, whereas we cache at the package level. In practice, this means we get more cache hits and our cache hits take less overhead to load. You can see the benchmarks in our CI!
ilikebits
·7 か月前·議論
We haven't worked with Dioxus in particular, but the CLI is a project that we benchmark against: https://github.com/attunehq/benchmarks
ilikebits
·9 か月前·議論
Monads are a generalization of Promises. Each type in Monad defines their own `.then` in a different way. For promises, `.then` is defined as "run this function once you have this deferred value from the last promise". For optionals (`Maybe`), `.then` is defined as "run this function if the last optional had an actual value". For Either, `.then` is defined as "run this function if the last Either returned Right, otherwise early-return with the value from Left" (this is functional early-return, basically).