HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Lethalman

no profile record

Submissions

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

3 points·by Lethalman·2 miesiące temu·3 comments

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

3 points·by Lethalman·3 miesiące temu·0 comments

comments

Lethalman
·19 dni temu·discuss
https://xkcd.com/927/
Lethalman
·29 dni temu·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
·w zeszłym miesiącu·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 miesiące temu·discuss
A web fetch is not much different than asking an MCP for its tools, right?
Lethalman
·3 miesiące temu·discuss
Wish it wasn’t rust… it’s so hard to read.
Lethalman
·7 miesięcy temu·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.