Systems | Development | Analytics | API | Testing

%term

Debugging a slow Rails controller with Honeybadger Insights

Join Honeybadger cofounder Ben Curtis as he uses Honeybadger Insights to debug a slow controller action in Rails. Honeybadger Insights is a new full-stack logging, observability, and performance monitoring tool from Honeybadger.io. Gain insights into your errors, application logs, and other event streams with a powerful query language and ready-made dashboards.

What to look for when selecting a Test Management tool?

Gone are the days when selecting software was as easy as comparing two different providers and choosing either of them based on how the box looked (yes, software used to come in boxes). Today, selecting the right tool requires careful evaluation of several requirements, including your budget, how your team is built, your tech stack, and projections for future growth (scalability).

Qlik Connect: A Decade in for me, the Best One Yet

This year’s Qlik Connect was officially my 10th Qlik annual user conference… From Qonnections to Qlik World to Qlik Connect, you could assume I have seen it all already, but I can honestly say that this one was the best (and most fun!) yet. But don’t take my word for it. The buzz from our wonderful community of Qlik partners and customers speaks for itself.

Microservice Pitfalls: Solving the Dual-Write Problem | Designing Event-Driven Microservices

When building a distributed system, developers are often faced with something known as the dual-write problem. It occurs whenever the system needs to perform individual writes to separate systems that can't be transactionally linked. This situation creates the potential for data loss if the developer isn't careful. However, techniques such as the Transactional Outbox Pattern and Event Sourcing can be used to guard against the potential for data loss while also providing added resilience to the system.

S1.E8: AI & Machine Learning in Testing | QA Therapy Podcast

Feeling like your team is pinning all their hopes on AI and ML to solve every challenge? In this episode of QA Therapy, we're thrilled to have Tariq King, QA Therapist, join us to explore how AI and ML will shape the future of testing. Tariq, currently serving as the Vice President of Product-Service Systems at EPAM, with over 40 research articles under his belt.

Empowering Data Agility: Equifax's Journey to Operational Excellence

In the data-driven world where real-time decision-making and innovation are not just goals but necessities, global data analytics and technology companies like Equifax must navigate a complex environment to achieve success. Equifax sets the standard for operational excellence by enabling real-time decision-making, accelerating innovation, scaling efficiently, consistently achieving service level agreements (SLAs), and building reliable data pipelines.

Enhanced Cybersecurity with Real-Time Log Aggregation and Analysis

In today’s hyper-connected world, systems are more intertwined and complex than ever. Myriad data sources including applications, databases, network and IoT devices continuously generate vast amounts of data, capturing every event and interaction. Imagine harnessing this data–login logs, firewall logs, IPS logs, web logins–aggregating it, and analyzing it to create a holistic view of your entire infrastructure.

API versioning in Ruby on Rails

Versioning APIs is a critical part of building web applications, as it allows you to make changes that may otherwise break existing API users. Changing the contract between the API and the clients that depend on it is dangerous, and versioning endpoints adds flexibility and safety. Versioning is implemented in many ways - You can version with subdomains, query parameters, URL schemas, headers, and more!