HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Lethalman

no profile record

Submissions

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

3 points·by Lethalman·hace 2 meses·3 comments

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

3 points·by Lethalman·hace 3 meses·0 comments

comments

Lethalman
·hace 19 días·discuss
https://xkcd.com/927/
Lethalman
·hace 29 días·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
·el mes pasado·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
·hace 2 meses·discuss
A web fetch is not much different than asking an MCP for its tools, right?
Lethalman
·hace 3 meses·discuss
Wish it wasn’t rust… it’s so hard to read.
Lethalman
·hace 7 meses·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.