Skip to content

Instantly share code, notes, and snippets.

View GleasonK's full-sized avatar

Kevin Gleason GleasonK

View GitHub Profile
@GleasonK
GleasonK / 01.html
Last active May 7, 2016 10:03
BasicRTC WebRTC Video Chat and Groups
<div id="vid-box"></div>
<div id="vid-thumb"></div>
<form name="loginForm" id="login" action="#" onsubmit="return login(this);">
<input type="text" name="username" id="username" placeholder="Pick a username!" />
<input type="submit" name="login_submit" value="Log In">
</form>
<form name="callForm" id="call" action="#" onsubmit="return makeCall(this);">
@GleasonK
GleasonK / 01.html
Last active February 2, 2019 15:27
SimpleRTC Demo Code
<div id="vid-box"></div>
<form name="loginForm" id="login" action="#" onsubmit="return login(this);">
<input type="text" name="username" id="username" placeholder="Pick a username!" />
<input type="submit" name="login_submit" value="Log In">
</form>
<form name="callForm" id="call" action="#" onsubmit="return makeCall(this);">
<input type="text" name="number" placeholder="Enter user to dial!" />
<input type="submit" value="Call"/>
@GleasonK
GleasonK / 01.html
Last active August 29, 2015 14:23
Polymer 1.0 To-Do App
<link rel="import" href="paper-fab">
...
<paper-fab icon="send"></paper-fab>
@GleasonK
GleasonK / detector.py
Created June 12, 2015 22:07
OpenCV Detector
import cv2
class Detector():
def __init__(self, image_name):
self.image_name = image_name # The image file name
self.image = [] # OpenCV image array
self.drawn = 0 # Count of how many detector-boxes have been drawn
self.drawColors = [(255,0,0),(0,255,0),(0,0,255),(255,255,0),(255,0,255),(0,255,255)] #RGB Values
self.path = "xml/" # The path to the haarcascades data xml files
self.rects = [] # Discovered rectangles from Image Analysis
@GleasonK
GleasonK / 01.py
Last active October 18, 2017 23:06
[Blog] DIY Hue Lightbulb with Android Control
#!/usr/bin/python
import time
import RPi.GPIO as GPIO
from pubnub import Pubnub
@GleasonK
GleasonK / 01.html
Last active August 29, 2015 14:21
[Blog] Turn Your Smartphone into an Elegant Gamepad with PubNub and Polymer
<!-- First Import: -->
<link rel="import" href="paper-fab.html">
...
<!-- Then use: -->
<paper-fab icon="send"></paper-fab>
@GleasonK
GleasonK / AtomicNameCSS.html
Created April 18, 2014 17:15
A simple way to use CSS to create an animated atomic orbital logo
<html lang="en-US">
<head>
<!-- <link href="CSSGist.css" rel="stylesheet" type="text/css"> -->
<style>
#orbit-case{
width: 500px;
height:500px;