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
| <?xml version="1.0" encoding="utf-8"?> | |
| <wsdl:definitions name="InstitutionDepositServiceV402" targetNamespace="http://www.wausaufs.com/MobileCapture/v4.0.2" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsx="http://schemas.xmlsoap.org/ws/2004/09/mex" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsa10="http://www.w3.org/2005/08/addressing" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsap="http://schemas.xmlsoap.org/ws/2004/08/addressing/policy" xmlns:msc="http://schemas.microsoft.com/ws/2005/12/wsdl/contract" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.wausaufs.com/MobileCapture/v4.0.2" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:soapenc="http://schemas.xmlsoap.org/soap |
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 serial | |
| import ringbuffer | |
| import numpy as np | |
| import time | |
| import threading | |
| import matplotlib | |
| #matplotlib.use('TKAgg') | |
| from matplotlib import animation | |
| from matplotlib.lines import Line2D | |
| from matplotlib import pyplot as plt |
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
| # FROM debian:jessie | |
| FROM php:5.6-apache | |
| MAINTAINER Preston Tighe | |
| ## Install | |
| RUN apt-get update | |
| # Apache server name | |
| RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf |
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
| #A sample database config file for 4Virtual's webhooks | |
| #Create database | |
| DROP DATABASE IF EXISTS Sample_Virtuals; | |
| CREATE DATABASE IF NOT EXISTS Sample_Virtuals; | |
| USE Sample_Virtuals; | |
| #Create a database user | |
| GRANT ALL ON Sample_Virtuals.* TO user1@localhost IDENTIFIED BY 'pass123'; |