Skip to content

Instantly share code, notes, and snippets.

View BrianHillman's full-sized avatar

Brian Hillman BrianHillman

  • student
  • Pennington nj
View GitHub Profile
Running AutomationTool...
path="..\..\..\Engine\Plugins\Slate\SlateRemote\Binaries\Win64;..\..\..\Engine\Plugins\ScriptPlugin\Binaries\Win64;..\..\..\Engine\Plugins\ScriptGeneratorPlugin\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\WindowsMoviePlayer\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\WindowsDeviceProfileSelector\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\TwitchLiveStreaming\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\SoundVisualizations\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\SoundMod\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\OculusRift\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\LiveEditorListenServer\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\LeapMotionController\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\IOSDeviceProfileSelector\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\GearVR\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\ExampleDeviceProfileSelector\Binaries\Win64;..\..\..\Engine\Plugins\Runtime\CustomMeshComponent\Binaries\Win64;..\..\..\Engine\Plugins\R
This file has been truncated, but you can view the full file.
LogInit: Version: 4.7.0-0+++depot+UE4-Releases+4.7
LogInit: API Version: 0
LogInit: Compiled (64-bit): Feb 15 2015 12:23:03
LogInit: Compiled with Visual C++: 18.00.30723.00
LogInit: Build Configuration: Development
LogInit: Branch Name: ++depot+UE4-Releases+4.7
LogInit: Command line:
LogInit: Base directory: F:/Media/dev/UnrealEngine-4.7/Engine/Binaries/Win64/
LogInit: Rocket: 0
LogTaskGraph: Started task graph with 3 named threads and 6 total threads.
function subscribeToStreams(streams) {
console.log('subscribeToStreams');
for (var ii = 0; ii < streams.length; ii++) {
console.log('stream ii: ' + streams.length + ', StreamName: ' + streams[ii].name);
var div = document.createElement('div');
div.setAttribute('id', 'stream' + streams[ii].streamId);
div.setAttribute('class', 'col-md-2');
var streamsContainer = document.getElementById('streamsContainer');
"OT.setLogLevel(5)" TB.js:907
"OpenTok JavaScript library v2.2.4.1" TB.js:907
"Release notes: http://www.tokbox.com/opentok/webrtc/docs/js/release-notes.html" TB.js:907
"Known issues: http://www.tokbox.com/opentok/webrtc/docs/js/release-notes.html#knownIssues" TB.js:907
"OT.setLogLevel(5)" TB.js:907
"Joining:middle" green:214
"Creating session with id: 2_MX4xMDEyMDYwMn4xMjcuMC4wLjF-VHVlIFNlcCAwMiAxMzoxODowMCBQRFQgMjAxNH4wLjc5Mjk2MzF-fg" opentok2vivox.js:8
"The addEventListener() method is deprecated. Use on() or once() instead." TB.js:907
"Creating session with id: 1_MX4xMDEyMDYwMn4xMjcuMC4wLjF-VHVlIFNlcCAwMiAxMzoxNzo1OSBQRFQgMjAxNH4wLjc2MDcyODY2fn4" opentok2vivox.js:8
"The addEventListener() method is deprecated. Use on() or once() instead." TB.js:907
@BrianHillman
BrianHillman / cds
Created December 7, 2012 06:23
cds
sam|y|rutgers
jane|y|rutgers
michele|y|cornell
sergei|y|rutgers
ricardo|y|penn state
kaitlin|y|rutgers
samir|n
aparna|y|rutgers
ming|y|penn state
nick|y|penn state
.file "mystery.c"
.text
.globl mystery
.type mystery, @function
mystery:
pushq %rbp
movq %rsp, %rbp
movl %edi, -20(%rbp)
movl $1, -16(%rbp)
% LaTeX file for resume
% This file uses the resume document class (res.cls)
\documentclass{res}
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent} % uses new century schoolbook postscript font
\setlength{\textheight}{9.5in} % increase text height to fit on 1-page
\begin{document}
import serial
import pymongo
from datetime import datetime
def parseData(data):
timestamp = calendar.timegm(datetime.now().utctimetuple())
data = "".join(x for x in data if x.isalpha())
return {"time":timestamp*1000 , "user":data,"lat":40.4848,"lon":-744367 }
dbConnection = pymongo.Connection("localhost",27017) #default port, change if needed
import serial
import pymongo
from datetime import datetime
def parseData(data):
data = "".join(str(x) for x in data if str(x).isalpha())
return {"time":str(datetime.now())*1000 , "user":data,"lat":40.4848,"lon":-744367 }
dbConnection = pymongo.Connection("172.31.76.213",27017) #default port, change if needed
db = dbConnection.test
import serial
import pymongo
from datetime import datetime
def parseData(data):
data = "".join(str(x) for x in data if str(x).isalpha())
return {"time":str(datetime.now())*1000 , "user":data,"lat":40.4848,"lon":-744367 }
dbConnection = pymongo.Connection("172.31.76.213",27017) #default port, change if needed
db = dbConnection.test