Skip to content

Instantly share code, notes, and snippets.

@VincentSchmid
VincentSchmid / batch_mesh_converter.py
Last active November 4, 2022 16:48
Batch convert all meshes/3d models in folder in command line using blender. More functions like triangulate can easily be added
from sys import argv
from enum import Enum
import bpy
import bmesh
import glob
from pathlib import Path
from subprocess import call
"""
@VincentSchmid
VincentSchmid / justfile
Last active June 13, 2024 13:51
justfile for terraform configuration
terraform_version := "1.6.6"
current_env := "dev"
var_file_name := "./configuration." + current_env + ".tfvars"
backend_file_name := "backend." + current_env + ".tfvars"
terraform_loglevel := "ERROR"
terraform_code_folder := "terraform"
# runs terraform init & fmt & validate & tflint (add -reconfigure or -upgrade as params)
tf-check *params: