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 crc32; | |
(function(){ | |
var crcTableTable = []; | |
function buildTable(polynomial) { | |
var table = []; | |
function reverse(x, n) { | |
var b = 0; | |
while (n) { | |
b = b * 2 + x % 2; | |
x /= 2; |
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
Object.prototype.toJSONString = function () { | |
var i, x, content, returnValue; | |
if (this instanceof Array) { | |
for (i = 0; i < this.length; i++) { | |
if (this[i] !== undefined) { | |
if (this[i] != null) { | |
content = content ? (content + "," + this[i].toJSONString()) : this[i].toJSONString(); | |
} else { | |
content = content ? (content + "," + "null") : "null"; | |
} |
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
<?php | |
/** | |
* Minecraft server status fallback class | |
* Read the simple server info wich are actually for minecraft clients | |
* @author Patrick K. - http://www.silexboard.org/ - https://github.com/NoxNebula | |
* @license GNU Public Licence - Version 3 | |
* @copyright c 2011-2013 Patrick K. | |
*/ | |
/** |
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
<?php | |
/** | |
* Minecraft server status fallback class | |
* Read the simple server info wich are actually for minecraft clients | |
* @author Patrick K. - http://www.silexboard.org/ - https://github.com/NoxNebula | |
* @license GNU Public Licence - Version 3 | |
* @copyright c 2011-2013 Patrick K. | |
*/ | |
/** |
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
<?php | |
/*by mmis1000 : All thanks to the original auther*/ | |
/** | |
* Minecraft server status fallback class | |
* Read the simple server info wich are actually for minecraft clients | |
* @author Patrick K. - http://www.silexboard.org/ - https://github.com/NoxNebula | |
* @license GNU Public Licence - Version 3 | |
* @copyright c 2011-2013 Patrick K. | |
*/ | |
/** |
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
--Do not remove this if you are using-- | |
Original Author: Remiz Rahnas | |
Original Author URL: http://www.htmlremix.com | |
Published date: 2008/09/24 | |
Changes by Nick Fetchak: | |
- IE8 standards mode compatibility | |
- VML elements now positioned behind original box rather than inside of it - should be less prone to breakage | |
Published date : 2009/11/18 |
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
body, html { | |
background:#222222; | |
color:#444444; | |
} | |
img { | |
max-width:100%; | |
} | |
.mainwrap { | |
position:fixed; | |
top:0px; |
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
#video { | |
display:none; | |
} | |
#canvas { | |
max-width:100%; | |
max-height:100%; | |
} | |
#mainwrap { | |
position:fixed; | |
top:0px; |
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
{ | |
"description": "「狼與辛香料」社團服", | |
"players": { | |
"max": 20, | |
"online": 1, | |
"sample": [{ | |
"id": "3cb812f66a9b3a87b89817468a7d0406", | |
"name": "sky303593" | |
}] | |
}, |
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
// http://www.ietf.org/rfc/rfc1928.txt | |
// Tested with: curl http://www.google.se/ --socks5 1080 --proxy-user foo:bar | |
var wsServer = "ws://127.0.0.1:34689"; | |
var States = { | |
CONNECTED:0, | |
VERIFYING:1, | |
READY:2, | |
PROXY: 3 |
OlderNewer