HackerTrans
TopNewTrendsCommentsPastAskShowJobs

boriselec

219 karmajoined 11 ปีที่แล้ว

comments

boriselec
·4 วันที่ผ่านมา·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
·เดือนที่แล้ว·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
·10 เดือนที่ผ่านมา·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
·ปีที่แล้ว·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.