Skip to content

Instantly share code, notes, and snippets.

View vankessel's full-sized avatar
👨‍💻
Arranging 1s and 0s

Kara van Kessel vankessel

👨‍💻
Arranging 1s and 0s
View GitHub Profile
@vankessel
vankessel / Prediction.txt
Created November 18, 2022 03:36
Posted a prediction to Twitter on Mar 18 2022 (https://twitter.com/kevin_vankessel/status/1504941792906526722) Posting it here as backup proof.
Posted a prediction to Twitter on Mar 18 2022 (https://twitter.com/kevin_vankessel/status/1504941792906526722)
Posting it here as backup proof.
sha256-aa5360cb997155549d4231302ee643a41cfda802bae54859d6b9297260268503
"""Blender add-on that selects all nodes in the current node editor view of the same type as the active node.
Default shortcut is Shift Ctrl Q.
"""
import bpy
bl_info = {
"name": "Select Similar Nodes",
"author": "Kevin van Kessel",
"description": "Select nodes of the same type as the active node",
#!/usr/bin/env python3
class Color:
color_code = None
reset = '\033[0m'
_color_code_stack = [reset]
def __init__(self):