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
'use strict'; | |
var http = require('http'); | |
var util = require('util'); | |
var querystring = require('querystring'); | |
function generateEmail() { |
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
const http = require('http'); | |
const net = require('net'); | |
const url = require('url'); | |
var proxy = http.createServer( (req, res) => { | |
res.writeHead(400, {'Content-Type': 'text/plain'}); | |
res.end('400 Bad Request'); | |
}); | |
var processsocket = (req, cltSocket, head) => { |
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 Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:ed6cd4003fd31924f498526a6103c0b5b30c2d56] |
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 Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:ed6cd4003fd31924f498526a6103c0b5b30c2d56] |
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
'use strict'; | |
const http = require('http'); | |
const qs = require('querystring') | |
const url = require('url'); | |
const util = require('util') | |
const request = require('request') | |
var ip; |
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 Bypass Mokee Ad | |
// @namespace http://jsw3286.eu.org/ | |
// @version 0.2.1 | |
// @updateURL https://gist.github.com/wfjsw/e277bf480f02fcde07c747491f5e1336/raw/bypass_mk_ad.meta.js | |
// @downloadURL https://gist.github.com/wfjsw/e277bf480f02fcde07c747491f5e1336/raw/bypass_mk_ad.user.js | |
// @description Bypass Mokee Advertisement | |
// @author Jabasukuriputo Wang | |
// @match https://download.mokeedev.com/download.php | |
// ==/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
#!/bin/bash | |
############################## | |
# dnspodsh v0.3 | |
# 基于dnspod api构架的bash ddns客户端 | |
# 作者:zrong(zengrong.net) | |
# 详细介绍:http://zengrong.net/post/1524.htm | |
# 创建日期:2012-02-13 | |
# 更新日期:2012-03-11 | |
############################## |
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
// ARTIFACT /////////////////////////////////////////////////////// | |
// added as part of the ingress #13magnus in november 2013, artifacts | |
// are additional game elements overlayed on the intel map | |
// currently there are only jarvis-related entities | |
// - shards: move between portals (along links) each hour. more than one can be at a portal | |
// - targets: specific portals - one per team | |
// the artifact data includes details for the specific portals, so can be useful | |
// 2014-02-06: intel site updates hint at new 'amar artifacts', likely following the same system as above |
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== | |
// @id iitc_patch_artifact01 | |
// @name WFENL-Toolkit IITC plugin: Fix Artifact Target Team Recognize | |
// @category Hack | |
// @version 0.0.1.20170130.000005 | |
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
// @updateURL https://gist.github.com/wfjsw/058602d9a4653a9a05d7bd873217936a/raw/artifact-patch-01.meta.js | |
// @downloadURL https://gist.github.com/wfjsw/058602d9a4653a9a05d7bd873217936a/raw/artifact-patch-01.user.js | |
// @include https://*.ingress.com/intel* | |
// @include http://*.ingress.com/intel* |
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
'use strict'; | |
var fs = require('fs') | |
var args = process.argv.slice(2); | |
// From https://github.com/lodash/lodash/blob/4.17.4/lodash.js#L6891 | |
function compact(array) { | |
var index = -1, | |
length = array == null ? 0 : array.length, |