Skip to content

Instantly share code, notes, and snippets.

View prestontighe's full-sized avatar
😎

Preston Tighe prestontighe

😎
View GitHub Profile
<?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
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
@prestontighe
prestontighe / Dockerfile
Last active July 11, 2017 18:16
XDebug Docker Issue. The Dockerfile is used in the `toozick/smu-arcade-machine-management-console-php-apache:v1` image. Everything with our setup works except XDebug. What could the problem be?
# 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
@prestontighe
prestontighe / Sample_DB_Setup.sql
Created July 26, 2014 19:37
This is a sample webhook handler for 4Virtuals.com. It uses MySQL for the database. Run the Sample_DB_Setup.sql file and send a test webhook event from https://www.4virtuals.com/webhooks/1 to the WebhookHandler4V.php file on your website. This sample is also used in conjunction with the custom invoices button https://www.4virtuals.com/invoices/c…
#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';