Skip to content

Instantly share code, notes, and snippets.

View nyurik's full-sized avatar

Yuri Astrakhan nyurik

View GitHub Profile
@nyurik
nyurik / links.md
Created November 17, 2025 00:22
FOSS4G 2025 Auckland
https://docs.google.com/presentation/d/1D9HBReO9Ir7Ld1WzTY0zylM8fzGNrtCNsk_qcwyO3vA/edit?slide=id.g36250774062_0_1#slide=id.g36250774062_0_1
@nyurik
nyurik / sort-justfile.py
Last active May 31, 2025 04:55
A script to sort justfile by recipe name
#!/usr/bin/env python3
"""
A script to sort justfile entries alphabetically and move private recipes to the end.
Current limitations: fails if there is more than one recipe with an identical name (e.g. for multiple architectures)
"""
import re
import sys