Skip to content

Instantly share code, notes, and snippets.

@setapolo
Created May 2, 2020 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save setapolo/d683490201399c66b3abd5766e6ab1f2 to your computer and use it in GitHub Desktop.
Save setapolo/d683490201399c66b3abd5766e6ab1f2 to your computer and use it in GitHub Desktop.
iris
<!DOCTYPE html>
<html>
<script>
readData=function(){
return function(a){
var url = a['url'];
var tag = a['querySelector'];
fetch(url).then(function(response) {
return response.text();
}).then(function(text) {
table = ferrorod("table")(document.body)({innerHTML:"",border:"1"});
text.split(/\n/).map(function(c,i){
tr =ferrorod("tr")(table)({innerHTML:""});
c.split(/,/).map(function(cc,ii){
td =(i==0)?ferrorod("th")(tr)({innerHTML:cc}):ferrorod("td")(tr)({innerHTML:cc});
});
// var a_tag=ferrorod("div")(document.body)({href:"https://www.google.com/search?q="+c.split(/ /)[c.split(/ /).length-1],innerHTML:c,className:"cm-text-primary"});
// ferrorod("div")(document.body)({innerHTML:s});
} );
});
}
}
</script>
</html>
<script type="text/javascript">
//CCas Closure Cascading v.0.03 2020/3/28 moka
(function (g,flg){
g.ferrorod=function(s){
return function(p){
return function(a){
var e = document.createElement(s);
Object.keys(a).map(function(c,i){
e.setAttribute(c,a[c]);
});
e = Object.assign(e,a);
p.appendChild(e);
return e
}
}
};
return function(d,flg){
var a={};
var aa=[null];
var aaa=[];
var lv=[document.body];
var k=null;
var parent=document.body;
var f= function(c){
var _f = (typeof c=="function")?c:null;
(typeof c=="object")?(function(){
_f=(c.source)?ferrorod(c.source):_f;
}()):0;
(k==null)?(_f!=null)?function(){
aaa.push(a);
aa.push(_f);
a={};
}():0:0;
(c==null)?(function(){
(a!=null)?(aaa.push(a)):0;
aa.map(function(cc,i){
parent = (cc!=null)?cc(lv[lv.length -1])(aaa[i]):document.body;
(parent != document.body)?lv.push(parent):0;
});
lv.pop();
aaa=[];
aa=[null];
})():0;
var v =(k != null)?c:null;
k=(typeof c=="string")?(k==null)?c:k:k;
((k!=null)&&(v!=null))?a[k]=v:0;
k=((k!=null)&&(v!=null))?null:k;
return f;
}
return f;
};
})(window)
(document)
(/link/)
("href")("https://cdnjs.cloudflare.com/ajax/libs/eqcss/1.9.2/EQCSS.min.js")
("rel")("stylesheet")()
(/H2/)
("innerHTML")("iris")()
(/div/)("innerHTML")(`
`)()
(readData)
// ("url")("https://www.w3.org/TR/PNG/")
("url")("https://gist.githubusercontent.com/JPGarGo/c97709f13346fadea250e61e60293e90/raw/06e08e3729ae96bcf5b98cb677f3ef1dbc40418c/iris")
("querySelector")("img")
()
;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment