Steps:
- Install xdc to remap as Qwerty when modifier keys are used.
- Add xmodmap config to swap Control and ⌘ keys.
- Set up
xdc
andxmodmap ~/.Xmodmap
to run on boot. (TODO)
Steps:
xdc
and xmodmap ~/.Xmodmap
to run on boot. (TODO)In Maya LT:
In obj2gltf
stable (not the online version, which drops UVs), convert to glTF.
Date: Sept 11, 2017.
Summary of the glTF 2.0 ecosystem, as it affects WebVR devs.
license: mit |
#!/usr/bin/env python | |
import glob | |
from subprocess import call | |
import sys | |
import os | |
if len(sys.argv) > 1: | |
target = sys.argv[1] | |
collada2gltf = os.path.realpath(sys.argv[1]) |
#! /bin/bash | |
echo "Cleaning up git branches..." | |
git branch --format="%(refname:short)" | grep -v -E "master|dev" | while read branchname; do | |
read -n 1 -p $'\nDelete branch '"$branchname"$'? (Yn)\n' yn </dev/tty | |
case ${yn:0:1} in | |
y|Y ) | |
git branch -D $branchname | |
;; |
Installing and running msdf-bmfont-xml on Google Compute Engine.
Starting from Ubuntu 16.04 LTS image.
# install node.js
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
nvm install 8