Skip to content

Instantly share code, notes, and snippets.

@brisvag
brisvag / euler_playground.py
Last active February 19, 2024 07:54
Euler angle playground widget for napari
#!/usr/bin/env python3
import requests
from io import StringIO
from functools import lru_cache
import numpy as np
from scipy.spatial.transform import Rotation, Slerp
import napari
from napari.settings import get_settings
@peterhurford
peterhurford / install_xelatex_on_mac.txt
Last active June 17, 2024 15:02
How to install latex and xelatex on Mac so that Jupyter "Download as PDF" will work
brew install pandoc
brew tap homebrew/cask
brew install --cask basictex
eval "$(/usr/libexec/path_helper)"
# Update $PATH to include `/usr/local/texlive/2022basic/bin/universal-darwin`
sudo tlmgr update --self
sudo tlmgr install texliveonfly
sudo tlmgr install xelatex
sudo tlmgr install adjustbox
sudo tlmgr install tcolorbox