How we did everything wrong and got away with it - An Angular success storyBy Marko Jurisic This talk describes converting of an enterprise application from a legacy jQuery solution to Angular. The talk will deal with design decisions, upgrade strategies, problems that we encountered and our solutions to them. ...
Interprocess Communication in NodeJSBy Marko JurisicNode is single threaded and uses non-blocking event loops for IO but for CPU intensive tasks it still blocks. If we want to use more CPU cores to parallelize the processing we must create new processes and distribute the load. ...