Skip to content

Instantly share code, notes, and snippets.

View exustash's full-sized avatar
🏃‍♂️
new start!

Exuper O. exustash

🏃‍♂️
new start!
  • mikanolab
  • Paris
View GitHub Profile
@exustash
exustash / most_changed_roles.py
Created June 26, 2021 17:07 — forked from caleb15/most_changed_roles.py
python script for aggregating changes by folder.
import re
# run ./git-most.sh > most.txt before this script
# adjust whitelist var if you only want to see changes to a certain filetype/file/path
most_changed_paths = {}
whitelist = '' # '.yml'
with open('most.txt') as f:
for line in f.readlines():