./create_symlink.sh /Volumes/super_60/github ~/github
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 bash | |
set -e | |
OS=$(uname -s) | |
echo "Detected OS: $OS" | |
if [[ "$OS" == "Linux" ]]; then | |
if command -v resolvectl &>/dev/null; then | |
echo "Flushing DNS cache with resolvectl..." |
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
https://gist.github.com/sgoggins/653c59e35f8087680f200527788f3e6a |
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
pandoc -s CS3050SP2024-A2.docx -t markdown -o CS3050a2.md |
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
#!/bin/bash | |
find . -name ".DS_Store" -delete | |
## You're welcome | |
## Please tweet #AugurOfChaossRules |
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
#!/bin/bash | |
cd augur-spos/ | |
source ../virtualenv/augur-spos/bin/activate | |
git stash | |
git pull | |
augur backend stop | |
sleep 10 | |
augur backend kill | |
deactivate |
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
#!/bin/bash | |
rm -rf virtualenv/augur-spos | |
rm -rf virtualenv/augur-zephyr | |
rm -rf virtualenv/augur-unicef | |
rm -rf virtualenv/augur-census | |
rm -rf virtualenv/augur-indeed | |
rm -rf virtualenv/augur-howison | |
rm -rf virtualenv/augur-jenkins | |
rm -rf virtualenv/augur-osshealth |
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
export NEO4J_HOME=${NEO4J_HOME-~/Downloads/neo4j-community-3.0.1} | |
if [ ! -f data-csv.zip ]; then | |
curl -OL https://cloudfront-files-1.publicintegrity.org/offshoreleaks/data-csv.zip | |
fi | |
export DATA=${PWD}/import | |
rm -rf $DATA |
NewerOlder