- Aaron Blaise His website - https://creatureartteacher.com/
- Kienan Lafferty
- Feng Zhu
This file contains 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
env=~/.ssh/agent.env | |
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; } | |
agent_start () { | |
(umask 077; ssh-agent >| "$env") | |
. "$env" >| /dev/null ; } | |
agent_load_env |
This file contains 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 bpy | |
def do_bake(scene): | |
""" This thing tries to bake all the object animations | |
and camera movement into a single track | |
Drawback: it eleminates scenegraph hierarchy and flattens everzthing | |
This suposed to be it, but fingers crossed: | |
https://wiki.blender.org/index.php/Dev:2.4/Source/Animation/AnimationBaking |
This file contains 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
# quick add pbr texture names to properties | |
# used in grafkit2 | |
for material in bpy.data.materials: | |
for key in ["metalness", "normal", "roughness"]: | |
material["mat_{0}".format(key)] = "pbr_{0}_{1}.jpg".format(material.name, key) | |
# a bit refined version, which add emissive map if emission was set | |
for material in bpy.data.materials: |
This file contains 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
set encoding=utf-8 | |
set fileencoding=utf-8 | |
filetype plugin indent on | |
syntax on | |
set smartindent | |
set expandtab | |
set ignorecase | |
set smartcase |
This file contains 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
clear() | |
local keyboardIdentifier = '16BFD3AF' | |
lmc_print_devices() | |
-- assign logical name to macro keyboard | |
if keyboardIdentifier == '0000AAA' then | |
lmc_assign_keyboard('MACROS'); | |
else lmc_device_set_name('MACROS', keyboardIdentifier); |
This file contains 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
#include <iostream> | |
#include <map> | |
#include <algorithm> | |
#include <functional> | |
#include <memory> | |
using namespace std; | |
class EventArgs { | |
public: |
This file contains 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 logging | |
import inspect | |
import os | |
import sys | |
import inspect | |
import logging | |
import json | |
from datetime import datetime |
This file contains 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
<template> | |
<div class="container"> | |
<div class="page-header" id="banner"> | |
<div class="row"> | |
<div class="col-lg-8 col-md-7 col-sm-6"> | |
<h1>Darkly</h1> | |
<p class="lead">Flatly in night mode</p> | |
</div> | |
</div> |
This file contains 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
[alias] | |
lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all | |
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |
lg = !"git lg1" |