Other misc changes to python scripts and init pushed

This commit is contained in:
2017-01-29 18:36:36 +01:00
parent d24067b5e0
commit 48f27a27a5
297 changed files with 47322 additions and 0 deletions

6
0.1server.js Normal file
View File

@@ -0,0 +1,6 @@
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8124, "10.0.0.70");
console.log('Server running at http://10.0.0.70:8124/');