Operations | Monitoring | ITSM | DevOps | Cloud

Real World Insights - My Take on the Observability Maturity Model

A prelude to our upcoming six-part Observability Maturity Model Fundamentals blog series. By Lodewijk Bogaards At StackState, we have spent eight years in the monitoring and observability spaces. During this time, we have spoken with countless DevOps engineers, architects, SREs, heads of IT operations and CTOs, and we have heard the same struggles over and over.

JFrog Joins Rust Foundation as Platinum Member

The technology ecosystem is continually evolving but one truth remains, if there is a new and emerging coding language that captures the heart and minds of developers JFrog will be there. JFrog provides a DevOps Platform to store and secure its artifacts while engaging with the community and foundations that support developers using that language. We have a long history of working with Java, Python, C/C++ and more recently Go, Swift and Rust.

The Software Supply Chain Risks You Need to Know

Code that an organization’s developers create is only the beginning of modern software development. In fact, first-party code is likely to be only a small proportion of an application – sometimes as little as 10% of the application’s artifact ecosystem. An enterprise’s software supply chain is made of many parts, from many sources: open source packages, commercial software, infrastructure-as-code (IaC) files, and more.

Automate deployment of React applications to Firebase

Many platforms offer free hosting services for React and other JavaScript frameworks. These frameworks can be used for building single-page applications, which is handy when you need to launch a minimum viable product or a quick proof of concept. Your fellow developers are taking advantage of these tools, and you can too. To narrow down options, I will focus on Firebase in this tutorial.

4 steps to optimize a hybrid work environment

Work is no longer a place. It’s an activity that can and does happen anywhere. As such, it’s given rise to hybrid work, which combines the collaborative atmosphere offices provide with the perks of working remotely. This model gives employees flexibility in their workdays and better work-life balance. It also has the potential to positively affect diversity, equity, and inclusion, according to McKinsey.

How do flow states work?

Work free from distractions can be hard to find, especially with more of us working from home. A flow state is the most productive place you can be, and humans have recognized the benefits of flow for thousands of years. But in order to achieve a flow state, you need to be free of distractions. In today's digital environment, it's up to companies to architect spaces where their employees can thrive.

Fastest Way to Learn Git | Best Git Training for Software Developers in 2022

It’s never been easier to learn Git. From online learning platforms to free Youtube courses, there can be a lot to choose from depending on your budget and how you like to learn new coding skills. This article aims to provide you with a list of the best paid and free Git training courses.

What is N+1 query problem and how distributed tracing solves it?

N+1 query problem is a problem in database retrieval where the related entities of an object are queried individually from a database, leading to O(n) queries where n is the number of related entities of the object. Mouthful of words, I agree 🙂 Let’s take an example to illustrate what it means.