Skip to content

Instantly share code, notes, and snippets.

View boxp's full-sized avatar
👩‍💻
in reality

Keitaro Takeuchi boxp

👩‍💻
in reality
View GitHub Profile

For downloads and more information about VSeeFace, please check out the website.

Version 1.13.38c2:

  • Blacklisted 3tene virtual camera to avoid freezing at startup.

Version 1.13.38c:

  • Blacklisted virtual cameras that might cause issues when installed at certain versions from the camera selection menu. This should solve the NVIDIA driver issue in most cases.
  • Applied another fix to the virtual camera driver for better compatibility.
  • Separated out wrist bone reception from arm and shoulder reception for the VMC protocol receiver settings to allow better Mocopi with Leap Motion support.
  • No longer set realtime priority along with GPU background priority.
@wraikny
wraikny / SetDynamicBoneProperty.cs
Last active December 21, 2018 03:45
Dynamic Boneのプロパティ操作を楽にするやつ
using System.Collections;
using System.Linq;
using System.Collections.Generic;
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
using UnityEditor.SceneManagement; //!< 追加
#endif
// 参考: https://qiita.com/sango/items/4b9035c3e75d497f91ef#_reference-00718cd16d3962c60da9
  • コードネーム
  • Dropmix
  • カルカソンヌ
  • unlock1
  • unlock2
  • unlock3
  • unlock4
  • unlock5
  • unlock6
  • Dice Forge
@nownabe
nownabe / .commit_template
Created July 5, 2016 06:54
Emojiで楽しく綺麗なコミットを手に入れる
# ==== Emojis ====
# 🐛 :bug: バグ修正
# 👍 :+1: 機能改善
# ✨ :sparkles: 部分的な機能追加
# 🎉 :tada: 盛大に祝うべき大きな機能追加
# ♻️ :recycle: リファクタリング
# 🚿 :shower: 不要な機能・使われなくなった機能の削除
# 💚 :green_heart: テストやCIの修正・改善
@nomuken
nomuken / helloworld.py
Created March 19, 2016 04:58
HelloWorldを表示する,大体のプログラミング言語でいけるであろうやつ
HelloWorld
@emanon-was
emanon-was / clojure.scm
Last active April 17, 2016 13:44
Clojureっぽくスクリプトを書きたい
(define-module (clojure core)
#:use-module (ice-9 format)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-45)
#:use-module (oop goops)
#:replace (map filter)
#:export (-> ->> doto loop str println time slot lazy-seq seq first rest nth take drop dorun doall doseq range line-seq fib-seq))
(define-syntax ->
(syntax-rules ()
@scttnlsn
scttnlsn / core.cljs
Last active July 2, 2016 07:36
Om/Secretary nested routing
(ns nested-routing.core
(:require-macros [om.core :as om]
[secretary.core :refer [defroute]])
(:require [om.dom :as dom]
[om.core :as om]
[secretary.core :as secretary]
[goog.events :as events]
[goog.history.EventType :as EventType])
(:import goog.History))
@chomy
chomy / bcm2835.lisp
Created December 17, 2014 10:49
Common Lisp package for GPIO control of Raspberry Pi
(defpackage :BCM2835
(:use :FFI)
(:export :init
:close
:gpio-fsel
:gpio-write
:gpio-lev
:gpio-set
:gpio-clr
:delay
@dwwoelfel
dwwoelfel / ratings.md
Last active August 29, 2015 14:07
Playing around with clojurecup ratings
@zeptometer
zeptometer / alias-package.lisp
Created December 25, 2012 14:49
clojure-like nickname system in Common Lisp
(defpackage alias-package
(:use :common-lisp)
(:export :import-as
:init-readtable
:register-nickname))
(in-package :alias-package)
(defparameter *prev-readtable* (copy-readtable nil))