aliquote.org

Latest micro-posts

You can also also view the full archives of micro-posts. Longer blog posts are available in the Articles section.

2022-01-29 12:41 #

TIL about Convos, an IRC client that runs in your browser and brings the IRC experience into the 21st century.

2022-01-29 12:36 #

One of the most worthwhile exercises I recommend here is to consider how you would solve your immediate problem without adding anything new. First, posing this question should detect the situation where the “problem” is that someone really wants to use the technology. If that is the case, you should immediately abort. — Choose Boring Technology

2022-01-29 12:30 #

Hooray! racket-langserver got a proper Hover method, which displays full help when pressing K in Neovim, and not only a link to the online doc. #racket #vim

img

2022-01-28 18:09 #

Got nvim-dap to work for all languages I configured (C, Python, Rust), except Haskell for the moment. Together with ’nvim-telescope/telescope-dap.nvim’ and ’theHamsta/nvim-dap-virtual-text’, it provides a neat interface to DAP. #vim

2022-01-28 18:09 #

  Current 93, All the Pretty Little Horses.

2022-01-27 20:44 #

You can fix spelling error by selecting the first suggested alternative automagically using 1z=. Add this to your (Neo)Vim config, and you will thank me later:

inoremap <C-s> <c-g>u<Esc>[s1z=`]a<c-g>u

(Or bind whatever key you want.) This allows to fix any previous error(s) (thanks to the last bit of magic) using the first suggested entry while you’re in insert mode. #vim