Tested on Wine 11 with Elementary OS 8.1. Adapted from community guide, including fixes for the Canva-based sign-in issue.
Winetricks needs a dialog tool to show its GUI. Install one before running it:
| PYTHON_BIN="" | |
| for candidate in /opt/homebrew/bin/python3 /usr/local/bin/python3 /usr/bin/python3 python3; do | |
| if command -v "$candidate" >/dev/null 2>&1; then | |
| PYTHON_BIN="$(command -v "$candidate")" | |
| break | |
| fi | |
| done | |
| if [[ -z "$PYTHON_BIN" ]]; then |
Prepare environment
docker run -i -t --rm -v ${PWD}:/mnt \
-e PIP_BREAK_SYSTEM_PACKAGES=1 \
-e PIP_ROOT_USER_ACTION=ignore \
-e PIP_NO_WARN_SCRIPT_LOCATION=0 \
--name=buildenv alpine:latest \
sh -c 'apk add bash; bash'| using UnityEngine; | |
| public class FogObstacle : MonoBehaviour { | |
| [SerializeField] float radius = 1.5f; | |
| public float Radius => radius; | |
| } |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
Summary: macOS normally restricts system-level Spatial Audio (HRTF processing of 5.1/7.1 content) to AirPods and built-in speakers. By creating a specific Aggregate Device configuration, you can trick the OS into performing the binaural rendering and routing the processed audio to any USB DAC or wired headphone output. Result Surround sound content played through standard stereo headphones sounds directional/atmospheric rather than just left/right.
| Term | Definition |
|---|
This should make True Color (24-bit) and italics work in your tmux session and vim/neovim when using Alacritty (and should be compatible with any other terminal emulator, including Kitty).
Running this script should look the same in tmux as without.
curl -s https://gist.githubusercontent.com/lifepillar/09a44b8cf0f9397465614e622979107f/raw/24-bit-color.sh >24-bit-color.sh