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.

2021-07-05 20:29 #

Great mix for your favorite MP3 manager: https://www.musicforprogramming.net/.

2021-07-02 20:26 #

check-if-email-exists: Check if an email address exists without sending any email, written in Rust.

2021-07-02 20:04 #

It looks like Neovim 0.5 (stable) is finally out. #vim

2021-06-30 21:14 #

Risk differences are clinically relevant measures of treatment effect. But because of extreme baseline risk-dependent heterogeneity of risk differences, risk differences should be covariate-specific and not averaged. — Incorrect Covariate Adjustment May Be More Correct than Adjusted Marginal Estimates

2021-06-30 21:07 #

TIL that Frank Harrell is now using data.table under the hood. What a great news! #rstats

2021-06-30 21:00 #

Lagrange, a Beautiful Gemini Client (via thequietlearner).

2021-06-30 16:06 #
2021-06-30 13:45 #

True concealing in Vim using multiple characters (thanks to Brian Albert Monroe). Add this in your Vim config (possibly in after/syntax/r.vim):

call matchadd('Conceal', '|>\&|', 10, -1, {'conceal':'»'})
call matchadd('Conceal', '|\zs>', 10, -1, {'conceal':'='})

syntax match rOperator "%>%" conceal cchar=»

hi! link Conceal Operator

Not sure I will really need the magrittr’s pipe operator, so I didn’t bother using Haskell’s monad sequencing operator with value passing.

Result:

vim