Skip to content

Instantly share code, notes, and snippets.

View IbrahimTanyalcin's full-sized avatar
☸️
revisiting-old-concepts.reinventing-the-wheel.☸

Ibrahim Tanyalcin IbrahimTanyalcin

☸️
revisiting-old-concepts.reinventing-the-wheel.☸
View GitHub Profile
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active August 25, 2016 12:56
I-PV - Interactive Protein Sequence Viewer
license: cc-by-nc-nd-4.0
height: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active September 12, 2017 02:53
lexicon-rainbow example: AminoAcids
license: cc-by-nc-nd-4.0
height: 700
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active September 12, 2017 02:54
lexicon-rainbow example: Minimal
license: cc-by-nc-nd-4.0
height: 700
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active September 12, 2017 02:54
lexicon-rainbow example: RandomDataset
license: cc-by-nc-nd-4.0
height: 1000
width: 1000
scrolling: yes
license: cc-by-nc-nd-4.0
height: 1000
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active September 12, 2017 02:58
lexicon-rainbow example: serverDownTime
license: cc-by-nc-nd-4.0
height: 1000
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active September 17, 2017 11:07
lexicon-rainbow example: US votes 2016 with programmatic access
license: cc-by-nc-nd-4.0
height: 700
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / test0.js
Created October 25, 2017 02:30
taskq_test0.js
!function(){
var someObject = {x:3,y:2};
function test0(){
console.log("As test0.js, I will export some object as 'someEntity'");
taskq.export(someObject,"someEntity");
}
test0._taskqId = 0;
taskq.push(test0);
}()
@IbrahimTanyalcin
IbrahimTanyalcin / test1.js
Created October 25, 2017 02:58
taskq_test1.js
!function(){
var somePrivateObject = new (function(){this.y = 99;})
function innerFunc(){
console.log("innerFunc!!");
}
function test1 (someEntity) {
console.log("As test1, I will first execute a function from inner scope,\
then log what is exported as 'someEntity',\
then log 'this',\
and finally export myself as 'testItem'");
@IbrahimTanyalcin
IbrahimTanyalcin / test2.js
Created October 25, 2017 03:16
taskq_test2.js
!function(){
function test(testItem){
console.log("I'll wait for all and then execute the function that is passed to me!");
testItem(5);
}
test._taskqId = "loadend";
test._taskqWaitFor = [0,1];//not necessery if 'loadend' is present above
taskq.push(test);
}()