This file contains hidden or 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
| var Firebase = require("firebase"); | |
| var express = require("express"); | |
| // Create HTTP Server | |
| var app = express(); | |
| var server = require("http").createServer(app); | |
| // Attach Socket.io server | |
| var io = require("socket.io")(server); | |
| // Indicate port 3000 as host | |
| var port = process.env.PORT || 3000; |
This file contains hidden or 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
| /* | |
| * Based on https://raw.githubusercontent.com/usefulfor/usefulfor/master/security/JBoss.java | |
| * | |
| * JBoss.java - Blowfish encryption/decryption tool with JBoss default password | |
| * Daniel Martin Gomez <daniel@ngssoftware.com> - 03/Sep/2009 | |
| * | |
| * This file may be used under the terms of the GNU General Public License | |
| * version 2.0 as published by the Free Software Foundation: | |
| * http://www.gnu.org/licenses/gpl-2.0.html | |
| */ |
NewerOlder