Fixed missing space for "performing dns lookups" removed users route from app.js
This commit is contained in:
parent
8948cd9e49
commit
6c0bf2ada3
10
app.js
10
app.js
@ -3,11 +3,10 @@
|
||||
* Module dependencies.
|
||||
*/
|
||||
|
||||
var express = require('express');
|
||||
var routes = require('./routes');
|
||||
var user = require('./routes/user');
|
||||
var http = require('http');
|
||||
var path = require('path');
|
||||
var express = require('express'),
|
||||
routes = require('./routes'),
|
||||
http = require('http'),
|
||||
path = require('path');
|
||||
|
||||
var app = express();
|
||||
|
||||
@ -28,7 +27,6 @@ if ('development' == app.get('env')) {
|
||||
}
|
||||
|
||||
app.get('/', routes.index);
|
||||
app.get('/users', user.list);
|
||||
|
||||
http.createServer(app).listen(app.get('port'), function(){
|
||||
console.log('Express server listening on port ' + app.get('port'));
|
||||
|
@ -11,7 +11,7 @@ canvasBars.width = window.innerWidth/3;
|
||||
canvasBars.height = canvas.height;
|
||||
|
||||
outputConsole.style.height = (window.innerHeight / 3) * 2 + 'px';
|
||||
outputConsole.style.top = window.innerHeight / 3 + 'px'
|
||||
outputConsole.style.top = window.innerHeight / 3 + 'px';
|
||||
|
||||
|
||||
/* Graphics stuff */
|
||||
@ -53,7 +53,7 @@ Square.prototype.update = function () {
|
||||
}
|
||||
this.points[p].map2D();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Square.prototype.render = function () {
|
||||
ctx.beginPath();
|
||||
@ -93,7 +93,7 @@ Point.prototype.rotateZ = function (angleZ) {
|
||||
|
||||
this.x = x1;
|
||||
this.y = y1;
|
||||
}
|
||||
};
|
||||
|
||||
Point.prototype.map2D = function () {
|
||||
var scaleX = focal / (focal + this.z + this.cZ),
|
||||
@ -119,7 +119,8 @@ for (var i = 0; i < 15; i++) {
|
||||
ctx.strokeStyle = ctxBars.strokeStyle = ctxBars.fillStyle = '#00FF00';
|
||||
|
||||
/* fake console stuff */
|
||||
var commandStart = ['Performing DNS Lookups for',
|
||||
var commandStart = [
|
||||
'Performing DNS Lookups for ',
|
||||
'Searching ',
|
||||
'Analyzing ',
|
||||
'Estimating Approximate Location of ',
|
||||
@ -129,15 +130,19 @@ var commandStart = ['Performing DNS Lookups for',
|
||||
'tar -xzf ',
|
||||
'Entering Location ',
|
||||
'Compilation Started of ',
|
||||
'Downloading '],
|
||||
commandParts = ['Data Structure',
|
||||
'Downloading '
|
||||
],
|
||||
commandParts = [
|
||||
'Data Structure',
|
||||
'http://wwjd.com?au&2',
|
||||
'Texture',
|
||||
'TPS Reports',
|
||||
' .... Searching ... ',
|
||||
'http://zanb.se/?23&88&far=2',
|
||||
'http://ab.ret45-33/?timing=1ww'],
|
||||
commandResponses = ['Authorizing ',
|
||||
'http://ab.ret45-33/?timing=1ww'
|
||||
],
|
||||
commandResponses = [
|
||||
'Authorizing ',
|
||||
'Authorized...',
|
||||
'Access Granted..',
|
||||
'Going Deeper....',
|
||||
@ -174,7 +179,7 @@ function render() {
|
||||
for(i = 0; i < canvasBars.width; i++){
|
||||
var ran = (Math.random()*20)-10;
|
||||
if(Math.random() > 0.98){
|
||||
ran = (Math.random()*50)-25
|
||||
ran = (Math.random()*50)-25;
|
||||
}
|
||||
ctxBars.lineTo(i, y + ran);
|
||||
}
|
||||
@ -217,6 +222,7 @@ function consoleOutput(){
|
||||
isProcessing = true;
|
||||
processTime = ~~(Math.random()*5000);
|
||||
lastProcess = Date.now();
|
||||
break;
|
||||
default:
|
||||
textEl.textContent = commandResponses[~~(Math.random()*commandResponses.length)];
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user