Wed.Oct 12, 2022

article thumbnail

Speeding Up Async Snippets

CSS Wizardry

If you’ve been a web developer for any reasonable amount of time, you’ve more likely than not come across an async snippet before. At its simplest, it looks a little like this: var script = document. createElement ( ' script ' ); script. src = ' [link] ' ; document. head. appendChild ( script ); Here, we…. create a element…. whose src attribute is [link] …. and append it to the.

Speed 301
article thumbnail

How Product Teams Can Build Empathy Through Experimentation

The Netflix TechBlog

A conversation between Travis Brooks, Netflix Product Manager for Experimentation Platform, and George Khachatryan, OfferFit CEO Note: I’ve known George for a little while now, and as we’ve talked a lot about the philosophy of experimentation, he kindly invited me to their office (virtually) for their virtual speaker series. We had a fun conversation with his team, and we realized that some parts of it might make a good blog post as well.

article thumbnail

Learning Kubernetes Operators with Percona Operator for MongoDB

Percona Community

One of the topics that have resonated a lot for me since the first KubeCon I attended in 2018 is Kubernetes Operators. The concept of Operators was introduced much earlier in 2016 by the CoreOS Linux development team. They were looking for a way to improve automated container management in Kubernetes. What do we mean by a Kubernetes Operator? We use the definition of CNCF.