You can also also view the full archives of micro-posts. Longer blog posts are available in the Articles section.
A really good read on Micro Frontends with a detailed application, available on Github. #js
So, Amazon now offers two (free) versions of legacy Java: Amazon Corretto. (via Daniel Lemire)
Presenting the Eshell. (via HN) #emacs
TIL about the ash function. So, (defun square (n) (ash 1 (1- n))) is way simpler compared to:
(defun power (n m)
(reduce #'* (loop for x below n collect m)))
(defun square (n)
(power (- n 1) 2))
(Me playing with the CL track at https://exercism.io). #lisp
Easier slideshows using Racket’s slideshow tool. #racket
TIL about chemacs, an Emacs profile manager/switcher (à la IPython/jupyter). #emacs
P-values are a practical success but a critical failure. Scientists the world over use them, but scarcely a statistician can be found to defend them. Bayesians in particular find them ridiculous, but even the modern frequentist has little time for them. – Stephen Senn, Two Cheers for P-values?