Skip to content

Instantly share code, notes, and snippets.

@katemonkeys
katemonkeys / five-trimesters.md
Last active October 2, 2022 23:53
all five trimesters of a healthy pregnancy

Things to do and buy for all five trimesters of a healthy pregnancy.

Introduction, or: What, you thought there were only three?

This post is just like, my opinion, man, and unlike everything on standard mom blogs, has neither pop-science citations nor affiliate links. Having babies is fun and great and they do need attention but they don't need products. I don't like clutter and I don't like smart home devices or basically anything digital or electronic at all -- really. Like not even a monitor. Overall you'll be fine if you just remember not to panic.

Boy warning: Girl things.

Zeroeth trimester / planning phase

@alanthird
alanthird / noto-fonts.el
Last active November 2, 2023 14:22
Set up Noto fonts in Emacs
;; Provided by Sebastian Urban
;; More information at https://idiocy.org/emacs-fonts-and-fontsets.html
(set-fontset-font "fontset-default" 'adlam "Noto Sans Adlam")
(set-fontset-font "fontset-default" 'anatolian "Noto Sans Anatolian Hieroglyphs")
(set-fontset-font "fontset-default" 'arabic "Noto Sans Arabic")
(set-fontset-font "fontset-default" 'aramaic "Noto Sans Imperial Aramaic Regular")
(set-fontset-font "fontset-default" 'armenian "Noto Sans Armenian")
(set-fontset-font "fontset-default" 'avestan "Noto Sans Avestan")
(set-fontset-font "fontset-default" 'balinese "Noto Sans Balinese")

Thread Pools

Thread pools on the JVM should usually be divided into the following three categories:

  1. CPU-bound
  2. Blocking IO
  3. Non-blocking IO polling

Each of these categories has a different optimal configuration and usage pattern.