Systems | Development | Analytics | API | Testing

Capture Heap Snapshots in N|Solid [7/10] The best APM for Node, layer by layer.

One of the first needs of developers is debugging memory-based issues in Node.js applications quickly and effectively. Still, before we jump right into the Heap Snapshot concept, it's essential to understand what a memory leak is. A basic definition that I would apply in this context is: Memory leaks are quite common in production applications. Fortunately, they usually aren't difficult to find.

How To Access APIs and Beat Your Competition

An Application Programming Interface (API) is the new go-to for businesses looking to connect with customers, partners, and other stakeholders via digital channels. From e-commerce sites to mobile apps, APIs are used to collect and process data and enable interoperability between web applications. As such, learning how to access APIs has become the primary gateway to data-driven products and the main revenue stream for most businesses.
Featured Post

Apple's recent announcements - the impact for developers and testers

At its Worldwide Developer Conference in late May, Apple shared a sneak preview of what to expect in the autumn, including news around iOS 16. This gives app developers and testers a bit of time to get their heads around the implications, including new test requirements. Here are some of the highlights from the conference.

How to Track Down Memory Leaks in Ruby

A memory leak is an unintentional, uncontrolled, and unending increase in memory usage. No matter how small, eventually, a leak will cause your process to run out of memory and crash. Even if you periodically restart your app to avoid this crash (no judgment, I've done that!), you still suffer the performance implications of a memory leak.

Why Government CIOs Need to Rethink Their Tech Procurement Strategy

As government agencies and organizations look to modernize their technology stacks to keep up with changes in the workforce, aging solutions, and closing contracts, they’ll all set out with a similar process: submit an RFP, review submissions, and choose a vendor. Seems simple enough. But what government CIOs often don’t realize is that requiring proven, specific use cases may be limiting what their new (and likely expensive) technology investment can do for their organization.

What Our Game Dev Customers Think of Helix DAM

Helix DAM lets creative teams streamline art & game asset management. It offers a visual library of their game art and smart search tools so they can quickly find the file they need. It also enables them to simplify the review process and quickly check the status of an asset. See what our customers thought about Helix DAM when we announced it at GDC 2022. (Hint: they’re excited about the efficiency and organization it offers + the time it saves.)

Managing user profiles in your applications with SCIM2 #Identityin15

In today's episode, we will discuss how you can manage your user profiles with SCIM by using WSO2 Identity Server as a SCIM service provider in just 15mins. The System for Cross-domain Identity Management (SCIM) specification is designed to manage user identity in cloud-based applications and services in a standardized way to enable interoperability, security, and scalability.

How to Write a Functor in Elixir

There’s a function called Enum.map in Elixir that works on multiple collection types, but it's not without its issues. In this post, I will introduce you to a concept from functional programming called a functor. We’ll make a Functor protocol with a function called fmap that will aspire to be a better version of Enum.map. Note: The article is inspired by the Witchcraft library, which we covered in one of our previous posts. But first: what's the problem with Enum.map exactly?

How to Fix the EOFException in Java.io

The java.io.EOFException is a checked exception in Java that occurs when an end of file or end of stream is reached unexpectedly during input. This exception is mainly used by data input streams to signal end of stream. Since EOFException is a checked exception, it must be explicitly handled in methods that can throw this exception - either by using a try-catch block or by throwing it using the throws clause.