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:58
lexicon-rainbow example: serverDownTime
license: cc-by-nc-nd-4.0
height: 1000
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / .block
Last active September 28, 2019 15:17
lexicon-rainbow example: US votes 2016
license: cc-by-nc-nd-4.0
height: 700
width: 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: RandomDataset
license: cc-by-nc-nd-4.0
height: 1000
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 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
license: cc-by-nc-nd-4.0
height: 1000
width: 1000
scrolling: yes
@IbrahimTanyalcin
IbrahimTanyalcin / taskq.js
Last active October 25, 2017 12:38
Async modules with ES5
!function(){
var oScript = document.querySelector("script[src*='taskq.js']"),
name = oScript.getAttribute("global-name") || "taskq",
taskq = window[name] = new function(){
var tasks = [],
exports = {};
this.flush = function(){
tasks = [];
exports = {};
return this;
@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);
}()