Skip to content

Instantly share code, notes, and snippets.

View GixoXYZ's full-sized avatar
🖥️
Learning

Gixo GixoXYZ

🖥️
Learning
View GitHub Profile
@GixoXYZ
GixoXYZ / arch_linux_installation.md
Created August 13, 2024 19:21 — forked from orhun/arch_linux_installation.md
Notes on my Arch Linux installation: UEFI/Secure Boot + systemd-boot, LUKS-encrypted root (XFS), LUKS-encrypted swap (with hibernate & unlocked via TPM)
@GixoXYZ
GixoXYZ / blender_vertex_groups_to_materials.py
Last active October 26, 2023 20:25
A script to turn object's vertex groups into materials in Blender.
import bpy
obj = bpy.context.object
vgs = obj.vertex_groups
# Remove all material slots.
while obj.material_slots:
obj.active_material_index = 0
bpy.ops.object.material_slot_remove()
Verifying that I control the following Nostr public key: npub15f8t689lyp4trtwegj6qrf562g28mz6658cxkjc82tq0xqcjt0nqm8he3d
# Create a rerelease build .zip of the (filtered) contents of the main branch
# When a new tag is pushed with a semantic versioning format and _stable suffix
name: ZIP Addon Release Build
on:
push:
tags:
- '*_stable'
jobs:
# Create a prerelease build .zip of the (filtered) contents of the matching version branch
# When a new tag is pushed with a semantic versioning format and suffixes other than _stable
name: ZIP Addon Pre-release Build
on:
push:
tags-ignore:
- '*_stable'
jobs: