- http://absulit.com/portfolio/demo/webvr/001/
- https://www.clicktorelease.com/code/polygon-shredder/vr/ #positional
- https://www.clicktorelease.com/tmp/threejs/webvr-physics/ #positional #input #haptic
- https://janusweb.metacade.com/ https://github.com/jbaicoianu/janusweb/
- https://jzitelli.github.io/poolvr/
- https://kuva.io/block-background/ #positional #input
- https://www.shadertoy.com/results?filter=vr
- https://vr-batted-ball-vis.herokuapp.com/index.html
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
| [net] | |
| # Training | |
| # batch=128 | |
| # subdivisions=2 | |
| # Testing | |
| batch=1 | |
| subdivisions=1 | |
| height=256 |
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
| // ==UserScript== | |
| // @name sketchfab2obj | |
| // @description Save Sketchfab models as obj | |
| // @author <anonimus> | |
| // | |
| // Version Number | |
| // @version 1.62 | |
| // | |
| // Urls process this user script on | |
| // @include /^https?://(www\.)?sketchfab\.com/models/.* |
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
| @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
| rem choco install visualstudio2013professional %1 -y | |
| rem choco install visualstudio2015professional %1 -y | |
| rem choco install teamviewer9 %1 -y | |
| chocolatey install paint.net %1 -y | |
| chocolatey install tortoisegit %1 -y | |
| chocolatey install tortoisesvn %1 -y | |
| chocolatey install autodesk-fusion360 %1 -y | |
| chocolatey install f.lux %1 -y | |
| chocolatey install sysinternals %1 -y |
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
| // A quick and dirty DLL injector | |
| // This method relies on static linkage and the fact that kernel32 doesn't move | |
| // Compile with the same bitness as the target and the dll. | |
| #define WIN32_LEAN_AND_MEAN | |
| #include <Windows.h> | |
| #include <Psapi.h> | |
| #include <stdio.h> | |
| int GetPid(char *modName) | |
| { |
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
| from __future__ import print_function | |
| import requests | |
| import json | |
| import cv2 | |
| addr = 'http://localhost:5000' | |
| test_url = addr + '/api/test' | |
| # prepare headers for http request | |
| content_type = 'image/jpeg' |
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
| /* | |
| Copyright (c) 2016, Paul Houx - All rights reserved. | |
| This code is intended for use with the Cinder C++ library: http://libcinder.org | |
| Redistribution and use in source and binary forms, with or without modification, are permitted provided that | |
| the following conditions are met: | |
| * Redistributions of source code must retain the above copyright notice, this list of conditions and | |
| the following disclaimer. | |
| * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and |
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 | |
| """ | |
| Run programs with added vulkan layers. | |
| Author: Henri Tuhola <[email protected]> | |
| License: MIT | |
| Date: 2016-2-20 | |
| """ | |
| import argparse, json, os, sys |
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
| { "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } |
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 | |
| # -*- coding: utf-8 -*- | |
| import argparse | |
| import json | |
| from pyOSC import OSC | |
| from SimpleWebSocketServer import WebSocket, SimpleWebSocketServer | |
| # arguments |