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
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.weariverse.<%= $package %>" | |
| android:versionCode="1" | |
| android:versionName="1.0"> | |
| <uses-permission android:name="android.permission.CAMERA" /> | |
| <uses-feature | |
| android:name="android.hardware.camera" | |
| android:required="false" /> |
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
| <!-- Complex checklists V2 --> | |
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
| <script src="https://rawgit.com/Glench/fuzzyset.js/master/lib/fuzzyset.js"></script> | |
| <script src="http://checklistsforglass.com/static/js/show_checklist.js"></script> | |
| <link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700' rel='stylesheet' type='text/css'> | |
| <style> | |
| body { |
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
| <!-- Complex checklists V2 --> | |
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
| <script src="https://rawgit.com/Glench/fuzzyset.js/master/lib/fuzzyset.js"></script> | |
| <script src="http://checklistsforglass.com/static/js/show_checklist.js"></script> | |
| <script src="http://checklistsforglass.com/static/js/glass.js"></script> | |
| <link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700' rel='stylesheet' type='text/css'> | |
| <style> | |
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
| var user_id; | |
| var checklist_id; | |
| var device_type = 'glass'; | |
| function onGesture(name) { | |
| WS.log('gesture: '+name); | |
| if (name == 'TAP' || name == 'WINK') { | |
| WS.log('tap'); | |
| advance(); | |
| } else if (name == 'TWO_TAP' || name == 'DOUBLE_BLINK') { | |
| select(); |
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
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
| </head> | |
| <body style="background:#000; overflow:hidden; margin:0; color:#FFF; margin:40px; font-size:40px;"> | |
| <div id="main"></div> | |
| <script> | |
| // 1. Display "Tap the touchpad to login with your QR code." | |
| // 2. Scan QR code | |
| // 3. Get password |
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
| adb shell am start -a android.intent.action.VIEW -d com.glass.videoglass:// --ez startFromWS true | |
| adb shell screenrecord /sdcard/VideoBlack/screen.mp4 |
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 os | |
| import os | |
| import signal | |
| import subprocess | |
| import shlex | |
| #!/usr/bin/env python | |
| import signal | |
| import sys | |
| def signal_handler(signal, frame): | |
| #os.killpg(pro.pid, signal.SIGTERM) |
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
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
| <script src="https://rawgit.com/Glench/fuzzyset.js/master/lib/fuzzyset.js"></script> | |
| <link href='https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700' rel='stylesheet' type='text/css'> | |
| <style> | |
| body { | |
| font-family:roboto; | |
| font-weight:100; |
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
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <body style="width:100%; height:100%; overflow:hidden; margin:0" bgcolor="#000"> | |
| <script type="text/javascript" src="http://yourjavascript.com/27943214444/ccv.js"></script> | |
| <script type="text/javascript" src="http://yourjavascript.com/47473214320/face.js"></script> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
| <p id="data" style="color: red; font-size: 30px; width: 100px"></p> | |
| <canvas id="output"></canvas> | |
| <script> | |
| WS.log("starting"); | |
| image = document.createElement('img'); |
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
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <body style="width:100%; height:100%; overflow:hidden; margin:0; color:#FFF"> | |
| Myo2 | |
| <script> | |
| function server() { | |
| WS.myoPair(WS.myoTrain); | |
| WS.gestureCallback('onMyo', function (x) { | |
| WS.say(x); | |
| }); | |
| WS.sensorOn('myoOrientation', .15, function (data) { |