I hereby claim:
- I am scottgarner on github.
- I am scottgarner (https://keybase.io/scottgarner) on keybase.
- I have a public key whose fingerprint is 4D2E 5671 9615 D26F 54C0 0938 E059 80DB C033 B781
To claim this, I am signing this object:
| <style> | |
| div#container { | |
| position:relative; | |
| top:0; | |
| left:0; | |
| width:900px; | |
| height:450px; | |
| background:#369; | |
| margin: 4em auto; |
| <html> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
| <script> | |
| $('document').ready(function() { | |
| $('body').keyup(function(e){ | |
| if(e.keyCode == 32){ |
I hereby claim:
To claim this, I am signing this object:
| require('cloud/app.js'); | |
| // Use Parse.Cloud.define to define as many cloud functions as you want. | |
| // For example: | |
| var Experience = Parse.Object.extend("Experience"); | |
| var Mandrill = require('mandrill'); | |
| Mandrill.initialize('XXXXXX'); |
| { | |
| "live_objects": [{ | |
| "label": "VR1_wand", | |
| "x": -0.98, | |
| "y": 0.88, | |
| "z": 3.38, | |
| "qx": -0.75, | |
| "qy": -0.07, | |
| "qz": -0.53, | |
| "qw": -0.38 |
| syntax = "proto2"; | |
| // Options | |
| package update_protocol_v3; | |
| option optimize_for = SPEED; | |
| //option cc_enable_arenas = true; | |
| message AxisButton { | |
| optional float x = 1; |
| <script src="http://holocast-server.herokuapp.com/socket.io/socket.io.js"></script> | |
| <script> | |
| var socket = io('http://holocast-server.herokuapp.com/'); | |
| socket.on('Update', function (data) { | |
| console.log(data); | |
| }); | |
| </script> |
| <script src="http://holojam.herokuapp.com/socket.io/socket.io.js"></script> | |
| <script> | |
| var socket = io.connect("https://holojam.herokuapp.com/client", | |
| { transports: ['websocket', 'polling'] } | |
| ); | |
| socket.on('update', function (data) { | |
| // Receive data from server. | |
| //console.log(data); |
| # This is the name of the WiFi interface we configured above | |
| interface=wlan0 | |
| # Use the nl80211 driver with the brcmfmac driver | |
| driver=nl80211 | |
| # This is the name of the network | |
| ssid=Pi3-AP | |
| # Use the 2.4GHz band |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using System.Net.WebSockets; | |
| using UnityEngine; |