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

boriselec

219 カルマ登録 11 年前

コメント

boriselec
·4 日前·議論
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
·先月·議論
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
·10 か月前·議論
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
·昨年·議論
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.