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
#!/bin/sh | |
if which upsc > /dev/null 2>&1 ; then | |
echo '<<<nut>>>' | |
for ups in $(upsc -l) | |
do | |
upsc $ups| sed "s,^,$ups ," | |
done | |
fi |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Robot Project</title> | |
<script src="/socket.io/socket.io.js"></script> | |
<script> | |
//Damit lesen wir den Gyroskopen aus | |
window.addEventListener("deviceorientation", handleOrientation, true); |
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> | |
<head> | |
<script type="text/javascript" src="lib/inflate_stream.min.js"></script> | |
</head> | |
<body> | |
<h2>Sword Browser Version</h2> | |
<input type="file" id="files" name="files[]"/> | |
<script type="text/javascript" src="sword.js"></script> | |
</body> | |
</html> |