
Vaughn Vernon is thought-leader in the space of reactive software and Domain Driven Design (DDD). Vaughn has recently released a new open source project called vlingo. The platform is designed to support DDD at the framework and toolkit level. On today’s podcast, Vaughn discusses what the framework is all about, why he felt it was needed, and some of the design decisions made in developing the platform, including things like the architecture, actor model decisions, clustering algorithm, and how DDD is realized with the framework.
Ref: https://www.infoq.com/podcasts/ddd-microservices-framework
player.bind(SC.Widget.Events.PLAY, function() {
if (milliseconds >= 0) {
player.seekTo(milliseconds);
}
});
seekTo = function(minutes, seconds) {
milliseconds = ((minutes * 60) + seconds) * 1000;
player.isPaused(function isPaused(p) {
if (p == true) {
player.play();
} else {
player.seekTo(milliseconds);
}
});
}
Published on June 13, 2016 22:10