April jobs report surprise: Is this a labor shortage or a great reassessment of work in America? - The Washington Post
Hiring was much weaker than expected in April. Wall Street thinks it’s a blip, but there could be much deeper rethinking going on of what jobs are needed and what workers want to do on a daily basis.
Ansible-Playbook-DNS-DHCP/named.conf.options.j2 at master · SpenserJ/Ansible-Playbook-DNS-DHCP · GitHub
A playbook for deploying a simple DNS/DHCP server with Dynamic DNS support - Ansible-Playbook-DNS-DHCP/named.conf.options.j2 at master · SpenserJ/Ansible-Playbook-DNS-DHCP
F5 Software:See https://support.f5.com/csp/article/K80012344 for the list of supported projects. See https://www.github.com/f5devcentral for Community Solutions - F5 Networks
Reducing Link Failure Detection Time with BFD | Network World
Network news, trend analysis, product testing and the industry’s most important blogs, all collected at the most popular network watering hole on the Internet | Network World
This article lists the most important security headers you can use to protect your website. Use it to understand web-based security features, learn how to implement them on your website, and as a reference for when you need a reminder.
Docker can slow down your code and distort your benchmarks
One of the benefits of containers over virtual machines is that you get some measure of isolation without the performance overhead or distortion of virtualization. Docker images therefore seem like a good way to get a reproducible environment for measuring CPU performance of your code. There are, however, complications. Sometimes, running under Docker can actually slow down your code and distort your performance measurements. On macOS and Windows, for example, standard Linux-based Docker containers aren’t actually running directly on the OS, since the OS isn’t Linux. And the image filesystem from the container itself is typically mounted with some sort of overlay filesystem, which can slow things down, so for anything I/O bound you want to use a bind-mounted volume. But even on Linux, with seeminly CPU-only workloads, Docker can distort runtime performance. Let’s see why, and some workarounds.