View benchmark.sh
This file contains 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/bash | |
echo --- Deleting | |
rm -f *.jav | |
rm -f *.class | |
echo --- Compiling | |
javac *.java | |
if [ $? -ne 0 ]; then | |
exit |
View timings.log
This file contains 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
------TINY | |
connecting to localhost:18999 | |
listening on port 18999 | |
connected, sending request | |
read input from sample_input/tiny.txt | |
sent request header and 16 bytes of payload data to server | |
received response header, data payload has length 20 | |
received 20 bytes of payload data from server in 68ms | |
wrote output to sample_output/tiny.txt | |
terminated connection to server |
View the-mvc-arduino.ino
This file contains 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
#include <BMI160.h> | |
#include <CurieIMU.h> | |
#include "CurieIMU.h" | |
#include "CurieBLE.h" | |
#include <Math.h> | |
BLEPeripheral blePeripheral; | |
BLEService cursorService("19B10010-E8F2-537E-4F6C-D104768A1214"); | |
BLECharCharacteristic yCharacteristic("19B10012-E8F2-537E-4F6C-D104768A1216", BLERead | BLENotify); |