Skip to content

Instantly share code, notes, and snippets.

@setapolo
Created May 4, 2020 02:17
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/e6f6bb09a583572d29963e9a33617d2b to your computer and use it in GitHub Desktop.
Save setapolo/e6f6bb09a583572d29963e9a33617d2b to your computer and use it in GitHub Desktop.
titanic.csv
<!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,onclick:function(e){
console.log(e);
console.log(this);
document.getElementById("out").innerText=this.innerText;
}});
});
// 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/blaze/3.6.3/blaze.min.css")
("rel")("stylesheet")()
(/H2/)
("innerHTML")("titanic")()
(/div/)("innerHTML")(`
this is test
`)("id")("out")()
(/button/)
("className")("c-button")
("type")("button")
("innerHTML")("Button")
("onclick")(function(){window.alert("a")})
()
(readData)
("url")("https://gist.githubusercontent.com/SiddTim/11e8203e2fca4aa2ce1fb384c0e75b65/raw/404ce52c314a138bedeef97dd7e5834d8fa3caf1/titanic.csv")
("querySelector")("img")
()
;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment