Systems | Development | Analytics | API | Testing

Latest News

Organize Business Logic in Your Ruby on Rails Application

With its strong emphasis on convention over configuration, Ruby on Rails has counteracted many architectural considerations that caused bikeshedding when building web applications. Still, one area that has continuously piqued developers' interest is how to handle business logic, i.e., code that epitomizes "what an app does." Another way to phrase this question is: Where do we put all the transactional code?

Salesforce Connect: A Beginner's Guide

Are you considering integrating your external CRM or ERP system with the Salesforce platform? Look no further than Salesforce Connect, an integration tool that promises to display and use external data as if it were natively stored within Salesforce. This tool has been hailed as providing "seamless integration of data across system boundaries." But does it live up to the hype, or is there a better alternative out there?

The Salesforce Database Explained

In the world of customer relationship management (CRM), Salesforce is leading the industry. Founded in 1999 by Marc Benioff, Salesforce is one of the oldest and most respected cloud-based software companies in the world. Having grown to serve over 150,000 paying customers in the last two decades, Salesforce is considered by many to be the number one CRM platform in the world today.

Solve the Testing Challenges of Lazy Loading

A slow website is a major turn-off for potential customers. To address this, one technique is to load resources only once they are needed on a website, hence the term "lazy loading". Asynchronous, or lazy loading, is a technique where content below the viewport (like images, videos, text, and other objects) is either: This makes your website more efficient and increases your bandwidth, allowing you to deliver a faster and better user experience.

Debugging Production APIs with Postman and Moesif

Debugging APIs can be a challenge for any developer dealing with REST APIs. Trying to create an exact API request, especially for highly complex requests with large bodies and multiple headers, is essential but also tough to do. By using a tool like Postman to create a request for debugging and API testing purposes, you can easily replay an API request with the exact configuration of the original request.