Skip to content

Instantly share code, notes, and snippets.

View chrisheckey's full-sized avatar

Chris Heckey chrisheckey

View GitHub Profile
@chrisheckey
chrisheckey / .gitignore
Created September 1, 2021 15:55 — forked from pdxjohnny/.gitignore
Setting Up k3s for Serverless (knative) on a $5 DigitalOcean Droplet Using k3d
.terraform/
*.pem
*.tf
*.tfstate
*.yaml
*.backup
istio-*/
cert-manager-*/
*.swp
env
robocopy $(TargetDir) <DestDir> /MIR
IF %ERRORLEVEL% GEQ 8 exit 1
exit 0
@chrisheckey
chrisheckey / build_openvdb.cmd
Last active September 15, 2018 02:26
Build OpenVDB Maya Plugin
@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
@chrisheckey
chrisheckey / file_copy_thread_pool.py
Created August 26, 2015 06:15
Thread pool mockup
import Queue
from PySide.QtCore import *
from path import Path
class FileCopyWorker(QObject):
progress = Signal()
done = Signal()