Message from JavaScript discussions

November 2017

— Just add some more. I spent 2 years building an algorithm cooperation framework so it's ready for a lot at once

Message permanent page

— 

You could chain together hundreds of algorithms if you wanted... I originally was going to use promises to do this but decided instead on a more manual chaining method with direct calls, for more flexibility

— What like design?

— Entry method (gets run once at start) for filter, it runs the entry methods for clone and paths as an example:

entry: function (state) {
strategies.clone.entry(state);
strategies.paths.entry(state);
state.pendingPaths = [];
},

Message permanent page

— I am not very interested in web design but I have 12 years of experience in it

— I can do it in my sleep- so it is not exciting

— I can crap out whole web apps and sites in like 5 mins... while on the toilet, hahaha

— So it's just boring

— Same thing to me, but I have made a few windowing systems

— Dialog boxes etc

— 

for (var row in rows) {
cdaTemplate.loadTemplate("#rowTemplate", "#templateContainer", {
append: true,
data: row
});
}

Message permanent page

— 

<template id="rowTemplate">
<div data-content-text="column0"></div>
<div data-content-text="column1"></div>
<div data-content-text="column2"></div>
<div data-content-text="column3"></div>
</template>

Message permanent page