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
.terraform/ | |
*.pem | |
*.tf | |
*.tfstate | |
*.yaml | |
*.backup | |
istio-*/ | |
cert-manager-*/ | |
*.swp | |
env |
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
robocopy $(TargetDir) <DestDir> /MIR | |
IF %ERRORLEVEL% GEQ 8 exit 1 | |
exit 0 |
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
@echo off | |
rem works with https://github.com/chrisheckey/openvdb/tree/win_build | |
call :DATETIME | |
echo Started Building OpenVDB on %_DATETIME% | |
title OpenVDB Build %_DATETIME% | |
setlocal | |
:: Clone |
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
import Queue | |
from PySide.QtCore import * | |
from path import Path | |
class FileCopyWorker(QObject): | |
progress = Signal() | |
done = Signal() |