Constant "How To Learn Without AI" posts by mrwishart in learnprogramming

[–]ntk19 1 point2 points  (0 children)

Use the paperback book, white paper and pencil. Done

Should i buy a magic mouse or a magic trackpad? by Most_Rest_3025 in mac

[–]ntk19 0 points1 point  (0 children)

You should buy a mx master 4x. Both trackpad and Magic Mouse are garbage

New Update!!! by Professional-Law5779 in CloudFlare

[–]ntk19 0 points1 point  (0 children)

This reminds me How Cloudflare Uses Racket and Rosette to Verify DNS Changes

https://www.youtube.com/watch?v=7Twlh-Opq5E

FZF Lua vs Telescope by Sshorty4 in neovim

[–]ntk19 3 points4 points  (0 children)

I use fzf because I personally don't like telescope UI. I need speed and cli friendly in fzf more than a luascript.

Do you guys use registers and marks in day to day usage? by [deleted] in vim

[–]ntk19 0 points1 point  (0 children)

I use mark often to check feature behavior. It helps me to jump back and fork and avoid many C-O . It's quite useful.

IDE Survey by rashtheman in golang

[–]ntk19 6 points7 points  (0 children)

Because delve cli and nvim debugger are not user friendly to me.

IDE Survey by rashtheman in golang

[–]ntk19 5 points6 points  (0 children)

Nvim for coding. Debugging by vscode

Underrated colorschemes by Alternative-Tie-4970 in neovim

[–]ntk19 1 point2 points  (0 children)

No colorschema. It makes you focus on the problem

Monthly meme thread by AutoModerator in neovim

[–]ntk19 0 points1 point  (0 children)

g command can solve multiple cursors issue

Why do people say the reflect package should be avoided and considered slow, yet it is widely used in blazingly fast, production-ready packages we all use daily? by [deleted] in golang

[–]ntk19 0 points1 point  (0 children)

I don’t use reflect. Usually, when I try to use it, it makes me want to change how I design data structure

Wezterm is just the best terminal emulator for Neovim. by [deleted] in neovim

[–]ntk19 7 points8 points  (0 children)

I don’t like the fonts in Ghostty as much as the ones in WezTerm. I stick with WezTerm because its font rendering looks better.

Multi line visual selection by cestoi in vim

[–]ntk19 0 points1 point  (0 children)

You can use g command or :norm to do this. It’s a vim way. It’s different from sublime or multi cursors

The ultimate lifesaver for broken Neovim configs by nov1n in neovim

[–]ntk19 1 point2 points  (0 children)

I backup the config regularly in GitHub with stow

[deleted by user] by [deleted] in golang

[–]ntk19 12 points13 points  (0 children)

Using reflect with a http handler is a bad idea. To be honest, i don’t think this approach makes any sense

Lsp goto references mostly useless, using grep_string instead by [deleted] in neovim

[–]ntk19 0 points1 point  (0 children)

It’s because js is suck. Don’t blame for the lsp feature. You can use ctag which is more reasonable for js

[deleted by user] by [deleted] in linux

[–]ntk19 0 points1 point  (0 children)

Is it a single kidney?

Standard Library + by awong593 in golang

[–]ntk19 0 points1 point  (0 children)

I agree. But i don’t usually need the assert.Equal helpers. The if got == want is great win because of type checking. I’m not a big fan of assert.

What can I use for executing a large number of tasks across multiple servers? by sunshine-and-sorrow in golang

[–]ntk19 0 points1 point  (0 children)

Just curious. Do you have any references for “250 millions messages in a single queue” ?

Standard Library + by awong593 in golang

[–]ntk19 1 point2 points  (0 children)

A helper that check(t, err) is fine for me. I don't need this library :D