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
cat sheet1.xml | tidy -xml -iq > output.xml |
This file has been truncated, but you can view the full file.
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
<html> | |
<head> | |
<title>Break</title> | |
</head> | |
<body> | |
<textarea> | |
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABWIAAAbqCAYAAABLwQnDAAAMYmlDQ1BJQ0MgUHJvZmlsZQAASImVVwdck0cbv3dkkrACYcgIe4myCSAjhBVBQKYgKiEJJIwYE4KKm1qqYN0iiqOiVRFF6wCkDkTcFsW9iwMVpRYHLlS+CwnU2m/8vsvv7v7vc8/9n5G7970DQKeDL5Plo7oAFEgL5QmRoaxxaeksUidA4A8AXaDNFyhknPj4GPgEBvu/l7fXBnTBZVcV1z/H/2vRF4oUAgCQDIizhApBAcTNAOAlApm8EABiGJTbTC2UqbAYYgM5dBDimSqco8ZLVThLjbcM6CQlcCFuBIBM4/PlOQBot0I5q0iQA3m0H0HsJhVKpADoGEAcJBDzhRAnQTy8oGCyCs+F2BHqyyDeDjE76yvOnL/xZw3x8/k5Q1gd10Ahh0kUsnz+9P8zNf+7FOQrB23Yw0oTy6MSVPHDHN7ImxytwjSIu6VZsXGqXEP8XiJU5x0AlCpWRiWr9VEzgYIL8weYELsJ+WHREJtBHCHNj43RyLOyJRE8oFoVAJ0mKeQlaeYuECnCEzWc6+STE+IGcbacy9HMrePLB+yq9FuVeckcDf8NsYg3yP+mWJyUCjEVAIxaJEmJhVgbYgNFXmK0WgezLhZzYwd15MoElf+2ELNF0shQNT+WkS2PSNDoywoUg/FipWIJL1aDKwvFSVHq/GA7BPwB/40hrhdJOcmDPCLFuJjBWISisHB17FibSJqsiRe7JysMTdDM7ZHlx2v0cbIoP1Ilt4bYVFGUqJmLjyqEi1PNj8fICuOT1H7imbn80fFqf/AiEAO4IAywgBLWLDAZ5AJJW3dDN3xSj0QAPpCDHCACrhrJ4IzUgREpbBNBMfgDIhFQDM0LH |
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
#!/bin/bash | |
SEARCH_DIR=$1; | |
echo "start converting all m2t video files in ${SEARCH_DIR}" | |
for entry in "$SEARCH_DIR"/* | |
do | |
if [[ ${entry: -4} == ".M2T" ]] | |
then |
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
# Install nvm | |
curl https://raw.githubusercontent.com/creationix/nvm/v0.30.2/install.sh | bash -y | |
. ~/.nvm/nvm.sh | |
source ~/.profile | |
nvm install 5.9 | |
nvm install 8.9 | |
nvm alias default 8.9 |
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
echo "Clear dns cache..." | |
dscacheutil -flushcache && sudo killall -HUP mDNSResponder | |
echo "DNS Cache cleared!" |