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

Lethalman

no profile record

投稿

As a community we need to understand that MCP is not needed

3 ポイント·投稿者 Lethalman·2 か月前·3 コメント

Ask HN: How is everyone dealing with the increase of code reviews?

3 ポイント·投稿者 Lethalman·3 か月前·0 コメント

コメント

Lethalman
·19 日前·議論
https://xkcd.com/927/
Lethalman
·29 日前·議論
It was also incredibly difficult. As a kid I couldn’t go beyond the first level. It was also difficult to attack the enemy at the right time.

But still it was an amazing experience whenever I played it. I felt the pressure and the need to start again like no other game nowadays.

But maybe that’s just because I was a kid.
Lethalman
·先月·議論
“Written in X”. Every time I look elsewhere when I see it. When is people starting to think about features instead of “it’s better because I rewrote it in X!!”
Lethalman
·2 か月前·議論
A web fetch is not much different than asking an MCP for its tools, right?
Lethalman
·3 か月前·議論
Wish it wasn’t rust… it’s so hard to read.
Lethalman
·7 か月前·議論
> To ensure monotonicity, retrieval of the idempotency key and emitting a message with that key must happen atomically, uninterrupted by other worker threads. Otherwise, you may end up in a situation where thread A fetches sequence value 100, thread B fetches sequence value 101, B emits a message with idempotency key 101, and then A emits a message with idempotency key 100\. A consumer would then, incorrectly, discard A’s message as a duplicate.

Also check out Lamport vector clocks. It solves this problem if your producers are a small fixed number.