How I manage my own virtual network with ZeroTier
May04

How I manage my own virtual network with ZeroTier

How I manage my own virtual network with ZeroTier Kevin Sonney Wed, 05/04/2022 – 03:00 Register or Login to like Register or Login to like Automation is a hot topic right now. In my day job as a site reliability engineer (SRE), part of my remit is to automate as many repeating tasks as possible. But how many of us do that in our daily, not-work, lives? This year, I am focused on automating away the toil so that we can focus on...

Read More
Automate and manage multiple devices with Remote Home Assistant
May03

Automate and manage multiple devices with Remote Home Assistant

Automate and manage multiple devices with Remote Home Assistant Kevin Sonney Tue, 05/03/2022 – 03:00 1 reader likes this 1 reader likes this Automation is a hot topic right now. In my day job as an SRE part of my remit is to automate as many repeating tasks as possible. But how many of us do that in our daily, not-work, lives? This year, I am focused on automating away the toil so that we can focus on the things that are...

Read More
How I use the Bacula GUI for backup and recovery
May03

How I use the Bacula GUI for backup and recovery

How I use the Bacula GUI for backup and recovery Rob Morrison Tue, 05/03/2022 – 03:00 1 reader likes this 1 reader likes this Today, when best practices for backup and recovery are more important than ever before, it’s good to know that high-end fully open source enterprise backup solutions exist for even the largest organizations. Perhaps the most powerful open source solution in its class is Bacula, a highly scalable...

Read More
How to make community recognition more inclusive
May02

How to make community recognition more inclusive

How to make community recognition more inclusive Ray Paik Mon, 05/02/2022 – 03:00 1 reader likes this 1 reader likes this Giving recognition to someone for a job well done is one of my favorite duties as a community manager. Not only do I get to thank someone, but I also have a chance to highlight a role model for the rest of the community. Recognition also provides an opportunity to celebrate an achievement, like someone...

Read More
10 Argo CD best practices I follow
May02

10 Argo CD best practices I follow

10 Argo CD best practices I follow Noaa Barki Mon, 05/02/2022 – 03:00 Register or Login to like Register or Login to like My DevOps journey kicked off when I started developing Datree, an open source command that aims to help DevOps engineers to prevent Kubernetes misconfigurations from reaching production. One year later, seeking best practices and more ways to prevent misconfigurations became my way of life. This is why when I...

Read More
Parsing data with strtok in C
Apr30

Parsing data with strtok in C

Parsing data with strtok in C Jim Hall Sat, 04/30/2022 – 03:00 Register or Login to like Register or Login to like Some programs can just process an entire file at once, and other programs need to examine the file line-by-line. In the latter case, you likely need to parse data in each line. Fortunately, the C programming language has a standard C library function to do just that. The strtok function breaks up a line of data...

Read More