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.

2019-06-18 09:47 #

  Let’s get started with Keith Jarrett and Co.

2019-06-18 08:08 #

A really good read on Micro Frontends with a detailed application, available on Github. #js

2019-06-18 08:05 #

So, Amazon now offers two (free) versions of legacy Java: Amazon Corretto. (via Daniel Lemire)

2019-06-17 21:34 #

Presenting the Eshell. (via HN) #emacs

2019-06-17 21:18 #

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

2019-06-17 21:17 #
2019-06-17 20:45 #

  Cigarettes After Sex, Cigarettes After Sex.

2019-06-17 19:45 #

Easier slideshows using Racket’s slideshow tool. #racket

2019-06-17 13:44 #

TIL about chemacs, an Emacs profile manager/switcher (à la IPython/jupyter). #emacs

2019-06-17 13:25 #

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?