HackerTrans
TopNewTrendsCommentsPastAskShowJobs

boriselec

219 karmajoined hace 11 años

comments

boriselec
·hace 4 días·discuss
I run claude cli inside nvim as my main ide. It is 3 pane: nvim-tree/editor/agent terminal + popup terminal, I switch M-1/2/3/4 between those. ~700 lines of lua config. It has editor sync on agent writes, auto format hooks for claude, os alerts, resume claude session, and usual vim telescope/lsp/gitgutter.

Quite satisfied with that, haven't opened vscode/zed in a while. Making something like that is easy with LLMs now.
boriselec
·el mes pasado·discuss
Why do reasoning blocks even get encrypted? Reasoning can’t contain information that is more ‘sensitive’ than assistant response. It is annoying to be not able to see reasoning tokens.
boriselec
·hace 10 meses·discuss
Also read "stupid" code :)

I didn't know about Deno and streams, but this looks fine

  const file = await Deno.open("huge-quotes.txt");
  const quotes: string[] = [];

  await file.readable
    .pipeThrough(new TextDecoderStream())
    .pipeThrough(new TextLineStream())
    .pipeTo(new WritableStream({
      write(line) {
        quotes.push(line);
      }
    }));
boriselec
·el año pasado·discuss
Good tool, I like it so far.

My biggest progress in English was when I started to read the English internet (HN, Reddit, etc.). I used an browser extension to translate words that I didn't know.

I'm learning Spanish now, but there is no content that interests me. Maybe the Spanish Wikipedia sometimes.

So this extension gives me that language exposure.