def dev_learn_ops(engineer, blog):
    """ a blog for engineers made by engineers """
    articles = blog.articles
    devops_engineer = engineer.deepcopy()
    while articles.has_more():
        devops_engineer.learn(
            articles.next()
        )
        devops_engineer.sleep(8 * 3600)
        devops_engineer.drink(☕️).eat(🌮)

    return devops_engineer

Recent Posts

cover image

Orchestrating Advanced Experiments with ChaosToolkit and Terraform

Learn how to use the chaostoolkit-terraform extension to create advanced chaos experiments that require supporting infrastructure resources.
cover image

How to Implement Safeguards and Run Chaos Experiments Safely

Experimenting in production has the potential to cause unnecessary customer pain. In this article, we’ll learn how to use safeguards in Chaos Toolkit to immediately interrupt an experiment execution before it seriously affects the target system.
cover image

Upload All Chaos Toolkit Journals To S3 Using Global Controls

In this article, we learn how to apply Chaos Toolkit controls globally for all our experiments using config files and upload execution journals to an S3 bucket.
cover image

Mastering ChaosToolkit Experiment Configuration: A Comprehensive Guide

cover image

ChaosToolkit Steady-State Verification Strategies Explained

cover image

A Guide To Probe Tolerances In ChaosToolkit Experiment Verifications

cover image

Your First Chaos Engineering Experiment With ChaosToolkit

cover image

Install Software Packages in Alpine-Based Containers

cover image

Welcome to DevLearnOps!