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
/* | |
Developed by Ron Dagdag | |
Email: [email protected] | |
*/ | |
'use strict'; | |
let http = require('http'); | |
var AWS = require("aws-sdk"); | |
const dynamoTableName = "MoneyConverter"; | |
// Route the incoming request based on type (LaunchRequest, IntentRequest, |
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
/* | |
Developed by Ron Dagdag | |
Email: [email protected] | |
*/ | |
'use strict'; | |
let http = require('http'); | |
// Route the incoming request based on type (LaunchRequest, IntentRequest, | |
// etc.) The JSON body of the request is provided in the event parameter. |
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
/* | |
Developed by Ron Dagdag | |
Email: [email protected] | |
*/ | |
'use strict'; | |
let http = require('http'); | |
var AWS = require("aws-sdk"); | |
// Route the incoming request based on type (LaunchRequest, IntentRequest, |
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
# install dependencies | |
sudo apt-get update | |
sudo apt-get install -y build-essential | |
sudo apt-get install -y cmake | |
sudo apt-get install -y libgtk2.0-dev | |
sudo apt-get install -y pkg-config | |
sudo apt-get install -y python-numpy python-dev | |
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev | |
sudo apt-get install -y libjpeg-dev libpng-dev libtiff-dev libjasper-dev | |
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
using UnityEngine; | |
using System.Collections; | |
using System; | |
public class CylonCoroutine : MonoBehaviour { | |
public string MoveType = "look_down"; | |
string server = "http://192.168.43.149:3000/"; | |
//string server = "http://192.168.1.25:3000/"; |
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
using UnityEngine; | |
using System.Collections; | |
using CrazyMinnow.SALSA; // Import SALSA from the CrazyMinnow namespace | |
/* | |
Script usage instructions | |
This class demonstrates the use of the RandomEyes 2D/3D [Broadcast Eye Events], | |
and the RandomEyes 3D [Broadcast Custom Shape Events], to catch |
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
using UnityEngine; | |
using System.Collections; | |
using System; | |
using System.Security.Policy; | |
using System.Threading; | |
using Newtonsoft.Json; | |
using Newtonsoft.Json.Linq; | |
using System.Collections.Generic; | |
using System.Net.Sockets; |
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
using UnityEngine; | |
using System.Collections; | |
using System; | |
using System.Security.Policy; | |
using System.Threading; | |
using Newtonsoft.Json; | |
using Newtonsoft.Json.Linq; | |
using WebSocketSharp; | |
using WebSocketSharp.Net; |
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
// ------------------------------------------------------------------------------ | |
/* | |
----------------------- | |
UDP-Receive (send to) | |
----------------------- | |
// [url]http://msdn.microsoft.com/de-de/library/bb979228.aspx#ID0E3BAC[/url] | |
// > receive | |
// 127.0.0.1 : 8051 |
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
// This #include statement was automatically added by the Particle IDE. | |
#include "Kalman/Kalman.h" | |
#include "SparkFunLSM9DS1/SparkFunLSM9DS1.h" | |
#include "math.h" | |
unsigned long lastRead= micros(); | |
char myIpAddress[24]; |