-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dced684
Showing
19 changed files
with
1,003 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
var server = require("./server"); | ||
var router = require("./router"); | ||
var requestHandlers = require("./requestHandlers"); | ||
|
||
var handle = {} | ||
handle["/"] = requestHandlers.start; | ||
handle["/start"] = requestHandlers.start; | ||
handle["/upload"] = requestHandlers.upload; | ||
|
||
server.start(router.route, handle); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Pragma" content="no-cache"> | ||
<title>My aquarium</title> | ||
<script type='text/javascript' src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | ||
<script type='text/javascript'> | ||
$(document).ready(function() { | ||
setInterval(function(){ | ||
$('#webcam_img').attr({'src': "/webcam/webcam.jpeg?foo=" + new Date().getTime()}); | ||
}, 6000); | ||
}); | ||
</script> | ||
</head> | ||
<body style="background:black"> | ||
<center style='margin-top:50px'><img id="webcam_img" src="/webcam/webcam.jpeg" /></center> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
108 changes: 108 additions & 0 deletions
108
node_modules/url/node_modules/querystring/querystring.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file added
BIN
+93.7 KB
node_modules/url/node_modules/querystring/tests/.test-querystring.js.un~
Binary file not shown.
203 changes: 203 additions & 0 deletions
203
node_modules/url/node_modules/querystring/tests/test-querystring.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.