Why it’s important for leaders to mentor and support others

After decades in the tech industry with invaluable mentorship, a seasoned professional is now giving back by mentoring new tech aspirants through DigitalBridge. This nonprofit offers adaptive online training for aspiring tech professionals, breaking barriers in traditional education and creating inclusive opportunities in tech. Additionally, participation in open source communities and events like All Things Open enhances this mentor’s ability to guide and inspire learners into digital careers, embodying a cycle of learning and giving back.

Regular Expressions #4: Pulling it all together

This series delves into the practical applications of regular expressions within Linux tools such as grep, sed, and awk, demonstrating how to simplify and optimize command-line tasks. The articles guide readers from basic to more complex uses of regex, emphasizing their usefulness in data stream transformation and text manipulation across various tools and programming languages. Through hands-on examples and resource recommendations, the series aims to enhance the reader’s understanding and proficiency with regex in diverse scenarios.

Ansible #3: Finishing our Ansible playbook to manage workstation and server updates

In part two of this series on writing Ansible playbooks, “Ansible #2 How to create an Ansible Playbook,” we examined the task of installing updates for servers and workstations. This playbook is intended to manage updates differently depending on the role the systems play on the network. Last time we created the play designed to install updates on the Ansible hub. This time we add two more plays; one to install updates on the servers and another to install updates on the regular workstations.

Regular Expressions #1: Introduction

Regular expressions don’t have to invoke anxiety and fear, although they do for many of us. The function of regular expressions is to provide a highly flexible tool for matching strings of characters in a stream of data. When a match is found, the program’s action can be as simple as to pass the line of data in which it’s found on to STDOUT, or as copmplex as replacing that string with another.