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
<?php | |
$host = $_GET['ip']; | |
$port = $_GET['port']; | |
function pingserver($host, $port=25565, $timeout=30) { | |
//Set up our socket | |
$fp = fsockopen($host, $port, $errno, $errstr, $timeout); | |
if (!$fp) return false; | |
//Send 0xFE: Server list ping | |
fwrite($fp, "\xFE"); |
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
<!DOCTYPE html> | |
<head> | |
<title>Testing</title> | |
<meta charset="UTF-8"> | |
</head> | |
<body> | |
<p class="example-class">Example Text</p> | |
</body> |
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
/** | |
* USD Currency Checker | |
* Checks a article of currency if it has been used in a fradulent transaction. | |
* @author Zeke Sonxx (https://github.com/zekesonxx) | |
* @license MIT | |
*/ | |
/** | |
* Checks a USD bill for fradulant activity |
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
if (true) { | |
"This makes sense, because the } closes the if" | |
} | |
command.function(1, 4, function() { | |
"This also makes sense, because it is a async callback" | |
}); | |
angular.hasStupidPatterns('CtrlThis', ['$scope', '$http', function($scope, $http) { | |
"This looks ugly" |
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
_____ _____ | |
/|--| \ / |--|\ | |
/ |--| \ / |--| \ | |
/ |--| \ / |--| \ | |
|--| \ / |--| | |
|--| \ / |--| | |
|--| \/ |--| | |
---|--|--------------|--|--- | |
| |--| | | | | |--| | | |
---|--|--------------|--|--- |
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
Public Function EncryptDecrypt(ByVal text1 As String, ByVal key As String, ByVal isEncrypt As Boolean) As String | |
Dim char1 As String | |
Dim char2 As String | |
Dim cKey As Byte | |
Dim strLength As Integer | |
Dim Result As String = "" | |
Dim j As Integer = -1 | |
If text1 <> "" And IsNumeric(key) Then | |
strLength = text1.Length | |
For i As Integer = 0 To strLength - 1 |
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
app.use(function (req, res, next) { | |
function atRandom (opt) { | |
var selected = Math.floor(Math.random()*(opt.length)); | |
return opt[selected]; | |
} | |
//amusing headers | |
var servers = [ | |
'Apache', |
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
import hexchat | |
import json | |
import httplib | |
# HexChat Escapecraft IRC Plugin | |
# Copyright (C) 2014 Zeke Sonxx <github.com/zekesonxx> | |
# License: MIT - choosealicense.com/licenses/mit/ | |
# ## Features ### | |
# - Rewrites messages from the bots to look nicer. |
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
// ==UserScript== | |
// @name Steam Link Filter Bypass | |
// @author Zeke Sonxx | |
// @namespace zekesonxx | |
// @version 0.2 | |
// @description Bypasses the Steam link filter | |
// @match https://steamcommunity.com/linkfilter/* | |
// @include https://steamcommunity.com/linkfilter/* | |
// @copyright 2014, Zeke Sonxx, MIT Licensed | |
// ==/UserScript== |
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
/* jshint undef: true, node: true, quotmark: single, indent: 2 */ | |
'use strict'; | |
/** | |
* Zeke's World of Warcraft Gold Parsing Tool | |
* https://gist.github.com/zekesonxx/78086f53a16cff33ed9e | |
* Copyright (C) Zeke Sonxx 2014. | |
* Licensed under the MIT License <choosealicense.com/licenses/mit> | |
* @author Zeke Sonxx <github.com/zekesonxx> | |
* @version 1.0.0 |
OlderNewer