This file contains hidden or 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
| Game Engine Considerations | |
| Technologies | |
| OpenGL | |
| glm | |
| glew | |
| glfw | |
| thrift | |
| boost |
This file contains hidden or 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
| { | |
| "type" : "Human", | |
| "armatures" : [ | |
| { | |
| "name" : "pelvis", | |
| "children" : [ | |
| { | |
| "name" : "waist", | |
| "children" : [ | |
| { |
This file contains hidden or 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
| ImageData { | |
| list<Vertex2i> | |
| } | |
| SensorData { | |
| map<SkeletonJointType, SkeletonJoint> skeletons, | |
| ImageData depthImage, | |
| ImageData rgbImage | |
| } |
This file contains hidden or 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
| QMainWindow { | |
| toolbar { | |
| Start|Stop Server, | |
| Force Disconnect Client | |
| }, | |
| menuBar { | |
| Actions { | |
| Start/Stop Middleware Server, | |
| Exit | |
| }, |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| from distutils.core import setup, Extension | |
| from distutils.sysconfig import get_python_inc | |
| import glob | |
| src_files = [] | |
| for f in glob.glob('src/*.cpp'): | |
| src_files.append(f) |
This file contains hidden or 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
| stdClass Object | |
| ( | |
| [status] => 1 | |
| [content] => stdClass Object | |
| ( | |
| [channels] => Array | |
| ( | |
| [0] => stdClass Object | |
| ( | |
| [id] => 29 |
This file contains hidden or 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
| #!/usr/bin/env python | |
| from multiprocessing import Process, Manager | |
| import psutil | |
| import sys | |
| import os | |
| class Stats(): |
This file contains hidden or 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
| { | |
| "name" : WorkerClassName :: String, | |
| "input" : { | |
| "format" : JobFormatClassName :: String, | |
| "queue" : QueueName :: String | |
| }, | |
| "type" : QueueClientClassName :: String, | |
| "output" : { | |
| "format" : JobFormatClassName :: String, | |
| "queue" : [] |
This file contains hidden or 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
| (require 'package) | |
| (setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") | |
| ("marmalade" . "http://marmalade-repo.org/packages/") | |
| ("melpa" . "http://melpa.milkbox.net/packages/"))) | |
| (package-initialize) | |
| (setenv "PATH" (concat (getenv "PATH") ":/opt/go/site/bin")) | |
| (setq exec-path (append exec-path '("/opt/go/site/bin"))) | |
This file contains hidden or 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 Debug.Trace | |
| debug = flip trace | |
| permute :: Show a => [a] -> [a] | |
| permute xs = | |
| permute' xs xs | |
| where | |
| permute' xy xz = case xy of |