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-10-27 21:34 #

On the one hand, the hardware is great and so is the performance. On the other, getting a new Mac today means it comes with Ventura or Monterey preinstalled, which is unfortunate, and of course there is no downgrade path. — My next Mac might be the last

2022-10-27 21:32 #

Little shell script to listen to some free internet radios:

#!/usr/bin/env bash

# sources
jazz="https://jazzradio.ice.infomaniak.ch/jazzradio-high.mp3"
misc="https://www.lemellotron.com/stream"
piano="https://pianosolo.streamguys1.com/live"

case "$1" in
  jazz)
    src=$jazz
    ;;
  misc)
    src=$misc
    ;;
  piano)
    src=$piano
    ;;
  *)
    echo "Unknown streaming source..."
    ;;
esac

mpv --no-video $src
2022-10-27 14:49 #

♪ Clan of Xymox · A Day

2022-10-27 14:48 #

TIL that sending Fzf results to the quickfix list is as simple as pressing <cr> after selecting items using <tab>. #vim

2022-10-26 20:08 #

I find the developer experience of Common Lisp to be superior to almost anything imaginable, and this is not an empty statement: having used all sorts of IDEs and editors for over 25 years, I have seen many. — Between two Lisps

2022-10-26 20:06 #

♪ Kavinsky · Nightcall

2022-10-26 20:04 #
2022-10-26 20:03 #

That’s right: what’s good for the lurkers is also good for everybody else. Just like all the great practices that enable remote work also made things better for anybody working in an office (if you remember what that was like and can believe that so many people just put up with that for so long), so does favoring transparency and following up on questions in the open improve all your team dynamics. — Learning By Lurking