Skip to content

Instantly share code, notes, and snippets.

@lyokato
lyokato / usd_install_ubuntu.sh
Created January 13, 2019 08:32
usd install script on Ubuntu 18.04
#!/bin/bash
BOOST_VERSION="1.62.0"
BOOST_DEV_VERSION="1.62-dev"
# beforehand, you should git clone USD on this directory
USD_PATH=/path/to/USD
sudo apt-get install libtiff-dev libjpeg-dev libpng-dev
@lyokato
lyokato / lyokato_profile.md
Last active October 21, 2019 01:24
lyokato_profile

名前

加藤亮(かとうりょう)

近況

2016年からはフリーランスとして働いています。

仕事の内容などは以下の略歴を参照して下さい。

@lyokato
lyokato / midnight.xml
Last active October 13, 2019 04:08
blender2.81 theme file
<bpy>
<Theme>
<user_interface>
<ThemeUserInterface
menu_shadow_fac="0.3"
menu_shadow_width="4"
icon_alpha="1"
icon_saturation="0.5"
widget_emboss="#00000005"
editor_outline="#1f1f1f"
import maya.cmds as cmds
joints = cmds.listRelatives(allDescendents=True, type='joint')
cmds.select(joints, add=True)
@lyokato
lyokato / .vimrc
Created September 13, 2021 02:17
myvimrc
call plug#begin('~/.vim/plugged')
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'prabirshrestha/vim-lsp'
Plug 'mattn/vim-lsp-settings'
Plug 'joshdick/onedark.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'bronson/vim-trailing-whitespace'
Plug 'prabirshrestha/async.vim'