If you are being barraged by automated recruiter trash, consider using the list below when setting up your email filters.
- thecroxgroup.com
- idctechnologies.com
- dice.com| import sys | |
| import time | |
| import platform | |
| import subprocess | |
| def continuous_traceroute(target, interval=1): | |
| print(f"Starting continuous traceroute to {target} with an interval of {interval} seconds") | |
| # Determine the appropriate command based on the operating system | |
| command = "traceroute" if platform.system() != "Windows" else "tracert" |
| --- | |
| #------------------------------------------------------------------------ | |
| # Print out installed packages within virtual environment | |
| #------------------------------------------------------------------------ | |
| - hosts: localhost | |
| connection: local | |
| tasks: | |
| - name: create list of Python packages installed | |
| ansible.builtin.shell: pip freeze | |
| register: results |
if you've ever tried to follow Rancher's documentation for standing up a k3s cluster, you'd understand why this document exists
Tasks