Testing Software Systems

A few weeks ago, I did my Microservices talk at Thessaloniki's Ruby meetup. It was an awesome experience. There was also a talk there, entitled Testing Demystified, after me. The excellent engineer gave a lot of food for thought about testing. I wasn… »

Our auditing service

Last week, me and Goodvidio's CTO sit down to come up with a solution. We were in a need of an auditing service that will track down every movement inside our system. Searching in Google we didn't find any real world example either any useful… »

UI thread free

With the rise of the upcoming WebWorkers API in the horizon, interesting things are emerging. And the one that got me go "whhaaaaat??" is the one that advices you to put all of your business logic inside a WebWorker. Whaaaaat? A WebWorker is a… »

What not to do for beginners

dont do word wrap and leave your lines huge find how your language handles multilne strings examples on JS/PHP/etc dont keep global state. avoid it in any situation use pure functions and flow the state through them. »

Relational vs No Relational

MySQL = relational schema and a lot of relations MongoDB = no relations but flexibility »