These are possible steps to reset a csync2 cluster that has been seriously fubared. This is an apocalyptic approach and should only be used when more surgical fixes (like correcting an individual conflict) aren't workable.
Create new filters and create new labels.
from:([email protected]) AND {"Patch Links" "approved this pull request." "requested changes on this pull request." "commented on this pull request." "pushed AROUND 1 commit" "pushed AROUND 2 commits"}
label: gh-pull-request
This function is useful when you need to know the fingerprint of your ssh keys because you have too many keys across too many systems or you're verifying your key use against a particular system/service.
Add this to your .bashrc/.bash_profile/.profile or whereever you keep your shell functions. Works in bash, have not verified use in zsh, csk, ksh, fish, etc.
# fingerprint an ssh key
function fingerprint(){
if [ $# -eq 0 ]; then
echo "usage: fingerprint [md5|sha256] "
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 the files in any two directories | |
function difftree () | |
{ | |
if [ $# -eq 0 ]; then | |
echo "DIFFTREE - Be in the source directory to compare." | |
echo " usage: difftree <path to directory to compare to>" | |
return 1 | |
fi | |
here=`pwd` |
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
import argparse | |
import re | |
from multiprocessing.pool import ThreadPool as Pool | |
import requests | |
import bs4 | |
root_url = 'http://pyvideo.org' | |
index_url = root_url + '/category/50/pycon-us-2014' | |