This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with (import <nixpkgs> {}); | |
mkShell { | |
buildInputs = [ | |
rsync | |
python3 | |
morph | |
nixpkgs-fmt | |
livebook | |
zellij |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import subprocess | |
# Inspiration: https://stackoverflow.com/a/11740682 | |
r = subprocess.check_output(['git','ls-tree','-r','--name-only','origin/master','./']) | |
files = r.split(); | |
ignoredPeeps = set(['Laima Tazmin', 'Cara Warner', 'Patty Delgado', 'Matt Anderson', 'r29bot']) |