This file contains 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 python3 | |
# | |
# Modified from https://github.com/newren/git-filter-repo/blob/master/contrib/filter-repo-demos/lint-history | |
# | |
# pip3 install git-filter-repo black | |
# git pull | |
# git remote prune origin # clean up associated local branches too | |
# python3 black_history.py | |
# git remote add origin <url> | |
# git push -u origin --mirror --no-verify |
This file contains 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
# Add to shell's profile/rc | |
make() { | |
base_dir="${PWD}" | |
( | |
while [ "${PWD}" != '/' ] && [ ! -e 'Makefile' ]; do | |
cd .. | |
done | |
if [ -e 'Makefile' ]; then | |
command make "${@}" | |
else; |
This file contains 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
#/etc/profile.d/systemd_failed_units.sh | |
# | |
# Only print for interactive shells. | |
if [[ $- == *i* ]]; then | |
FAILED=$(systemctl list-units --state=failed --no-legend) | |
if [[ ! -z "${FAILED}" ]]; then | |
COUNT=$(wc -l <<<"${FAILED}") | |
echo -e "Failed Units: \033[31m${COUNT}\033[39m" | |
awk '{ print " " $1 }' <<<"${FAILED}" | |
fi |
This file contains 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
""" Provides a base class that allows lazy initialization | |
""" | |
from functools import update_wrapper | |
class LazyInit(object): | |
_wrapped_object = None | |
_wrapped_object_base = None | |
_wrapped_object_initialized = False |
This file contains 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
diff --old-line-format='' --new-line-format='' <(git rev-list --first-parent "${1:-master}") <(git rev-list --first-parent "${2:-HEAD}") | head -1 |