Skip to content

Instantly share code, notes, and snippets.

View jarekwg's full-sized avatar
🦎
Sesquipedalianism

Jarek Głowacki jarekwg

🦎
Sesquipedalianism
  • Melbourne, Australia
  • 08:27 (UTC +11:00)
View GitHub Profile
@jarekwg
jarekwg / greekmyth.dot
Last active November 4, 2025 10:13
Greek Family Tree
# View in https://dreampuf.github.io/GraphvizOnline
# TODO: Swap colourings?
# - Sky beings: light blue
# - Earth beings: green
# - Sea beings: aquamarine
# - Underworld beings: black
# - Concepts? Monsters? Titans/Olympians/Heroes?
# Credits:
@jarekwg
jarekwg / summarise_repo.py
Last active June 12, 2021 13:29
Summarise repo (nfiles, kBytes, LOC) by extension.
import argparse
from collections import defaultdict
from dataclasses import dataclass
from pathlib import Path
import pathspec
from tabulate import tabulate
parser = argparse.ArgumentParser(description='Summarise repo.')
parser.add_argument('--dir')