HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Lethalman

no profile record

Submissions

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

3 points·by Lethalman·2 เดือนที่ผ่านมา·3 comments

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

3 points·by Lethalman·3 เดือนที่ผ่านมา·0 comments

comments

Lethalman
·20 วันที่ผ่านมา·discuss
https://xkcd.com/927/
Lethalman
·29 วันที่ผ่านมา·discuss
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
·เดือนที่แล้ว·discuss
“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 เดือนที่ผ่านมา·discuss
A web fetch is not much different than asking an MCP for its tools, right?
Lethalman
·3 เดือนที่ผ่านมา·discuss
Wish it wasn’t rust… it’s so hard to read.
Lethalman
·7 เดือนที่ผ่านมา·discuss
> 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.