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
| function xdomain(par){//crossdomain function | |
| par.xpath=par.xpath==undefined?"*":par.xpath; | |
| par.type=par.type==undefined?"xml":par.type; | |
| var xmlhttp=new XMLHttpRequest(); | |
| par.url = 'http://query.yahooapis.com/v1/public/yql?q='+encodeURIComponent('select * from html WHERE url="'+par.url+'" AND xpath="'+par.xpath+'"')+'&format='+par.type+'&callback=cb'; | |
| xmlhttp.open("GET",par.url,false); | |
| xmlhttp.onload=function(){ | |
| function cb(d){return d;}//callBack function for returning results from query | |
| par.callBack(eval(xmlhttp.responseText)); | |
| }; |
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
| (function() { | |
| 'use strict'; | |
| Object.getOwnPropertyNames(console).filter(function(property) { | |
| return typeof console[property] == 'function'; | |
| }).forEach(function (verb) { | |
| console[verb] =function(){return 'Sorry, for security reasons...';}; | |
| }); | |
| window.addEventListener('devtools-opened', ()=>{ | |
| // do some extra code if needed or ... | |
| // maybe even delete the page, I still like to add redirect just in case |
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
| <html> | |
| <body> | |
| <span id='counter' style='position:fixed;bottom:10px;right:10px;color:white;background:black;padding:10px;'></span> | |
| </body> | |
| <script> | |
| Object.defineProperty(Array.prototype,'onPassLast',{//function to execute after the last pass of the array element | |
| get: function(){this.onPassLastFN(this)}, | |
| set: function(fn){this.onPassLastFN=fn;} | |
| }); |
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
| function heatMapColorforValue(value,alpha,max){ | |
| alpha=100*alpha; | |
| value=value/max; | |
| var h = parseInt((1.0 - value) * 240) | |
| return "hsl(" + h + "deg 100% 50% / "+alpha+"%)"; | |
| } |
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.defineProperty(Number.prototype,'int2roman',{ | |
| get: function(){ | |
| const map = { | |
| M: 1000, | |
| CM: 900, | |
| D: 500, | |
| CD: 400, | |
| C: 100, | |
| XC: 90, | |
| L: 50, |
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
| HTMLElement.prototype.changeValueDetection = function(){ | |
| var element=this; | |
| var oldVal=element.value; | |
| var GUID = function (){var S4 = function () {return(Math.floor(Math.random() * 0x10000).toString(16));};return (S4() + S4() + "-" +S4() + "-" +S4() + "-" +S4() + "-" +S4() + S4() + S4());}; | |
| var uiq="GUID-"+GUID(); | |
| if(window.changeValueDetectionEvents==undefined)window.changeValueDetectionEvents=new Event('changeValueDetection'); | |
| element.setAttribute("data-uiq",uiq); | |
| window[uiq]=setInterval(function(){ | |
| if(element.value!=oldVal){ | |
| oldVal=element.value;element.setAttribute("value",oldVal); |
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
| function tableToExcel(p){ | |
| var dlink=document.createElement('a'); | |
| document.body.appendChild(dlink); | |
| var uri='data:application/vnd.ms-excel;base64,'; | |
| var template='<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"></head><body><table>{table}</table></body></html>'; | |
| var base64=function(s){return window.btoa(unescape(encodeURIComponent(s)));}; | |
| var format=function(s,c){return s.replace(/{(\w+)}/g,function(m,p){return c[p];});}; | |
| if(!p.table.nodeType) p.table = document.getElementById(p.table); | |
| var ctx = { worksheet: p.worksheet || 'Worksheet', table: p.table.innerHTML }; | |
| dlink.h |
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 dps=function(p){ | |
| this.desc="Class for providing the sequence of interdependent scripts that should be loaded into the Web page"; | |
| this.loadCSS=function(url,cb){ | |
| var style=document.createElement("link"); | |
| style.href=url+"?"+new Date().getTime(); | |
| style.rel="stylesheet"; | |
| document.head.appendChild(style); | |
| style.onload=function(){if(cb!=undefined)cb(style);}; | |
| }; | |
| this.loadJS=function(url,cb){ |
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
| document.querySelector("input").addEventListener('keyup',function(){ | |
| var pom=document.createElement("textarea"); | |
| document.body.appendChild(pom); | |
| pom.value=this.value; | |
| pom.select(); | |
| try { | |
| document.execCommand('copy'); | |
| pom.parentNode.removeChild(pom); | |
| this.focus(); | |
| } |
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.defineProperty(String.prototype,'lat2cir',{get:function(){return this.toString().replace(/A/g,"А").replace(/B/g,"Б").replace(/V/g,"В").replace(/G/g,"Г").replace(/DŽ/g,"Џ").replace(/Dž/g,"Џ").replace(/Đ/g,"Ђ").replace(/DJ/g,"Ђ").replace(/Dj/g,"Ђ").replace(/D/g,"Д").replace(/E/g,"Е").replace(/Ž/g,"Ж").replace(/Z/g,"З").replace(/I/g,"И").replace(/K/g,"К").replace(/LJ/g,"Љ").replace(/Lj/g,"Љ").replace(/L/g,"Л").replace(/M/g,"М").replace(/NJ/g,"Њ").replace(/Nj/g,"Њ").replace(/J/g,"Ј").replace(/N/g,"Н").replace(/O/g,"О").replace(/P/g,"П").replace(/R/g,"Р").replace(/S/g,"С").replace(/T/g,"Т").replace(/Ć/g,"Ћ").replace(/U/g,"У").replace(/F/g,"Ф").replace(/H/g,"Х").replace(/C/g,"Ц").replace(/Č/g,"Ч").replace(/Š/g,"Ш").replace(/a/g,"а").replace(/b/g,"б").replace(/v/g,"в").replace(/g/g,"г").replace(/dž/g,"џ").replace(/đ/g,"ђ").replace(/dj/g,"ђ").replace(/d/g,"д").replace(/e/g,"е").replace(/ž/g,"ж").replace(/z/g,"з").replace(/i/g,"и").replace(/k/g,"к").replace(/lj/g,"љ").replace(/l/g,"л").replace(/m/g,"м").replace |
NewerOlder